File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/pentesting-cloud/aws-security/aws-unauthenticated-enum-access/aws-rds-unauthenticated-enum Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff 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```
You can’t perform that action at this time.
0 commit comments