欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Web网络安全分析二次注入攻击原理详解

程序员文章站 2022-03-13 10:22:41
目录二次注入攻击二次注入代码分析二次注入攻击二次注入攻击的测试地址:http://127.0.0.1/sqli/double1.php?username=test 和 http://127.0...

二次注入攻击

二次注入攻击的测试地址:http://127.0.0.1/sqli/double1.php?username=test 和 http://127.0.0.1/sqli/double2.php?id=1。 其中,double1.php页面的功能是注册用户名,也是插入sql语句的地方;double2.php页面的功能是通过参数id读取用户名和用户信息。

第一步,访问double1.php?username=test',如图40所示。

Web网络安全分析二次注入攻击原理详解 

图40 注册用户名test'

从页面返回结果可以看到用户名test'对用的id为9,访问double2.php?id=9,结果如图41所示。

Web网络安全分析二次注入攻击原理详解 

图40 访问test'的信息

从返回结果可以看到服务端返回了mysql的错误(多了一个单引号引起的语法错误),这时回到第一步,先访问double1.php?username=test' order by 1--+,获取一个新的id=10,当再次访问double2.php?id=10时,页面返回空白;再次尝试,访问double1.php?username=test' order by 10--+,获取一个新的id=11,当再次访问double2.php?id=11时,页面返回错误信息(unknown column ‘10' in ‘order clause'),如图42所示。

Web网络安全分析二次注入攻击原理详解 

图42 访问order by 10的结果

这说明空白页面就是正常返回,通过不断地尝试,笔者判断出数据库中一共有3个字段。

访问double1.php?username=test' union select 1,2,3--+,获取一个新id=12,再访问double2.php?id=12,发现页面返回了union select中的1和2字段,结果如图43所示。

Web网络安全分析二次注入攻击原理详解 

图43 使用union语句的结果

在2或3的位置,插入我们的语句,比如访问double1.php?username=test' union select 1,user(),3--+,获得新的id=13,再访问double2.php?id=13,得到user()的结果,如图44所示,使用此方法就可以获取数据库中的数据。

Web网络安全分析二次注入攻击原理详解 

图44 利用二次注入获取数据

二次注入代码分析

二次注入中double1.php页面的代码如下所示,实现了简单的用户注册功能,程序获取到get参数username的参数password,然后将username和password拼接到sql语句,使用insert语句插入到数据库中。由于参数username使用addslashes进行转义(转义了单引号,导致单引号无法闭合),参数password进行了md5哈希,所以此处不存在sql注入漏洞。

<?php header('content-type:text/html;charset=utf-8');
$con=mysqli_connect("localhost","root","root","test");
if (mysqli_connect_errno())
{
    echo "连接失败: " . mysqli_connect_error();
}
$username = @$_get['username'];
$password = @$_get['password'];
$result = mysqli_query($con,"insert into users(`username`,`password`) values ('".addslashes($username)."','".md5($password)."')");
echo "新的id为:".mysqli_insert_id($con);
?>

当访问username=test'&password=123456时,执行的sql语句为:

insert into users(`username`,`password`) values ('test\'','e10adc3949ba59abbe56e057f20f883e')

从图45中的数据库里可以看到,插入的用户是test'。

Web网络安全分析二次注入攻击原理详解 

图45 插入到数据库中的数据

在二次注入中double2.php中的代码如下所示。首先将get参数id转换成int类型(防止拼接到sql语句时,存在sql注入漏洞),然后到users表中获取id对应的username,接着到person表中查询username对应的数据。

<?php header('content-type:text/html;charset=utf-8');
$con=mysqli_connect("localhost","root","root","test");
if (mysqli_connect_errno())
{
    echo "连接失败: " . mysqli_connect_error();
}
$id = intval(@$_get['id']);

$result = mysqli_query($con,"select * from users where `id`=".$id);
$row = mysqli_fetch_array($result);

$username = $row['username'];
$result2 = mysqli_query($con,"select * from person where `username`='".$username."'");
if (!$result2)
{
    echo mysqli_error($con);
    exit();
}
if($row2 = mysqli_fetch_array($result2))
{
    echo $row2['username'] . " : " . $row2['money'];

}
else
{
    echo mysqli_error($con);
}
?>

但是此处没有对$username进行转义,在第一步中我们注册的用户名是test',此时执行的sql语句为:

select * from users where `username`='test''

单引号被带入sql语句中,由于多了一个单引号,所以页面会报错。

以上就是web网络安全分析二次注入攻击原理详解的详细内容,更多关于web网络安全二次注入攻击的资料请关注其它相关文章!

上一篇: 的区别

下一篇: mac 备忘