AWS - ElastiCache

Support HackTricks

ElastiCache

AWS ElastiCache는 응용 프로그램을 위한 고성능, 저지연 및 확장 가능한 솔루션을 제공하는 완전히 관리되는 인메모리 데이터 저장소 및 캐시 서비스입니다. 이는 두 가지 인기 있는 오픈 소스 인메모리 엔진 Redis와 Memcached를 지원합니다. ElastiCache는 이러한 엔진의 설정, 관리유지 관리간소화하여 프로비저닝, 패치, 모니터링 및 백업과 같은 시간 소모적인 작업을 개발자가 완화할 수 있도록 합니다.

열거

# 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

권한 상승 (할 일)

HackTricks 지원

Last updated