Skip to content

Commit 9ae10ba

Browse files
authored
Add db cluster enumeration commands to aws-relational-database-rds-enum
1 parent 9a4644d commit 9ae10ba

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/pentesting-cloud/aws-security/aws-services/aws-relational-database-rds-enum.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ aws rds describe-db-cluster-backtracks --db-cluster-identifier <cluster-name>
8181

8282
## Cluster snapshots
8383
aws rds describe-db-cluster-snapshots
84+
aws rds describe-db-cluster-snapshots --include-public --snapshot-type public
85+
86+
## Restore cluster snapshot as new instance
87+
aws rds restore-db-instance-from-db-snapshot --db-cluster-identifier <ID> --snapshot-identifier <ID>
8488

8589
# Get DB instances info
8690
aws rds describe-db-instances #username, url, port, vpc, SG, is public?
@@ -92,6 +96,7 @@ aws rds describe-db-instance-automated-backups
9296
## Find snapshots
9397
aws rds describe-db-snapshots
9498
aws rds describe-db-snapshots --include-public --snapshot-type public
99+
95100
## Restore snapshot as new instance
96101
aws rds restore-db-instance-from-db-snapshot --db-instance-identifier <ID> --db-snapshot-identifier <ID> --availability-zone us-west-2a
97102

0 commit comments

Comments
 (0)