MySQL Pentesting Notes
Protocol Overview
Basic Information
MySQL Databases
Enumeration and Access
Port Scanning
# Basic port scan
nmap -p3306 -sV <target>
# Aggressive scan with scripts
nmap -p3306 -sV -sC -A <target>
# All MySQL scripts
nmap -p3306 --script mysql-* <target>