Forum Moderators: phranque
<Limit GET>
order allow,deny
deny from <snip>
allow from all
</Limit>
A bit more research and I realised these <expletive deleted>s were hitting the site in order to get their domains to appear in the /stats/ report ("log spamming"). Sending a 403 wasn't enough as they still make it into the logs.
I've protected the /stats/ dir using .htaccess so the incentive for them is gone. At the same time I changed the site .htaccess file to:
RewriteEngine On
RewriteCond %{REMOTE_ADDR} ^<snip>
RewriteRule .* - [N]
Question - is this going to cause problems on our server (hope not), or on their server (hope so). Is there another way to palm them off or send them into a loop?
[edited by: engine at 6:28 pm (utc) on Nov. 9, 2003]
[edit reason] No specifcs thanks. See TOS [webmasterworld.com] [/edit]
I don't see anything that would cause problems on your server, and do yourself a major favor and forget about trying to cause problems on their server. It's bad form, and you already know you can spend your time far more productively.
You really don't want to do this...
RewriteEngine On
RewriteCond %{REMOTE_ADDR} ^192\.****\.0\.1$
RewriteRule .* - [N]
I agree 100% with kevinpate... Issue a 403 for all requests from this IP address 'til they go away, block access to your stats to remove the incentive for future log spammers, and then forget about these guys. There are hundreds or thousands more just like them out there.
RewriteEngine On
RewriteCond %{REMOTE_ADDR} ^192\.****\.0\.1$
RewriteRule .* - [b][F][/b]