how would i check referer of iframe..

kammykhan

Regular Member
Joined
Dec 23, 2008
Messages
239
Reaction score
114
what process would you take to check if your iframe is faking properly or leaking?

how would you check what referel data is being sent...

someone must know how to check!?


please let me know asap!

thanks peeps!
 
Just send the user to a php page (instead of sending him to your aff link) which includes this:

bla.php
Code:
<?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);
?>
Now, put a txt file with the name datei (datei.txt) in the same folder and set the rights to 777. Now, you get the referrer and the user agent of every user who gets on the page.
 
using this.. would i be able to tell if my iframed page has leaked or if its been faked wel??
 
go to your cpa acct stats and check your stats to see where your referers came from. some networks provide this info - others dont. waaahh
 
yea problem is the one im using doesnt..lol.. otherwise that was my usual way of checking!
 
using this.. would i be able to tell if my iframed page has leaked or if its been faked wel??

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
 
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?
 
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?

It will see the page you've iframed not the page that contains the iframe.

This is why you must DMR/FR the URL that is being iframed.
 
Back
Top