MySQL (3306)
Oracle MySQL.
Port
Config File
Interact
mysql -h <IP> -P <PORT> -u <USER> -p [--skip-ssl-verify-server-cert]C:\xampp\mysql\bin> .\mysql.exe -u <USER> -p <PASS> -D <DB_NAME> -e "SHOW TABLES;"> show databases;
> use <DBNAME>;
> show tables;
> describe <TABLE>;
> select * from <TABLE>;
> show grants;
> select load_file(”/etc/shadow”); # with root accessAttacks
Last updated