AWS - ElastiCache

htARTE (HackTricks AWS Red Team 전문가)를 통해 **제로부터 영웅까지 AWS 해킹 배우기**!

다른 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

권한 상승 (TODO)

htARTE (HackTricks AWS Red Team Expert)를 통해 제로부터 AWS 해킹을 전문가로 배우세요!

HackTricks를 지원하는 다른 방법:

最終更新