Hello,
Apparently there is a ongoing bruteforce attack globally.
Please note that these issues are not isolated to just Resellers Panel Hosting, and this is being viewed currently as a global attack across a wide range of web hosts on the Internet.
Also we HIGHLY recommend updating your WordPress admin password to something very secure.
Minimum password recommendations:
- At least 8 characters total
- Mixture of upper and lower-case letters
- Numbers and special characters, such as punctuation or other non-alphanumeric characters
Example weak password:
secret1
Improved strong password:
Z#hupsZ2M4!Z
We would advise you to setup a .htaccess file and restrict the login page to your own IP address.
Here is a quick guide how to do that:
Once you create the .htaccess file in your file manager (or through FTP) place the following code in the file (make sure you change the ***es to your actual IP address):
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/wp-login\.php(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^/wp-admin$
RewriteCond %{REMOTE_ADDR} !^***.***.***.***$
RewriteRule ^(.*)$ - [R=403,L]
</IfModule>
Apparently there is a ongoing bruteforce attack globally.
Please note that these issues are not isolated to just Resellers Panel Hosting, and this is being viewed currently as a global attack across a wide range of web hosts on the Internet.
Also we HIGHLY recommend updating your WordPress admin password to something very secure.
Minimum password recommendations:
- At least 8 characters total
- Mixture of upper and lower-case letters
- Numbers and special characters, such as punctuation or other non-alphanumeric characters
Example weak password:
secret1
Improved strong password:
Z#hupsZ2M4!Z
We would advise you to setup a .htaccess file and restrict the login page to your own IP address.
Here is a quick guide how to do that:
Once you create the .htaccess file in your file manager (or through FTP) place the following code in the file (make sure you change the ***es to your actual IP address):
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/wp-login\.php(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^/wp-admin$
RewriteCond %{REMOTE_ADDR} !^***.***.***.***$
RewriteRule ^(.*)$ - [R=403,L]
</IfModule>
Comment