3306 - Mysql

Theory

The MySQL database server uses TCP port 3306

  • Bruteโ€forcing credentials

  • Identifying if the installed version is exploitable


Practical

Basic Nmap Scan

nmap โ€sV โ€O โ€sC โ€p 3306 [IP Address]

Advanced Nmap Scan

nmap โ€sV โ€O โ€p 3306 โ€โ€script=mysql* [IP Address]

Brute Force

hydra โ€L [users file] โ€P [passwords file] MySQL://[IP]


REFERENCES

Last updated