Advertisement

Sunday, July 26, 2009

Bypassing CPALead

"If you've ever been to a site like watchitsalwayssunny.com or officeepisodesonline.com, you've probably seen the new CPALead.com popup which asks you to take a survey, before you can actually watch any episodes. It stops you from clicking on anything on the page and disables scrolling. It looks like this:

I have written a Greasemonkey script to bypass this behavior and get rid of the CPALead.com popup. It can be found here. It can also be customized to work on other sites with this popup."
-Original Post by bloodycircuits


This was really interesting...
Since my blog's all about bypassing...might as well add this in.

Here are some other ways to do it:
-In FireFox, click View >> Page Style >> No Style
-You can disable javascript in your browser settings.
-You can edit your host files and set cpalead.com to load 127.0.0.1

OR YOU CAN TRY THIS METHOD

The injection:

Code:
javascript:var%20objText%20=%20document.ge
ElementById('cpalead');%20objText.style.display
%20=%20'none';%20var%20objOverlay%20=%
20document.getElementById('overlay');%20obj
Overlay.style.display%20=%20'none';
%20embed_tags(1);%20object_tags(1);%20nomo
reajax%20=%201;%20alert("
Premium%20Content%20Unlocked!");

How to use the injection:
Simple, copy and paste it as a url.

What is javascript injection:
Javascript injection is a tactic used to manipulate javascripts into preforming actions to either bypass or change the desired output. Some injections range from changing the font color of the site if you can't read it to the scopes of this tutorial where we bypass a survey. Javascript injection simply uses the browser bar to pass custom javascript onto the current page, which will alter the script or webpage in some way. It is important to remember these are local changes and do not effect other users in most cases. A example that would infect other users would be if a chat program filtered the chat for mysql injection using javascript, well we could take the ajax call and manipulate that ourselves to preform a SQL injection. However, that is beyond the scope of this tutorial.

Tips:
Save it to your bookmark bar in firefox. To do this right-click on the bookmark tool bar hit "new bookmark", then use the injection as the URL and name it what you would like. This will put your injection a simple click away :) .
Works great on sites like http://www.vidtomp3.com/

Bypassing Sharecash

Sharecash is annoying as hell....
I'm pretty sure most of us can accept this statement.

Anyways, there's a way to bypass Sharecash and start downloading without doing the surveys.

STEP 1: Get on "Firefox". Download it if you don't have it.
Step 2: Install "Greasemonkey" add-on for Firefox.
Step 3: Restart Firefox.
Step 3: Install "Sharecash autodownload" script for Greasemonkey.
Step 4: Try and download a Sharecash file, you should be able to download it unless the offer is not available in your country. This method is for Canada, U.K & U.S.A.

If you're not from Canada, U.K or U.S.A then, I'd suggest you find a proxy for one of those country and try downloading it from there. Don't forget to add the proxy-link to the "Sharecash autodownload" script.

Tools>>Greasemonkey>>Sharecash autodownload>>Add

Hope this helped!!!

Advertisement