Need to Spoof Referrer as Google/Twitter/Facebook (Will Reward)

acooper18

Newbie
Joined
May 27, 2012
Messages
19
Reaction score
1
Hi Guys,

I'm looking for a referral spoofing script to boost my analytics (yes I'm aware of the implications of boosting analytics - no need to lecture about being banned).

Currently, I have:

traffic source IFRAME my whitehat domain w/ magic number (i.e., CPA redirector) IFRAME my tracking script

However, my tracking script is picking up traffic source despite being iframed from my whitehat domain.

(on the otherhand, whatismyreferrer is picking up the whitehat domain w/o magic number, so Brad's script is somewhat working)

It'd be weird to blank to referrer, so does anyone have ideas to spoof traffic source as Google/Twitter/Facebook?
 
I can help you with spoofing the referer to Facebook (but not Google or Twitter)
And I can also teach you how to spoof the referer to any url you want - but you have to own that urls

add me on skype, and we'll talk pricing :)
 
hai i am ontrested and i already pm you ..

I can help you with spoofing the referer to Facebook (but not Google or Twitter)
And I can also teach you how to spoof the referer to any url you want - but you have to own that urls

add me on skype, and we'll talk pricing :)
 
PHP:
$ch = curl_init();curl_setopt($ch, CURLOPT_URL, 'YOUR-WEBSITE-URL');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, 'SPOOF-URL');
$html = curl_exec($ch);
 
Any elaboration on that hamanchi? Obviously the code doesn't work on its own. How is it implemented?
 
Apologise for late reply stucked with various projects

PHP:
$ch = curl_init(); //Intialize the curl instance.

curl_setopt($ch, CURLOPT_URL, 'YOUR-WEBSITE-URL');// replace YOUR-WEBSITE-URL to your webiste linkcurl_setopt($ch, 
CURLOPT_REFERER, 'SPOOF-URL'); // replace SPOOF-URL to your choice website link like google or yahoo or whatever you like

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// this line transfer all information

$html = curl_exec($ch); // finally excute.
 
If you want see this script result then make two pages.

In pageone.php copy paste following code

PHP:
  echo 'refer-url:'.$_SERVER["HTTP_REFERER"];

In pagetwo.php copy past following code

PHP:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'pageone.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, 'googledotcom');
$html = curl_exec($ch); 
echo $html;


Upload both files on same hosting now browse pagetwo.php you got you result. if you find any confusion please feel free to ask :)
Cheers
 
Okay. Just to be clear then. This only work on convincing websites on your own server that the referer is Facebook/Google? You can't put third party websites in the YOUR-URL space?
 
Look in YOUR-URL you place the website address where you want to sent Refering URL
 
Back
Top