Adsense Cheating? Dont!! Found out the hard way.

Google does not have to be so smart to catch adsense fraud, what any potential fraudsters have against them is statistics.

If everybody coming to your site is going to spend 15-20 seconds then click on an ad you have a problem. If you are going to have 100s of visitors open you page in an iframe and not click ads you have a problem.

Google has millions of sites under its nose through adsense and analytics, so most abnormal activity will float to the top. You may get away with it in the short term but you will almost always float to the top.

If you are trying to cheat adsense, you are essentially fighting against a mathematical model you have little information about. The company doesn't have to break a finger to catch you. All they have to do is label/set the model which they have all the data to(you do not) and ban all those who cross into the red.
 
You have a good theory there.But how do you do it dude :eek:??

here you go dude:

1.create blackhatpage.php(name it anything you like) <-- your black hat page
2.create whitehatpahe.php(name it anything you like) <-- your white hat page

3.create index.php and use this code, here:

Code:
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "http://your-traffic-source-domain-name-here.com")//you can put any referrer here as long as it's same as in step 4

{
include('blackhatpage.php');
}

else

{
include('whitehatpage.php');
}
?>

4.to make sure that "your-traffic-source-domain-name-here.com" is identified as referrer, create index.php on "your-traffic-source-domain-name-here.com" with this code:

Code:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://yoursite.com");//target where you direct your BH traffic like index.php from step 3
curl_setopt($ch, CURLOPT_REFERER, "our-traffic-source-domain-name-here.com");//you can put any referrer here as long as it's same as in step 3
$result = curl_exec($ch);
curl_close($ch);
?>

this way the traffic that comes from "your-traffic-source-domain-name-here.com" will see black hat site, all others will see white hat site

you like it?? hit thanks dude
 
Last edited:
Thanks man, realy appriciate the effort. I am gonna emplemnt this script into my new clicking model, where I am gonna hit the "small birds"

Not to hard, but banking some good money. I hope that I won't get caught and I will be much smarter when things go out of track.

Only problem. I don't have got a backup plan. So that's what I am going to break my brains on.
 
Google does not have to be so smart to catch adsense fraud, what any potential fraudsters have against them is statistics.

If everybody coming to your site is going to spend 15-20 seconds then click on an ad you have a problem. If you are going to have 100s of visitors open you page in an iframe and not click ads you have a problem.
-snip-


Well, thats why we have to be smarter :D Rotating iframes, therefore rotating adsense accounts, using different CPCs, etc, also make sure your whitehat site gets a lot of visitors. (Mine gets 10k unique a day, and I'm going to try iframing the adsense now.)
 
It's not only cheating google, it's stealing from honest advertisers like myself.
 
Instead of using Adsense use the old warez trick of hiding passwords in the backend of CPA offers. Place your CPA offer on a whitehat page which you will need to drive legitimate traffic to. On your blackhat page tell the victim that to see the goods they need to grab a password from the 5th words on paragraph 6 of the last page of this offer - and tell them to browse to the whitehat page and click the CPA offer. They will have to complete the offer to get to the password page. You can either make it legit for the user by actually having content or just send them on a wild goose chase with no chance of getting the correct password. The CPA network will be none the wiser because the referrer is coming from a legitimate page. Your conversion rate won't be as high but you can balance this out with higher payouts.
 
Back
Top