码迷,mamicode.com
首页 > 数据库 > 详细

(三)SQLMap工具-使用选项的操作命令&功能

时间:2019-09-05 18:58:28      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:服务器   const   bee   用户   operation   设置   func   temp   www   

目录结构

1.Options(选项)
2.Target(目标)
3.Request(请求)
4.Optimization(优化)
5.Injection(注入)
6.Detection(检测)
7.Techniques(技术)
8.Fingerprint(指纹识别)
9.Enumeration(枚举)
10.Brute force(暴力破解)
11.User-defined function injection(用户自定义函数注入)
12.File system access(访问文件系统)
13.Operating system access(访问操作系统)
14.Windows registry access(访问Windows注册表)
15.General(通用选项)
16.Miscellaneous(其他选项)

 

SQLMap安装路径下执行命令:python sqlmap.py -hh

1.Options(选项):

-h, --help          显示基本帮助信息-----Show basic help message and exit
-hh                 显示高级帮助信息-----Show advanced help message and exit
--version           查看版本号-----------Show program‘s version number and exit
-v VERBOSE          详细等级(0-6,默认1)--Verbosity level: 0-6 (default 1)

2.Target(目标):

At least one of these options has to be provided to define the target(s)
==>以下至少需要设置一个选项,才能确定目标url
即:SQLMap操作命令中需要包含以下至少一个选项,才能正常使用

-d DIRECT           直接连接到数据库-------------------Connection string for direct database connection
-u URL, --url=URL   测试的目标url---------------------Target URL (e.g. "http://www.site.com/vuln.php?id=1")
-l LOGFILE          从Burp等代理的日志文件中解析目标----Parse target(s) from Burp or WebScarab proxy log file
-x SITEMAPURL       从远程站点地图(.xml)文件中解析目标--Parse target(s) from remote sitemap(.xml) file
-m BULKFILE         扫描文本文件中设置的多个目标--------Scan multiple targets given in a textual file
-r REQUESTFILE      从文件中加载HTTP请求---------------Load HTTP request from a file
-g GOOGLEDORK       处理Google dork的结果作为目标url---Process Google dork results as target URLs
-c CONFIGFILE       从ini配置文件加载选项--------------Load options from a configuration INI file

3.Request(请求):

These options can be used to specify how to connect to the target URL
以下选项用来指定连接目标url的方式

