Skip to content

Instantly share code, notes, and snippets.

View RajChowdhury240's full-sized avatar
💻
just another learner

Raj Chowdhury RajChowdhury240

💻
just another learner
  • Confidential
  • $ aws sts get-caller-identity
  • 06:39 (UTC +10:00)
View GitHub Profile
https://fzl-aws.notion.site/Rebound-HTB-21db231ab1b68080ad3ecd2fa762d9d0
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 )

https://fzl-aws.notion.site/Constrained-Delegation-17bb231ab1b6803aa700dfc949d117f5?source=copy_link
include ./Galaxy.conf
font_family Iosevka Nerd Font
font_size 20
bold_font auto
italic_font auto
bold_italic_font auto
https://fzl-aws.notion.site/TombWatcher-HTB-20fb231ab1b68048b73bc92c932edfbc?source=copy_link
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")