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

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

缺陷编号:wooyun-2013-032374

漏洞标题:DESTOON后台多处SQL注入漏洞

相关厂商:DESTOON

漏洞作者: xfkxfk

提交时间:2013-07-26 11:44

修复时间:2013-10-21 11:45

公开时间:2013-10-21 11:45

漏洞类型:SQL注射漏洞

危害等级:低

自评Rank:10

漏洞状态:漏洞已经通知厂商但是厂商忽略漏洞

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2013-07-26: 细节已通知厂商并且等待厂商处理中
2013-07-31: 厂商主动忽略漏洞,细节向第三方安全合作伙伴开放
2013-09-24: 细节向核心白帽子及相关领域专家公开
2013-10-04: 细节向普通白帽子公开
2013-10-14: 细节向实习白帽子公开
2013-10-21: 细节向公众公开

简要描述:

DESTOON后台多处SQL注入。

详细说明:

后台的sql注入太多了,如下:

http://localhost/destoon/admin.php?file=admin&action=edit&userid=1


http://localhost/destoon/admin.php?moduleid=1&file=admin


http://localhost/destoon/admin.php?moduleid=1&file=admin&action=add


http://localhost/destoon/admin.php?file=database


http://localhost/destoon/admin.php?file=database&action=process


http://localhost/destoon/admin.php?rand=92&file=database&action=execute


1.png


如此处:

http://localhost/destoon/admin.php?rand=92&file=database&action=execute


case 'execute':
if(!isset($CFG['executesql']) || !$CFG['executesql']) msg('系统禁止了执行SQL,请FTP修改根目录config.inc.php<br/>$CFG[\'executesql\'] = \'0\'; 修改为 $CFG[\'executesql\'] = \'1\';');
if($submit) {
if(trim($sql) == '') {
msg('SQL语句为空');
} else {
$sql = stripslashes($sql);
if(preg_match("/DROP(.*)(TABLE|DATABASE)/i", $sql)) msg('系统禁止DROP语句');
sql_execute($sql);
dmsg('执行成功', '?file='.$file.'&action=execute');
}
} else {
include tpl('database_execute');
}
break;


变量$sql没有任何过滤,就直接sql_execute($sql)了,如图结果:

2.png


3.png


后台的注入还有很多,就不一一列举了。
虽然是在后台,但是导出都是注入,低级的错误还是很不好的。

漏洞证明:

将详细说明

修复方案:

过滤啊,很多地方都过滤,但是后台就没过滤。

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


漏洞回应

厂商回应:

危害等级:无影响厂商忽略

忽略时间:2013-10-21 11:45

厂商回复:

最新状态:

2013-08-20:感谢提醒,已经修复,详见:http://bbs.destoon.com/thread-53071-1-1.html后台数据已经做了过滤。但是执行SQL语句那块,如果过滤,功能将不可用,用户可以在配置文件里自行决定是否开启。