This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://fzl-aws.notion.site/Rebound-HTB-21db231ab1b68080ad3ecd2fa762d9d0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/groovyBugify/aws-security-mcp |
LR(0) Parsing for Grammar and String abab Grammar
( S \to AA \mid AB ) ( A \to aA \mid b ) ( B \to BB \mid b )
Step 1: Augment the Grammar
Add ( S' \to S )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://fzl-aws.notion.site/Constrained-Delegation-17bb231ab1b6803aa700dfc949d117f5?source=copy_link |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include ./Galaxy.conf | |
font_family Iosevka Nerd Font | |
font_size 20 | |
bold_font auto | |
italic_font auto | |
bold_italic_font auto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://fzl-aws.notion.site/TombWatcher-HTB-20fb231ab1b68048b73bc92c932edfbc?source=copy_link |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from diagrams import Diagram, Cluster | |
from diagrams.aws.network import VPC, ELB, APIGateway | |
from diagrams.aws.compute import EC2, Lambda | |
from diagrams.aws.database import RDS, Dynamodb | |
from diagrams.aws.storage import S3 | |
from diagrams.aws.analytics import Glue | |
with Diagram("Serverless Architecture", show=True): | |
s3 = S3("S3 Bucket") | |
api = APIGateway("API Gateway") |
NewerOlder