> For the complete documentation index, see [llms.txt](https://notes.programmersecurity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.programmersecurity.com/network-penetration-testing/3306-pentesting-mysql.md).

# 3306 - Pentesting Mysql

## Basic Command&#x20;

```
mysql -h 172.18.0.1 -u root
```

### SSL is Required

you can ignore ssl checks by using the below command

```python
mysql -h 172.18.0.1 -u root --skip-ssl
```
