<?php
$referrer = $_SERVER['HTTP_REFERER'];
$browser = $_SERVER['HTTP_USER_AGENT'];
$information = $referrer. " | " .$browser. "\n";
$datei_handle=fopen("datei.txt",a);
fwrite($datei_handle,$information);
fclose($datei_handle);
?>
using this.. would i be able to tell if my iframed page has leaked or if its been faked wel??
<?php mail('[email protected]','reftest',$_SERVER['HTTP_REFERER'],'From: [email protected]'); ?>
yeah, of course. In the txt file it looks like this:
referrer | user agent
referrer | user agent
...
So, you basically send a few hundred or thousand people to your site and then check the txt file. When you blank the referrer it has to look like this:
| user agent
| user agent
...
Hope this helped
When I send blackhat traffic to an iframe offer on my own domain, what referral URL will my affiliate manager see if the visitor converts to a lead? Will he see my blackhat traffic source or from my own URL which contains the iframe?