--method=METHOD     强制使用给定的HTTP方法------------------Force usage of given HTTP method (e.g. PUT)
--data=DATA         使用POST方法发送数据串------------------Data string to be sent through POST
--param-del=PARA..  设置分隔参数值的符号--------------------Character used for splitting parameter values
--cookie=COOKIE     指定HTTP Cookie值----------------------HTTP Cookie header value
--cookie-del=COO..  设置分隔cookie值的字符------------------Character used for splitting cookie values
--load-cookies=L..  指定以Netscape/wget格式存放cookies文件--File containing cookies in Netscape/wget format
--drop-set-cookie   忽略HTTP响应头中的Set-Cookie参数--------Ignore Set-Cookie header from response
--user-agent=AGENT  指定HTTP User-Agent值------------------HTTP User-Agent header value
--random-agent      使用随机选定的HTTP User-Agent值---------Use randomly selected HTTP User-Agent header value
--host=HOST         指定HTTP Host值------------------------HTTP Host header value
--referer=REFERER   指定HTTP Referer值---------------------HTTP Referer header value
-H HEADER, --hea..  设置额外的头参数------------------------Extra header (e.g. "X-Forwarded-For: 127.0.0.1")
--headers=HEADERS   设置多个额外的头参数--------------------Extra headers (e.g. "Accept-Language: fr\nETag: 123")
--auth-type=AUTH..  HTTP认证方式---------------------------HTTP authentication type (Basic, Digest, NTLM or PKI)
--auth-cred=AUTH..  HTTP认证凭证---------------------------HTTP authentication credentials (name:password)
--auth-file=AUTH..  HTTP认证 PEM证书/私钥文件---------------HTTP authentication PEM cert/private key file
--ignore-401        忽略HTTP 401错误码(未授权)------------Ignore HTTP Error 401 (Unauthorized)
--ignore-proxy      忽略系统默认的代理设置------------------Ignore system default proxy settings
--ignore-redirects  忽略重定向尝试-------------------------Ignore redirection attempts
--ignore-timeouts   忽略连接超时---------------------------Ignore connection timeouts
--proxy=PROXY       使用代理连接目标url---------------------Use a proxy to connect to the target URL
--proxy-cred=PRO..  使用代理进行认证------------------------Proxy authentication credentials  (name:password)
--proxy-file=PRO..  从指定文件加载代理列表-------------------Load proxy list from a file
--tor               使用Tor匿名网络-------------------------Use Tor anonymity network
--tor-port=TORPORT  使用Tor代理端口代替默认值----------------Set Tor proxy port other than default
--tor-type=TORTYPE  设置Tor代理方式-------------------------Set Tor proxy type (HTTP, SOCKS4 or SOCKS5 (default)
--check-tor         检查Tor是否可用-------------------------Check to see if Tor is used properly
--delay=DELAY       设置每个HTTP请求的延迟时间---------------Delay in seconds between each HTTP request
--timeout=TIMEOUT   设置超时前的连接时间(默认30s)------------Seconds to wait before timeout connection (default 30)
--retries=RETRIES   连接超时之时,重试次数(默认3)------------Retries when the connection timeouts (default 3)
--randomize=RPARAM  随机更改给定的参数值---------------------Randomly change value for given parameter(s)
--safe-url=SAFEURL  测试过程中可频繁访问的url地址------------URL address to visit frequently during testing
--safe-post=SAFE..  使用POST方法发送合法的数据---------------POST data to send to a safe URL
--safe-req=SAFER..  从指定文件加载合法的HTTP请求-------------Load safe HTTP request from a file
--safe-freq=SAFE..  每访问2次给定的合法url,只发送1次测试请求-Test requests between two visits to a given safe URL
--skip-urlencode    跳过有效载荷数据对url编码----------------Skip URL encoding of payload data
--csrf-token=CSR..  设置用于反CSRF攻击的Token----------------Parameter used to hold anti-CSRF token
--csrf-url=CSRFURL  指定提取反CSRF攻击Token的url-------------URL address to visit to extract anti-CSRF token
--force-ssl         强制使用SSL/HTTPS技术--------------------Force usage of SSL/HTTPS
--hpp               使用HTTP参数污染攻击---------------------Use HTTP parameter pollution method
--eval=EVALCODE     在请求发送请求之前,执行给定的Python代码---Evaluate provided Python code before the request (e.g."import hashlib;id2=hashlib.md5(id).hexdigest()")

4.Optimization(优化):

These options can be used to optimize the performance of sqlmap
以下选项用于优化sqlmap的性能

-o                  开启所有的优化开关-----------------Turn on all optimization switches
--predict-output    预测常见请求的输出-----------------Predict common queries output
--keep-alive        使用持久的http(s)保持连接----------Use persistent HTTP(s) connections
--null-connection   仅获取页面大小而非实际的HTTP响应体--Retrieve page length without actual HTTP response body
--threads=THREADS   设置http(s)请求的最大并发数(默认1)--Max number of concurrent HTTP(s) requests (default 1)

5.Injection(注入):

These options can be used to specify which parameters to test for, provide custom injection payloads and optional tampering scripts
以下选项用来指定要测试的参数,提供自定义注入的有效载荷,以及可选的篡改参数的脚本

-p TESTPARAMETER    指定需要测试的参数-------------Testable parameter(s)
--skip=SKIP         指定要跳过的参数---------------Skip testing for given parameter(s)
--skip-static       指定跳过非动态的参数-----------Skip testing parameters that not appear to be dynamic
--param-exclude=..  使用正则表达式排除参数---------Regexp to exclude parameters from testing (e.g. "ses")
--dbms=DBMS         指定后端DBMS类型--------------Force back-end DBMS to this value
--dbms-cred=DBMS..  DBMS认证凭证------------------DBMS authentication credentials (user:password)
--os=OS             指定后端DBMS操作系统类型-------Force back-end DBMS operating system to this value
--invalid-bignum    将无效值设置为大数-------------Use big numbers for invalidating values
--invalid-logical   对无效值使用逻辑运算-----------Use logical operations for invalidating values
--invalid-string    对无效值使用随机字符串---------Use random strings for invalidating values
--no-cast           关闭有效载荷的构造机制---------Turn off payload casting mechanism
--no-escape         关闭字符串的转义机制-----------Turn off string escaping mechanism
--prefix=PREFIX     注入有效载荷的前缀字符串-------Injection payload prefix string
--suffix=SUFFIX     注入有效载荷的后缀I字符串------njection payload suffix string
--tamper=TAMPER     利用给定的脚本进行篡改注入数据--Use given script(s) for tampering injection data

6.Detection(检测):

These options can be used to customize the detection phase
以下选项用于自定义检测方式

--level=LEVEL       设置测试的等级(1-5,默认1)---------------Level of tests to perform (1-5, default 1)
--risk=RISK         设置测试的风险级别(1-3,默认1)------------Risk of tests to perform (1-3, default 1)
--string=STRING     用于判定查询结果为“真”时匹配的字符串------String to match when query is evaluated to True
--not-string=NOT..  用于判定查询结果为“假”时匹配的字符串------String to match when query is evaluated to False
--regexp=REGEXP     用于判定查询结果为“真”时匹配的正则表达式--Regexp to match when query is evaluated to True
--code=CODE         用于判定查询结果为“真”时匹配的HTTP状态码--HTTP code to match when query is evaluated to True
--text-only         只根据页面的文本内容来对比页面-----------Compare pages based only on the textual content
--titles            只根据页面标题来对比页面-----------------Compare pages based only on their titles

7.Techniques(技术):

These options can be used to tweak testing of specific SQL injection techniques
以下选项用于调整特定SQL注入技术的测试方法

--technique=TECH    使用的SQL注入技术(默认"BEUSTQ")---SQL injection techniques to use (default "BEUSTQ")
                      B: Boolean-based blind SQL injection(布尔型盲注)
                      E: Error-based SQL injection(基于报错的注入)
                      U: Union query SQL injection(联合查询注入)
                      S: Stacked queries SQL injection(堆查询注入)
                      T: Time-based blind SQL injection(时间型盲注)
                      Q: Inline query injection(内联查询注入)
--time-sec=TIMESEC  延迟DBMS响应的时间(默认5s)--------Seconds to delay the DBMS response (default 5)
--union-cols=UCOLS  设置联合查询注入测试的列数目范围---Range of columns to test for UNION query SQL injection
--union-char=UCHAR  用于玻璃猜解列数的字符------------Character to use for bruteforcing number of columns
--union-from=UFROM  设置联合查询注入"FROM"处用到的表--Table to use in FROM part of UNION query SQL injection
--dns-domain=DNS..  设置用于DNS溢出攻击的域名---------Domain name used for DNS exfiltration attack
--second-order=S..  设置二阶响应的结果显示页面的url----Resulting page URL searched for second-order response

8.Fingerprint(指纹识别):

-f, --fingerprint   执行广泛的DBMS版本指纹识别--Perform an extensive DBMS version fingerprint

9.Enumeration(枚举):

These options can be used to enumerate the back-end database management system information, structure and data contained in the tables. Moreover you can run your own SQL statements
以下选项用于获取后端数据库管理系统(DBMS)的信息,包括数据表的结构、数据表中的数据,还可以执行所构造的SQL语句。

-a, --all           检索所有信息和数据-----------------------Retrieve everything
-b, --banner        检索DBMS的标识--------------------------Retrieve DBMS banner
--current-user      检索DBMS当前用户------------------------Retrieve DBMS current user
--current-db        检索DBMS当前数据库----------------------Retrieve DBMS current database
--hostname          检索DBMS服务器主机名--------------------Retrieve DBMS server hostname
--is-dba            检测DBMS当前用户是否为数据库管理员(DBA)---Detect if the DBMS current user is DBA
--users             枚举DBMS所有用户------------------------Enumerate DBMS users
--passwords         枚举DBMS所有用户的密码哈希---------------Enumerate DBMS users password hashes
--privileges        枚举DBMS所有用户的权限-------------------Enumerate DBMS users privileges
--roles             枚举DBMS所有用户的角色-------------------Enumerate DBMS users roles
--dbs               枚举DBMS所有数据库----------------------Enumerate DBMS databases
--tables            枚举DBMS数据库中的所有表-----------------Enumerate DBMS database tables
--columns           枚举DBMS数据库表中的所有字段---------------Enumerate DBMS database table columns
--schema            枚举DBMS模式----------------------------Enumerate DBMS schema
--count             检索数据表的数目------------------------Retrieve number of entries for table(s)
--dump              导出DBMS数据表项------------------------Dump DBMS database table entries
--dump-all          导出所有DBMS数据库表项-------------------Dump all DBMS databases tables entries
--search            搜索列、表、(和/或)数据库名--------------Search column(s), table(s) and/or database name(s)
--comments          检索DBMS注释----------------------------Retrieve DBMS comments
-D DB               指定需要枚举的DBMS数据库-----------------DBMS database to enumerate
-T TBL              指定需要枚举的DBMS数据库表---------------DBMS database table(s) to enumerate
-C COL              指定需要枚举的DBMS数据库表字段-------------DBMS database table column(s) to enumerate
-X EXCLUDECOL       指定不需要枚举的DBMS数据库表字段-----------DBMSdatabase table column(s) to not enumerate
-U USER             指定需要枚举的DBMS用户------------------DBMS user to enumerate
--exclude-sysdbs    枚举数据库表时,指定排除的特定系统数据库--Exclude DBMS system databases when enumerating tables
--pivot-column=P..  指定主列名-----------------------------Pivot column name
--where=DUMPWHERE   转储表时,使用WHERE条件语句-------------Use WHERE condition while table dumping
--start=LIMITSTART  指定要导出数据表条目开始的行数-----------First query output entry to retrieve
--stop=LIMITSTOP    指定要导出数据表条目结束的行数-----------Last query output entry to retrieve
--first=FIRSTCHAR   指定获取返回查询结果开始的字符位---------First query output word character to retrieve
--last=LASTCHAR     指定获取返回查询结果结束的字符位---------Last query output word character to retrieve
--sql-query=QUERY   设置需要指向的SQL语句-------------------SQL statement to be executed
--sql-shell         调出交互式的SQL shell------------------Prompt for an interactive SQL shell
--sql-file=SQLFILE  设置给定的文件,执行文件中的SQL语句------Execute SQL statements from given file(s)

10.Brute force(暴力破解):

These options can be used to run brute force checks
以下选项用于暴力破解检测

--common-tables     检测常见的表名是否存在--Check existence of common tables
--common-columns    检测常见的列名是否存在--Check existence of common columns

11.User-defined function injection(用户自定义函数注入):

These options can be used to create custom user-defined functions
以下选项用于创建用户自定义函数

--udf-inject        注入用户自定义函数----Inject custom user-defined functions
--shared-lib=SHLIB  设置共享库的本地路径--Local path of the shared library

12.File system access(访问文件系统):

These options can be used to access the back-end database management system underlying file system
以下选项用于访问后端DBMS底层的文件系统

--file-read=RFILE   设置从后端DBMS文件系统读取的文件-------Read a file from the back-end DBMS file system
--file-write=WFILE  设置在后端DBMS文件系统上写入的本地文件--Write a local file on the back-end DBMS file system
--file-dest=DFILE   设置写入后端DBMS所使用的文件绝对路径----Back-end DBMS absolute filepath to write to

13.Operating system access(访问操作系统):

These options can be used to access the back-end database management system underlying operating system
以下选项用于访问后端DBMS底层的操作系统

--os-cmd=OSCMD      设置执行的操作系统命令---------------Execute an operating system command
--os-shell          调出交互式操作系统shell--------------Prompt for an interactive operating system shell
--os-pwn            调出OOB shell,Meterpreter或VNC------Prompt for an OOB shell, Meterpreter or VNC
--os-smbrelay       一键调出OOB shell,Meterpreter或VNC--One click prompt for an OOB shell, Meterpreter or VNC
--os-bof            利用存储过程的缓冲区溢出-------------Stored procedure buffer overflow exploitation
--priv-esc          数据库进程用户提权-------------------Database process user privilege escalation
--msf-path=MSFPATH  Metasploit框架的本地安装路径---------Local path where Metasploit Framework is installed
--tmp-path=TMPPATH  远程临时文件目录的绝对路径------------Remote absolute path of temporary files directory

14.Windows registry access(访问Windows注册表):

These options can be used to access the back-end database management system Windows registry
以下选项用于访问后端DBMS的Windows注册表

--reg-read          读取一个Windows注册表键值-----Read a Windows registry key value
--reg-add           写入一个Windows注册表键值数据--Write a Windows registry key value data
--reg-del           删除一个Windows注册表键值-----Delete a Windows registry key value
--reg-key=REGKEY    指定Windows注册表键-----------Windows registry key
--reg-value=REGVAL  指定Windows注册表键值---------Windows registry key value
--reg-data=REGDATA  指定Windows注册表键值数据-----Windows registry key value data
--reg-type=REGTYPE  指定Windows注册表键值类型-----Windows registry key value type

15.General(通用选项):

These options can be used to set some general working parameters
以下选项用于设置通用的参数

-s SESSIONFILE      从储存文件(.sqlite)中加载session会话信息---Load session from a stored (.sqlite) file
-t TRAFFICFILE      记录所有HTTP流量日志到指定文本文件中保存----Log all HTTP traffic into a textual file
--batch             不询问用户输入选择,自动使用默认配置--------Never ask for user input, use the default behaviour
--binary-fields=..  具有二进制值的结果字段---------------------Result fields having binary values (e.g. "digest")
--charset=CHARSET   强制对数据检索的字符进行编码处理------------Force character encoding used for data retrieval
--crawl=CRAWLDEPTH  从目标url开始爬取网站---------------------Crawl the website starting from the target URL
--crawl-exclude=..  用正则表达式筛选爬取的页面-----------------Regexp to exclude pages from crawling (e.g. "logout")
--csv-del=CSVDEL    指定输出到csv文件时使用的分隔符(默认",")----Delimiting character used in CSV output (default ",")
--dump-format=DU..  指定导出数据的格式[csv(默认),html,sqlite]--Format of dumped data (CSV (default), HTML or SQLITE)
--eta               显示每个结果输出的预计达成时间-------------Display for each output the estimated time of arrival
--flush-session     刷新当前目标url的session会话文件----------Flush session files for current target
--forms             解析并测试目标url的表单-------------------Parse and test forms on target URL
--fresh-queries     忽略存储在session会话文件中的查询结果------Ignore query results stored in session file
--hex               检索数据时调用DBMS的hex函数---------------Use DBMS hex function(s) for data retrieval
--output-dir=OUT..  自定义输出目录的路径----------------------Custom output directory path
--parse-errors      从响应中解析并显示DBMS错误信息------------Parse and display DBMS error messages from responses
--save=SAVECONFIG   将选项设置保存到一个ini格式的配置文件中----Save options to a configuration INI file
--scope=SCOPE       从提供的代理日志记录中用正则表达式过滤目标--Regexp to filter targets from provided proxy log
--test-filter=TE..  根据payloads和/或标题选择测试项-----------Select tests by payloads and/or titles (e.g. ROW)
--test-skip=TEST..  根据payloads和/或标题跳过部分测试项-------Skip tests by payloads and/or titles (e.g. BENCHMARK)
--update            更新sqlmapUpdate sqlmap

16.Miscellaneous(其他选项):

-z MNEMONICS        使用短助记符("flu,bat,ban,tec=EU")----------Use short mnemonics (e.g. "flu,bat,ban,tec=EU")
--alert=ALERT       探索到SQL注入时,执行主机操作系统命令---------Run host OS command(s) when SQL injection is found
--answers=ANSWERS   设置问题的答案------------------------------Set question answers (e.g. "quit=N,follow=N")
--beep              出现问题时进行提醒,探索到SQL注入时发出提示音--Beep on question and/or when SQL injection is found
--cleanup           清除DBMS中特定的用户自定义函数和数据表--------Clean up the DBMS from sqlmap specific UDF and tables
--dependencies      检查sqlmap所缺少的(非核心)依赖---------------Check for missing (non-core) sqlmap dependencies
--disable-coloring  禁用对控制台输出颜色-------------------------Disable console output coloring
--gpage=GOOGLEPAGE  从指定的页码使用Google dork结果--------------Use Google dork results from specified page number
--identify-waf      对WAF/IPS/IDS防护进行全面的测试--------------Make a thorough testing for a WAF/IPS/IDS protection
--mobile            利用HTTP User-Agent模拟智能手机-------------Imitate smartphone through HTTP User-Agent header
--offline           离线模式操作(仅使用session会话数据)----------Work in offline mode (only use session data)
--page-rank         对Google dork的结果显示网页排名(PR)----------Display page rank (PR) for Google dork results
--purge-output      从输出目录中安全移除所有内容------------------Safely remove all content from output directory
--skip-waf          跳过启发式的WAF/IPS/IDS防护检测--------------Skip heuristic detection of WAF/IPS/IDS protection
--smart             只有在使用启发式检测时才进行全面的测试---------Conduct thorough tests only if positive heuristic(s)
--sqlmap-shell      调出交互式的sqlmap shell---------------------Prompt for an interactive sqlmap shell
--tmp-dir=TMPDIR    指定用于存储临时文件的本地目录-----------------Local directory for storing temporary files
--wizard            适于入门用户的简单向导界面--------------------Simple wizard interface for beginner users

(三)SQLMap工具-使用选项的操作命令&功能

标签:服务器   const   bee   用户   operation   设置   func   temp   www   

原文地址:https://www.cnblogs.com/uestc2007/p/11468672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!