|
作者:刘哲 来源:南京日报 时间:2008-6-17 3:13:58 |
|
(南京日报2004-10-13报道)中国戏曲三大网站之一的中国秦腔网日前遇到了前所未有的困难,9月26日凌晨,该网站遭到电脑黑客入侵,内容和数据全部被删除。版主刘彭涛因不忍心看到自己3年的心血一夜成空,决定辞去首席版主之职。
当记者打开中国秦腔网时,发现除了主页上一条10月3日的新闻和论坛能打开外,其余的内容全部无法打开。据刘彭涛说,9月26日凌晨,他打开网站时发现网站被黑客入侵,删除了站内的所有内容。他已就此向警方报案,目前正在努力和服务商联系,希望尽量能恢复网站的资料。
服务器提供商调查后说,黑客是在进行恶意删除。如果只更改了一次日志,服务器还能将一些资料恢复,多次更改后就绝对不可能恢复了,这位黑客的手法非常高明。刘彭涛告诉记者,中国秦腔网的建立和日益扩大,都是他在网吧里一个字一个字敲出来的,这3年来他奉献了太多。这次中国秦腔网被黑,对他来说仿佛自己的孩子被别人给毁了,打击非常大。
<%
Function googleColor(value, random)
Dim colorArray
colorArray = Split(value, ",")
googleColor = colorArray(random Mod (UBound(colorArray) + 1))
End Function
Function googleScreenRes()
Dim screenRes, delimiter, resArray
screenRes = Request.ServerVariables("HTTP_UA_PIXELS")
delimiter = "x"
if IsEmpty(screenRes) Then
screenRes = Request.ServerVariables("HTTP_X_UP_DEVCAP_SCREENPIXELS")
delimiter = ","
end If
resArray = Split(screenRes, delimiter, 2)
if (UBound(resArray) + 1) = 2 Then
googleScreenRes = "&u_w=" & resArray(0) & "&u_h=" & resArray(1)
end If
End Function
Dim googleTime, googleDt, googleScheme, googleHost
googleTime = DateDiff("s", "01/01/1970 00:00:00", Now())
googleDt = (1000 * googleTime) + Round(1000 * (Timer - Int(Timer)))
googleScheme = "http://"
if StrComp(Request.ServerVariables("HTTPS"), "on") = 0 Then googleScheme = "https://"
googleHost = Server.URLEncode(googleScheme & Request.ServerVariables("HTTP_HOST"))
Dim googleAdUrl, googleAdOutput
googleAdUrl = "http://pagead2.googlesyndication.com/pagead/ads?" &_
"ad_type=text_image" &_
"&channel=6495040935" &_
"&client=ca-mb-pub-9595218071455095" &_
"&dt=" & googleDt &_
"&format=mobile_single" &_
"&host=" & googleHost &_
"&ip=" & Server.URLEncode(Request.ServerVariables("REMOTE_ADDR")) &_
"&markup=xhtml" &_
"&oe=utf8" &_
"&output=xhtml" &_
"&ref=" & Server.URLEncode(Request.ServerVariables("HTTP_REFERER")) &_
"&url=" & googleHost & Server.URLEncode(Request.ServerVariables("URL")) &_
"&useragent=" & Server.URLEncode(Request.ServerVariables("HTTP_USER_AGENT")) &_
googleScreenRes()
Set googleAdOutput = Server.CreateObject("MSXML2.ServerXMLHTTP")
googleAdOutput.Open "GET", googleAdUrl, false
googleAdOutput.Send
Response.Write(googleAdOutput.responseText)
%> |