How to set Go*ogle Search Results as referrer?

HairSpray

Junior Member
Joined
Nov 21, 2008
Messages
118
Reaction score
25
Does anyone know how to set go*ogle search results as the referrer of a clicked link? Basically I need something being discussed here http://www.blackhatworld.com/blackh...e-traffic-source-increase-alexa-rankings.html where in the last step, the software has a feature to set a referrer for the website we put.

Is there anyway this can be done manually? using php or software or anything? I'm buying traffic and I need google search results to appear as my referrer. Thanks.
 
ofcoz, if the programming language supports socks.
BTW: though javascript has the "referrer" property to set, it actually doesn't work.

Okay here you go
PHP:
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, "http://the-domain-you-want-drive-traffic-to");
curl_setopt ($ch, CURLOPT_REFERER, "http://google-result-referrer/");
curl_exec ($ch);
curl_close ($ch);
 
oh yeah anyone can go to the site whenever even from emails but the referer will still be google right?
 
curl is good solution, but note that all requests will come from your server ip where curl is executed. this might not be safe depending on what you want to achieve
 
ofcoz, if the programming language supports socks.
BTW: though javascript has the "referrer" property to set, it actually doesn't work.

Okay here you go
PHP:
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, "http://the-domain-you-want-drive-traffic-to");
curl_setopt ($ch, CURLOPT_REFERER, "http://google-result-referrer/");
curl_exec ($ch);
curl_close ($ch);

Let's just say I'm 5 year old and I know nothing about curl, how do I execute this?

curl is good solution, but note that all requests will come from your server ip where curl is executed. this might not be safe depending on what you want to achieve

Can you go deep on why it is not safe? Does that mean if someone manages to go to my site and got go*ogle as the referrer, the stats will show my ip instead of that visitor's ip?
 
Let's just say I'm 5 year old and I know nothing about curl, how do I execute this?



Can you go deep on why it is not safe? Does that mean if someone manages to go to my site and got go*ogle as the referrer, the stats will show my ip instead of that visitor's ip?

nah, i am saying that everything you do with curl will show your ip
 
nah, i am saying that everything you do with curl will show your ip

so why is this not safe? lets say im using the code above to redirect visitor to my site with go*ogle as the referrer, what could happen?
 
Last edited:
Back
Top