htaccess will not work alone because they are calling your scripts with your own referrer. You would block your real surfers clicks if you block your own referral.
You also need something like this in all your scripts:
open(DATA, "blacklist.txt");
@blacklist = <DATA>;
close(DATA);
foreach (@blacklist) {
if ($_ =~ /$cheater/i) {
print "content-type: text/html\n\n";
print "Fuck Off Asshole!";
exit;
}
}
The $cheater value should be gotten from the cookie that was set in the browser or from any file you created matching the IP address to the referrer(cheater)
Please send any donations to
[email protected] (Paypal)
