Getting Pass .htaccess – How Are They Doing This?
-
Along with Wordfence I also have an .htaccess file with the following snippets
<files wp-login.php>
order deny,allow
deny from all
# whitelist Your First IP address
allow from x.xxx.xx.xxx
</files><files wp-admin>
order deny,allow
deny from all
# whitelist Your First IP address
allow from xx.xxx.xx.xxx
</files>This code should disallow everyone except my IP to access wp-admin.
However, I regularly receive notification from my Wordfence security plugin stating that…
“A user with IP address (it’s always different) has been locked out from the signing in or using the password recovery form for the following reason: Used an invalid username ‘admin’ to try to sign in.”
My question is how can anyone even get to my WordPress Admin login screen when my .htaccess should stop everyone other than me from accessing that screen.
This makes no sense to me.
- The topic ‘Getting Pass .htaccess – How Are They Doing This?’ is closed to new replies.