I want to know, how we can check fake traffic hits:
If traffic coming from an IP changer software;
If traffic coming from an proxy IP;
If person has set referer url in browser;
If traffic is coming from traffic generating software;
If traffic is coming from traffic generating services/websites.
To check proxy we can use:
$_SERVER['HTTP_X_FORWARDED_FOR']
$_SERVER['HTTP_VIA']
$_SERVER['HTTP_PROXY_connection']
$_SERVER['HTTP_CLIENT_IP']
To check referer we can use:
$_SERVER['HTTP_REFERER']
But the above method can easily be cheated!?
Please suggest more possible way to check for fake traffic/hits!?