Forum Moderators: phranque
Is there a quick way to do this?
this is my existing blocking:
<Files *>
order deny,allow
# Nigerian/African 419 Scammers IP addresses follow:
deny from 12.166.96.32/27
deny from 61.11.230.112/29
deny from 62.56.128.0/17
deny from 62.56.235.
deny from 62.56.236.
*snip*
(long long long long list)
(i have a 21mb list of ips)
deny from 58.71.0/17
deny from 61.9.0/17
deny from 61.14.192/18
deny from 61.28.128/18
allow from #*$!.#*$!.#*$!.#*$!
</Files>
thanks.
The usual solution (other than long lists of 'Deny from' IPs) is to use GeoIP or similar services to get a country-code for the requesting IP, and then screen requests to your site based on that value.
Jim