- Original Poster
- #1
Normally I charge people to make their WordPress sites safer, but I have just read an article about a new bruteforce attack on wordpress sites.
In the past they were using the wp-admin to guess one password after another. However this time they are using the xml-rpc functionality which is enabled by default. xml-rpc is a web service which means you can use a non wordpress application to post content etc to wordpress.
Now one of the functions available is system.multicall. The attackers are using this function to guess not one but hundreds of password at the same time. I am not sure if security plugins will be able to withstand the attack or not but I thought better safe than sorry.
I ( and most people ) don't use the xml-rpc feature. So I decided to block it at server level. I added the following code to my .htaccess file
If you use Jetpack or the wordpress app on your phones you might not be able to do this. Just test it and see how it works.
If you need any help or have any questions please let me know.
In the past they were using the wp-admin to guess one password after another. However this time they are using the xml-rpc functionality which is enabled by default. xml-rpc is a web service which means you can use a non wordpress application to post content etc to wordpress.
Now one of the functions available is system.multicall. The attackers are using this function to guess not one but hundreds of password at the same time. I am not sure if security plugins will be able to withstand the attack or not but I thought better safe than sorry.
I ( and most people ) don't use the xml-rpc feature. So I decided to block it at server level. I added the following code to my .htaccess file
Code:
<Files "xmlrpc.php">
Order allow,deny
Deny from all
</Files>
If you use Jetpack or the wordpress app on your phones you might not be able to do this. Just test it and see how it works.
If you need any help or have any questions please let me know.
