Commander

Copy-ready command templates for common penetration testing tools. Select a tool, fill in the parameters, copy, paste, profit.

MySQL client for connecting to and querying MySQL/MariaDB database servers

databasemysqlsqlenumeration

Connect to Database

Open an interactive MySQL shell.

mysql -h -u -p

Enumerate Users

List MySQL users and their hosts.

mysql -h -u -p -e 'SELECT user,host,authentication_string FROM mysql.user;'

Enumerate Databases

List all databases on the server.

mysql -h -u -p -e 'SHOW DATABASES;'

Read Local File

Read a server-side file using LOAD_FILE().

mysql -h -u -p -e "SELECT LOAD_FILE('');"