Mitigate wp.getUserBlogs xmlrpc.php attacks and enumeration scans It should be possible to mitigate against this wp.getUserBlogs enumeration scan with a filter, which we put in our THEME functions.php file. Basically it’s the same as the filter below to disable the pingback.ping function. add_filter(‘xmlrpc_methods’,function($methods){ unset($methods[‘wp.getUsersBlogs’]); return $methods; }); Or this …
Leggi tutto “Huge increase in WordPress xmlrpc.php POST requests”