How to stop CPALead from redirecting me?

Post a reply

Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: How to stop CPALead from redirecting me?

Re: How to stop CPALead from redirecting me?

by Aerik » Sat Mar 20, 2010 4:01 am

Actually I do have a way of stopping that redirect, but it involves a completely unrelated firefox extension.

Go to Addons.mozilla.org and find "exexceptions." -- the version compatibility tag is out of date, so you'll need to go into about:config and set extensions.checkCompatibility to "false" to get it to install. Or if that doesn't work, install "nightly tester tools," restart firefox, then install "exexceptions."

If you want to be able to click an ad or watch a video that would take you to capalead.com if a script is blocked, but not visit that site, create a value for cpalead.com and mark the "document" attribute as "deny". click "set" and you're done. You will never be able to actually 'visit' cpalead.com, nor will you be able to use "save link as" for a url matching cpalead.com. You should also do the same for cpalock.com and adscendmedia.com, which are synonymous with cpalead. Also set the attribute "popup" to "deny." Even if the site manages to hit you with a popup, it'll be a blank, inactive, harmless window you can close.

About the extension:

This addon does nothing more than give you an editor for the firefox 3.* permissions.sqlite file with import/export capability. When you to go tools > options > content and set what sites you want to allow images on, it places a line in the permissions.sqlite file. Same thing with the cookie preferences, and even the list of websites on which you want to allow installation of addons.

As it turns out, this sqlite file can be used to control 12 other permission types in the exact same way. A single permission just one line in the file, with three space-separated values, naming the domain, the attribute you want to set, and an integer of 0, 1, or 2.

Exexceptions just brings it all together in the same easy-to-grasp window. The file itself is in hex, so in fact exexceptions is an xml (xul?)-based hex editor.

You can also use this extension as a powerful way to control where you can go, what sites are allowed to do, and even change tab behavior a bit. You'll find that the 15 attributes you can control match the names of the html filter types in adblock plus exactly. They are derived from the permissions file.

Re: How to stop CPALead from redirecting me?

by dhouwn » Sun Feb 14, 2010 12:33 am

Create a surrogate that sets the checking variable and set the option "Forbid META-redirections inside <NOSCRIPT> elements" (Noscript OptionsAdvancedUntrusted).

Also, please see:

How to stop CPALead from redirecting me?

by Guest » Sat Feb 13, 2010 10:34 am

I noticed some sites that have been trying to to block NoScript / ABP users... apparently this is the code doing it:

Code: Select all

<script type="text/javascript">var isloaded = false;</script><script type="text/javascript" src="snip"></script><script type="text/javascript">if (!isloaded) { window.location = 'http://cpalead.com/adblock.php'; }</script><noscript><meta http-equiv="refresh" content="0;url=http://cpalead.com/nojava.php" /></noscript>
Apparently isloaded is set in their script, which is blocked by NoScript... how do I get around this?

Top