A very strange question

nycsavage

Regular Member
Joined
Mar 31, 2008
Messages
211
Reaction score
66
Trust me, there is a method to my madness!

I want to buy traffic (or use fake traffic) that will hit a competitors website and boost his UV's. This doesnt sound like much, but heres the tricky bit, I want my site to be the referrer!

Is there a way to do this?
 
Just send the fake traffic to your page. Then do a auto form submit to the your competitors page (basically a redirect that will reflect you as the referer)

On your page, do some simple cloaking to show the form only if the referer is from your fake traffic, otherwise spit code that your competitor wants to see
 
This may do what you're looking for

HTML:
http://www.blackhatworld.com/blackhat-seo/cloaking-content-generators/22533-link-cloakers-maskers-redirects-keep-referrer.html
 
I actually have a script that will do this for you. You can even decide which referrer to redirect. For example lets say you buy shit traffic from traffict*axi.c0m and you just want THAT traffic to go to your (im assuming) link exchange partner, this way if you get legit traffic you can keep them on your site and only send the bs to your exchange. I might be wrong on your intentions tho so, let me know, I have the script somewhere on my comp.. I think...
 
Hi, yes, this is a link exchange from DP, I didnt think it was a common thing! The site owner told me mine would be prominantly placed......it is if you count the 24th link out of about 200 lol

Do you know the name of the script? I might be able to find it if you cant.
 
Found it, heres the script, you want to place this BEFORE the 'html' tags... basically before everything. It should be pretty self explanatory, I had this script custom made (you can still see the programmers email in there), it's pretty basic javascript stuff. Let me know if you need help.

Some 'reputation points' are welcome ;) ... By the way, could someone tell me what the rep points are for anyway?

HTML:
<script language=Javascript>
var ref;
ref=document.referrer;

if (ref.replace("YOUR_REFERRER.com","") != ref)
{
window.location.href='http://www.YOUR_LINK_EXCHANGE_PARTNER.com';
}
//=====Code By: eSolutions Technology Inc. - E-mail: [email protected]=====
if (ref.replace("YOUR_REFERRER_2.com","") != ref)
{
window.location.href='YOUR_LINK_EXCHANGE_PARTNER.com';
}
//===== [email protected] ======
if (ref.replace("http://YOUR_REFERRER_3.com","") != ref)
{
window.location.href='http://www.YOUR_LINK_EXCHANGE_PARTNER.com';
}
//=====
</script>
 
Last edited:
Thank you, I dont know how to give rep points, but I have clicked thank you for it. Once I find out, I will give you some :)

EDIT: As Mr Gordan Ramsey says....add some rep.......DONE!
 
Last edited:
Back
Top