April 2019
Intermediate to advanced
508 pages
11h 57m
English
Remember when we made our RDS instance publicly accessible? Well, it's time to identify such public RDS instances and exploit them.
In this scenario, we already know the hostname of our RDS instance, which makes it slightly easy for us. We'll start by running nmap scan on our instance to identify what ports are open:
sudo nmap -sS -v -Pn <<RDS Instance>>
We can see that port 3306 is open, and is listening for any incoming connections:

sudo nmap -sS -A -vv -Pn -sV ...
Read now
Unlock full access