📡

MySQL (Tcp 3306)

<figure<img src="/files/EDxCVdAwptwTjFqHraMX" alt=""<figcaption</figcaption</figure

#services#adot8
source · oscp.adot8.com · services/mysql-less-than-tcp-3306-greater-than

MySQL<tcp 3306>

<figure><img src="/files/EDxCVdAwptwTjFqHraMX" alt=""><figcaption></figcaption></figure>

{% hint style="info" %} Fix with --skip-ssl {% endhint %}

code
01mysql -u root -p -h 10.10.1.100 -P 3306
02select version();
03select system_user();
04show databases;
05use <database>;
06show tables;
07show columns from <table>;
08select * from <table>
code
01SELECT user, authentication_string FROM mysql.user WHERE user = 'root';