AWS - ElastiCache

Naučite hakovanje AWS-a od nule do heroja sa htARTE (HackTricks AWS Red Team Expert)!

Drugi načini podrške HackTricks-u:

ElastiCache

AWS ElastiCache je potpuno upravljana usluga skladištenja podataka u memoriji i keširanja koja pruža visokoperformantna, niskolatentna i skalabilna rešenja za aplikacije. Podržava dva popularna open-source motora u memoriji: Redis i Memcached. ElastiCache simplifikuje postavljanje, upravljanje i održavanje ovih motora, omogućavajući programerima da prenesu zadatke koji oduzimaju vreme kao što su obezbeđivanje, zakrpe, praćenje i bekapovanje.

Enumeracija

# ElastiCache clusters
## Check the SecurityGroups to later check who can access
## In Redis clusters: Check AuthTokenEnabled to see if you need password
## In memcache clusters: You can find the URL to connect
aws elasticache describe-cache-clusters

# List all ElastiCache replication groups
## Find here the accesible URLs for Redis clusters
aws elasticache describe-replication-groups

#List all ElastiCache parameter groups
aws elasticache describe-cache-parameter-groups

#List all ElastiCache security groups
## If this gives an error it's because it's using SGs from EC2
aws elasticache describe-cache-security-groups

#List all ElastiCache subnet groups
aws elasticache describe-cache-subnet-groups

# Get snapshots
aws elasticache describe-snapshots

# Get users and groups
aws elasticache describe-user-groups
aws elasticache describe-users

# List ElastiCache events
aws elasticache describe-events

Privesc (TODO)

Naučite hakovanje AWS-a od nule do heroja sa htARTE (HackTricks AWS Red Team Expert)!

Drugi načini podrške HackTricks-u:

Last updated