AnotherOne
Senior Member
- Nov 28, 2011
- 1,021
- 208
@OP
I have never heard of that "Point 6". I'll test that on a development site.
Thank you!
Go through these three easy steps and secure your WordPress installation even more:
1. If you have TimThumb.php file in your theme use TimThumb vulnerability scanner plugin.
2. Use Wordfence plugin and set the login limit to "2 attempts over 5 minutes" also enable "Immediately lock out invalid usernames" and "Don't let WordPress reveal valid users in login errors." in Wordfence options.
3. Secure your WordPress login by adding this in your .htaccess
I have never heard of that "Point 6". I'll test that on a development site.
Thank you!
Go through these three easy steps and secure your WordPress installation even more:
1. If you have TimThumb.php file in your theme use TimThumb vulnerability scanner plugin.
2. Use Wordfence plugin and set the login limit to "2 attempts over 5 minutes" also enable "Immediately lock out invalid usernames" and "Don't let WordPress reveal valid users in login errors." in Wordfence options.
3. Secure your WordPress login by adding this in your .htaccess
#PROTECT WP-CONFIG.PHP
<Files wp-login.php>
Order deny,allow
Deny from All
Allow from xxx.xxx.xxx.xxx
</Files>