> For the complete documentation index, see [llms.txt](https://oscp.adot8.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://oscp.adot8.com/services/mysql-less-than-tcp-3306-greater-than.md).

# MySQL\<tcp 3306>

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

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

```
mysql -u root -p -h 10.10.1.100 -P 3306
select version();
select system_user();
show databases;
use <database>;
show tables;
show columns from <table>;
select * from <table>
```

```
SELECT user, authentication_string FROM mysql.user WHERE user = 'root';
```
