xmlrpc.php hack attack
If your server is being hit by an xmlrpc.php attack for users using WordPress add the following snippet of code to each accounts WordPress directory “.htaccess” file in order to stop the attack, which is a common WordPress vulnerability:
<Files “xmlrpc.php”>
Order Allow,Deny
deny from all
</Files>