Ripped lander - pulling from my server

Navuud

New member
Aug 11, 2010
432
4
0
BC
Hey guys,

So someone has recently ripped one of my landers and I see they're running some pretty decent traffic to it, however they're stupid enough to be pulling all the files from my server still.

They're pulling all the images, css, js files, everything except he's changed the aff links.

First I thought - why don't i throw in a giant penis in there, but then I thought maybe I could somehow edit the css/js file to redirect one of his links to mine and grab some cashflow, not too much so as to be noticeable but just enough to say fuck you and make some $

It's a wordpress blog running through thesis theme.

What would you do (and how would you do it?)

If i wanted to edit it in this way so as to grab 1 aff link and redirect it to mine how would I do this?


Edit: it looks as if hes just gone "view source" to my page, copy and pasted it all into a .php file and edited the aff links, everything else is intact.
 


adult response: I'd trace the IP, find the site and their host and registrar, and file a DMCA takedown request, and if they don't take the shit down, you sue them.

personal feelings response: replace all images with tubgirl and embed a virus in the page
 
Put this:

Code:
document.location = 'http://yourlandingpage.com';
in one of your js files.
 
I wonder if there's a way to redirect all external links from the css/js files every 1 in 5 times to my aff link instead of his.

Any ideas?
 
Somehow locate his IP and make sure he himself is never redirected, and then go ahead and redirect 1/3 of the traffic to your aff link, as to not tip him off.
 
I wonder if there's a way to redirect all external links from the css/js files every 1 in 5 times to my aff link instead of his.

Any ideas?

If he's loading your javascript this is easy:

(Assumes you are using jquery)
Code:
var randomnumber=Math.floor(Math.random()*6)
if(randomnumber==5)
{
   $("#yourlink").attr("href", "http://www..yourafflink.com/")
}
 
Put this:

Code:
document.location = 'http://yourlandingpage.com';
in one of your js files.


Just tried this, it is almost working except its looping the site over and over and it never fully loads..


Code:
var randomnumber=Math.floor(Math.random()*6)
if(randomnumber==5)
{
   $("#yourlink").attr("href", "http://www..yourafflink.com/")
}

#yourlink ---- what link is that? (sorry no knowledge of programming)

heh this is fun
 
#yourlink is used to select the outgoing affiliate links on the page.

In this case it uses the ID (#idOnLinkAnchor) but you can also select by class (.classOnLinkAnchor) or anything else. This depends on the page of course.
 
doin a bit of research i could also redirect certain screen resolutions *i know his from him being on my site :D

but I'm still coming across the same looping affect where it wont fully load,

Code:
if ((screen.width>=1280) && (screen.height>=800))
{
 window.location.replace('http://www.mylander.com');
}
 
Happens all the time. If you can inject your link somehow do so. Hell I have had people rip my landers and were too lazy or just plain retarded and kept my links in there. lol

But really, don't sweat it too much or get too bent out of shape. About it. Sure you can go the whole DMCA route, but the guy is just going to do it to someone else or probably copy another one of your landers....
 
@imbo55

yeah it's happened before, not something i take personally - plus its not like i've never ripped someone elses lander before. It just poses opportunity at the moment :D
 
doin a bit of research i could also redirect certain screen resolutions *i know his from him being on my site :D

but I'm still coming across the same looping affect where it wont fully load,

Code:
if ((screen.width>=1280) && (screen.height>=800))
{
 window.location.replace('http://www.mylander.com');
}

Is it because your page is using the same piece of code?
 
do this in a js file:
if(document.location == 'http://hislandingpage.com')
document.location = 'http://yourlandingpage.com'

;)
 
If you can't get Any of the above to work, replace of the larger images with a message. For 20% discount or whatever, visit yoursite.com
 
If you've got javascript on the page, change it so that it redirects. I did this once and made some extra $$ until the fucker found out and took his page down (probably too dumb to change it)
 
lol, done this too. You can also make it so whenever he visits the page from his IP, he sees his own page that he ripped, and his links. But everyone else will see your page/links.