CPALead.com
Posted: Sun Nov 22, 2009 12:01 pm
This annoying advertising company has recently been targeting Adblock and NoScript users with the following piece of code:
This piece of code is inserted into the page where advertisements are placed. This can currently be demonstrated by going to a movie on wtso.net
What this means for noscript is that under the default configuration, visiting a site with this piece of code is not possible.
An easy fix is to goto noscript's advanced options and check "Forbid META redirections inside <NOSCRIPT> elements".
My question is, is there functionality in noscript for block redirecting towards specific websites in a blacklist? (or those marked as untrusted) If so, would it be possible to add cpalead.com to this list under the default configuration?
Code: Select all
<script language="javascript">
var isloaded = false;
</script>
<script type="text/javascript" src="http://www.cpalead.com/mygateway.php?pub=XXXX&gateid=XXXXXXX"></script>
<script language="javascript">
if (!isloaded) {window.location = 'http://www.cpalead.com/adblock.php';}
</script>
<noscript><META http-equiv="refresh" content="0;URL=http://cpalead.com/nojava.php?pub=XXXX"></noscript>
What this means for noscript is that under the default configuration, visiting a site with this piece of code is not possible.
An easy fix is to goto noscript's advanced options and check "Forbid META redirections inside <NOSCRIPT> elements".
My question is, is there functionality in noscript for block redirecting towards specific websites in a blacklist? (or those marked as untrusted) If so, would it be possible to add cpalead.com to this list under the default configuration?