Malware Signatures

  1. Home
  2. Malware Signatures
  3. js.spam-seo.hideme.001

js.spam-seo.hideme.001

Malware creators sometimes use pretty obvious names for the page elements which should be hidden via JavaScript code.
This is one of them. We've noticed, that "hideMe" is quite common name for the page elements with various Payday Loans spam and other similar spam content.
Using the JavaScript code, such block disappears from the visible page area.

Related blog posts:
Website Malware – SPAM Injections – HideMe – KickeMe
The Story of Clip:rect – A Black Hat SEO Trick

This is a variant of scripts that modify styles of HTML blocks with spammy content

Affecting

Any website

Cleanup

You can sign up with us and let our team remove the malware for you.

Dump

<script type='text/javascript'>
if(document.getElementById('hideMe') != null){
document.getElementById('hideMe').style.visibility = 'hidden';
document.getElementById('hideMe').style.display = 'none';
}
</script>