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

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

缺陷编号:wooyun-2014-078074

漏洞标题:无忧企业网站系统绕过防御注入4枚

相关厂商:无忧网络

漏洞作者: Xser

提交时间:2014-11-03 10:43

修复时间:2015-02-01 10:44

公开时间:2015-02-01 10:44

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

我还以为asp程序比php安全,结果一看,一堆注入。一个个上报麻烦,一次来个大集合!
无忧企业网站系统V2014.9.30 更新日志: 修复下载中心链接功能,修复产品添加功能。 软件类别: 国产软件 | 企业政府 在中国站长源码下载的 可能危害到政府

详细说明:

第一处:/CompVisualizeBig.asp中

<%dim id
id=request.QueryString("id")%>
<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from CompVisualize where id="&id,conn,1,1
%>


id没有过滤
-------------------------------------
第二处在/DownloadShow.asp中

<%
ShowSmallClassType=ShowSmallClassType_Article
dim ID
ID=trim(request("ID"))
if Id="" then
response.Redirect("Download.asp")
end if
sql="select * from Download where ID=" & ID & ""
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,3
if rs.bof and rs.eof then
response.write"<SCRIPT language=JavaScript>alert('找不到此下载!');"
response.write"javascript:history.go(-1)</SCRIPT>"
else
rs("Hits")=rs("Hits")+1
rs.update
%>


id没有过滤
-------------------------
第三处在/News_search.asp中

<%
key=Trim(request("key"))
otype=Trim(request("otype"))
BigClass=request("BigClass")
if key="" then
response.write "<script>alert('查找字符串不能为空!');history.back();</Script>"
response.end
end if
%>
<%
Set rs= Server.CreateObject("ADODB.Recordset")
if otype="title" then
sql="select * from NEWS where title Like '%"& key &"%' order by id desc"
elseif otype="msg" then
sql="select * from NEWS where content Like '%"& key &"%' order by id desc"
else
end if
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write "<p align='center'>对不起,没有找到相关新闻</p>"
else
%>


key值没有过滤
-------------------
第四处在/NewsClass.asp中

<% 
BigClass=request("BigClass")
SmallClass=request("SmallClass")
%>
<%
page=clng(request("page"))
Set rs=Server.CreateObject("ADODB.RecordSet")
if BigClass<>"" and SmallClass <>"" then
sql="select * from news where BigClassName='"&BigClass&"' and SmallClassName='"&SmallClass&"' order by AddDate desc"
rs.Open sql,conn,1,1
elseif BigClass<>"" then
sql="select * from news where BigClassName='"&BigClass&"' order by AddDate desc"
rs.Open sql,conn,1,1
end if
if rs.eof and rs.bof then
response.Write("暂时没有记录")
else
%>


SmallClass和BigClass都没有过滤
----------------------------

漏洞证明:

QQ截图20141001203806.png

第一处本地测试
--------------------------------------------
第二处本地测试

QQ截图20141001204133.png


-----------------------------------------
第三处本地测试

QQ截图20141001205303.png


------------------
第四处本地测试

QQ截图20141001205303.png

修复方案:

唉,没心情看了,要是耐心看下去,保证上10个!

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


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:13

确认时间:2014-11-07 10:54

厂商回复:

最新状态:

暂无