1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sqlmap.md

25 lines
837 B
Markdown
Raw Normal View History

2018-10-24 08:18:16 +03:00
# sqlmap
> Detect and exploit SQL injection flaws.
> More information: <https://sqlmap.org>.
2018-10-24 08:18:16 +03:00
- Run sqlmap against a single target URL:
`python sqlmap.py -u "{{http://www.target.com/vuln.php?id=1}}"`
2018-10-24 08:18:16 +03:00
- Send data in a POST request (`--data` implies POST request):
`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --data="{{id=1}}"`
2018-10-24 08:18:16 +03:00
- Change the parameter delimiter (& is the default):
`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --data="{{query=foobar;id=1}}" --param-del="{{;}}"`
2018-10-24 08:18:16 +03:00
- Select a random `User-Agent` from `./txt/user-agents.txt` and use it:
`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --random-agent`
2018-10-24 08:18:16 +03:00
- Provide user credentials for HTTP protocol authentication:
`python sqlmap.py -u "{{http://www.target.com/vuln.php}}" --auth-type {{Basic}} --auth-cred "{{testuser:testpass}}"`