Skip to content

Commit 9a4644d

Browse files
authored
Add rds cluster snapshots enumeration commands to aws-rds-unauthenticated-enum
1 parent 3a7f081 commit 9a4644d

File tree

1 file changed

+15
-0
lines changed
  • src/pentesting-cloud/aws-security/aws-unauthenticated-enum-access/aws-rds-unauthenticated-enum

1 file changed

+15
-0
lines changed

src/pentesting-cloud/aws-security/aws-unauthenticated-enum-access/aws-rds-unauthenticated-enum/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,21 @@ aws rds describe-db-snapshots --snapshot-type public [--region us-west-2]
3434
## snapshots from other accounts used by the current account
3535
```
3636

37+
## Public RDS Cluster Snapshots
38+
39+
Similarly, you can look for cluster snapshots
40+
41+
```bash
42+
# Public RDS cluster snapshots
43+
aws rds describe-db-cluster-snapshots --include-public
44+
45+
## Search by account ID
46+
aws rds describe-db-cluster-snapshots --include-public --query 'DBClusterSnapshots[?contains(DBClusterSnapshotIdentifier, `284546856933:`) == `true`]'
47+
48+
# From the own account you can check if there is any public cluster snapshot with:
49+
aws rds describe-db-cluster-snapshots --snapshot-type public [--region us-west-2]
50+
```
51+
3752
### Public URL template
3853

3954
```

0 commit comments

Comments
 (0)