Jacked lander, 202 going haywire...



There was a thread a while ago about how to redirect all traffic if someone has left their p202 code intact. search it in the "affiliate marketing" section.

Good luck! ;)
 
LMFAO

FUCK YES - GOT IT

Make sure you take the suggestion in that article to filter the thief's IP address so that when he visits his site it won't redir to yours. This will help keep him in the dark as to what's happening with his stolen lander for a bit longer usually.

Something like this (I'm a JS n00b)

Code:
<script language="javascript">
var ip = '<!--#echo var="REMOTE_ADDR"-->'
if (ip == 'XXX.XXX.XX.XXX') {
// nothing
}
else {
//redirect to your lander code here
    if (document.URL == "http://www.IAmCopying.com")
    {
    window.location = "http://www.YourLander.com";
    }
}
</script>
 
Here is the code above with some mods.

This one just needs to be the domain so if he copies the pages many times you'll get all his traffic.

Code:
if(window.location.hostname == "hisdomain.com") {
	var ip = '<!--#echo var="REMOTE_ADDR"-->'
	if(ip != 'XXX.XXX.XXX.XXX'){
		window.location = "http://www.yourdomain.com";
	}
}
 
  • Like
Reactions: -Matt-
Haha, nice. I had this done on a page with 2 offers...they only changed the first offer link and left out the 2nd.

it.was.epic.
 
lol, i got 9 sales before they realized they are fuckin retarded.. thx guys ;)

Should I out the motherfuckers who did it? I have their gay design companies url/name... stealing my shit and calling yourself a design/marketing business? lol
 
lol, i got 9 sales before they realized they are fuckin retarded.. thx guys ;)

Should I out the motherfuckers who did it? I have their gay design companies url/name... stealing my shit and calling yourself a design/marketing business? lol

Yes.
 
lol, i got 9 sales before they realized they are fuckin retarded.. thx guys ;)

Should I out the motherfuckers who did it? I have their gay design companies url/name... stealing my shit and calling yourself a design/marketing business? lol

Out that stupid design company.
 
lol, i got 9 sales before they realized they are fuckin retarded.. thx guys ;)

Should I out the motherfuckers who did it? I have their gay design companies url/name... stealing my shit and calling yourself a design/marketing business? lol

send those fuckers an email and thank them for the leads :action-smiley-052:
 
lol, i got 9 sales before they realized they are fuckin retarded.. thx guys ;)

Should I out the motherfuckers who did it? I have their gay design companies url/name... stealing my shit and calling yourself a design/marketing business? lol
lol nice
 
Here is the code above with some mods.

This one just needs to be the domain so if he copies the pages many times you'll get all his traffic.

Code:
if(window.location.hostname == "hisdomain.com") {
    var ip = '<!--#echo var="REMOTE_ADDR"-->'
    if(ip != 'XXX.XXX.XXX.XXX'){
        window.location = "http://www.yourdomain.com";
    }
}

+rep. I knew mine was sloppy, and this will come in handy.