Author: W.None (25 Jul 11 4:23am)
Traffic Faker is just another piece of spam software if you use it you are a spammer.
If you are receiving referrer spam in your web logs from TrafficFaker.com , use your htaccess file to send it back.
Place the following code in your .htaccess file
RewriteEngine on
RewriteCond %{HTTP_REFERER} trafficfaker\.com [NC]
RewriteRule ^.*$ http://trafficfaker.com/ [L]
RewriteCond %{REMOTE_ADDR} ^66\.55\.138\.243
RewriteRule ^.*$ http://trafficfaker.com [L]
The first part {HTTP_REFERER} finds all incoming from trafficfaker.com and returns it.
The next bit {REMOTE_ADDR} finds all traffic from the IP address 66.55.138.243 (trafficfaker.com server) and sends it home.
This code returns all traffic to trafficfaker you will still see a hit on your log, but if 1000s of people do this, T.Faker will see 1000s of hits on his web logs.
The effect of this is Mr T. faker will be spamming himself from his own IP , Burning his own bandwidth.
|