Blocking IP range using Blacklist Manager nor working
-
I’ve been getting regular security lockout messages from a consistent range of IP addresses with varying usernames.
A lockdown event has occurred due to too many failed login attempts or invalid username: Username: ekzamenov IP Address: 185.119.81.104 IP Range: 185.119.81.* I've added that IP Range to my htaccess file using the Blacklist Manager but the lockout messages keep trickling in almost every day. What I see in the .htaccess file is included below (note, a while back I added another range which is also shown). My webhost is serving up my site using Apache. Not sure how to block all these login attempts from 185.118.81.* Any help is appreciated. Many thanks, Sue
# Apache < 2.3
<IfModule !mod_authz_core.c>
Order Allow,Deny
Allow from all
Deny from env=bad_bot
#AIOWPS_IP_BLACKLIST_2_3_START
Deny from 185.119.81.0/24
Deny from 202.164.60.0/24
#AIOWPS_IP_BLACKLIST_2_3_END</IfModule>
# Apache >= 2.3
<IfModule mod_authz_core.c>
<RequireAll>
Require all Granted
Require not env bad_bot
#AIOWPS_IP_BLACKLIST_2_4_START
Require not ip 185.119.81.0/24
Require not ip 202.164.60.0/24
#AIOWPS_IP_BLACKLIST_2_4_END`
- The topic ‘Blocking IP range using Blacklist Manager nor working’ is closed to new replies.