Cloak Adsense.

smallfry

BANNED
Joined
Jul 28, 2010
Messages
62
Reaction score
1
We all know the simple old way of cloaking adsense. You simply use a <div> and hide the adsense behind a picture. So you entice a user to click on the picture but really they click on the adsense. This is totally blackhat and will get you banned, so do not use it. However, I was reading a thread that discussed another approach. Basically the website loads an invisible frame and no matter where the user clicks, it records as an adsense click. There was a script once posted in these forums, but for some strange reason has been removed. I was curious if anyone has this specific script? Or if anyone knows more about it.

The way I see it is, you would have to make the adsense huge in height and width, but that would be recorded to google as they send that to their servers once you click on the ad. So that would be detected. I do not see how other than doing the height width, it would work. Anyone want to chime in?
 
We all know the simple old way of cloaking adsense. You simply use a <div> and hide the adsense behind a picture. So you entice a user to click on the picture but really they click on the adsense. This is totally blackhat and will get you banned, so do not use it. However, I was reading a thread that discussed another approach. Basically the website loads an invisible frame and no matter where the user clicks, it records as an adsense click. There was a script once posted in these forums, but for some strange reason has been removed. I was curious if anyone has this specific script? Or if anyone knows more about it.

The way I see it is, you would have to make the adsense huge in height and width, but that would be recorded to google as they send that to their servers once you click on the ad. So that would be detected. I do not see how other than doing the height width, it would work. Anyone want to chime in?
Create a div with z-index of 0 that spans the height & width of the window auto-adjusting. OnClick, make it invoke a JavaScript function to hit the iframe.
 
But will that not be detected because it is using the click function? Adsense can detect the mouseover and what not. I am trying to understand more. Please explain if you can. Pm is fine if need be.
 
Last edited:
Here is what I came up with so far:

Code:
<script>
function Dosomething()
{
    alert("This will become a click function");
}

</script>
    
 
<div id=div1 name=div1 onclick="Dosomething()" style="width:100%;height:100%;position:absolute;z-index:0">
</div>

So first problem is the scroll bars, how to eliminate them. Two how to get the javascript to click on the actual iframe. Any more input guys?
 
So first problem is the scroll bars, how to eliminate them. Two how to get the javascript to click on the actual iframe. Any more input guys?
Scroll bars should be able to be nulled w/ CSS. I'll look into it though. You won't want the script to click the iframe, just set the address and navigate to it. Might be best to handle this over PM or an IM service actually.
 
I would like to know that as well. Here or by PM would be great thanks.
 
Is there any probability of getting the account banned?
As such , am interested for more info on this.
 
Is there any probability of getting the account banned?
As such , am interested for more info on this.

LOL this is called clickjacking and yes there is a HIGH probability of getting account banned. Good luck though :)
 
you have to think, is it better to make $100 every month or $1000 one month and get banned? those figures are just an example, i dont know how much anyone makes lol.
 
Instead of doing this with adsense, are there more lenient networks?
 
Back
Top