Page 1 of 1

Block IP-Adresses

Posted: Wed Mar 07, 2007 2:50 pm
by musicscore
I'm using the Frontend-user module and someone (from Japan with ip-adres 210.150.10.116) is trying to login, again and again.
Is it possible to blok an IP-Adres  (or hostname) totaly from the site build with cmsms.

Musicscore

Re: Block IP-Adresses

Posted: Wed Mar 07, 2007 3:02 pm
by calguy1000
No, FEU doesn't have that functionality in it.  but you can block that with apache and .htaccess rules.
also, the newer version of FEU has captcha support if you have the captcha module.  Which will thwart any automated brute force attempts.

Re: Block IP-Adresses

Posted: Thu Jul 28, 2011 11:16 am
by musicscore
Is it possible to block an ipadres from accessing the website completely (maybe with ipblocker ?)

Re: Block IP-Adresses

Posted: Thu Jul 28, 2011 11:20 am
by M@rtijn
Add to your .htaccess:

Code: Select all

order allow,deny
deny from 11.22.33.44
deny from 22.33.44.55
allow from all
And put the right IP in there.
If you want to block an entire range, that's possible too, just drop the last part (11.22.33.44 becomes 11.22.33)

This will serve the culprit a 403 Forbidden status code.

Re: Block IP-Adresses

Posted: Thu Jul 28, 2011 12:44 pm
by musicscore
Many thanks for the very quick response ! ;D

Musicscore

Re: Block IP-Adresses

Posted: Tue Aug 02, 2011 4:32 am
by replytomk3
Rename your admin directory while you are at it, and make sure htaccess and config.php are with limited permissions.