I have attracted attention, apparently. My website is under a Distributed Denial of Service (DDOS) attack by a botnet for the last week. I am flattered, of course, but I could live without a DDOS, frankly.
The requests go to xmlrpc.php every second or two from a different IP address from around the world:
POST /xmlrpc.php HTTP/1.1
At first I could not understand what was going on but it turns out that that request can be really expensive and the database basically gets overloaded with requests bringing the database server to a screeching halt after a while.
After trying to blackhole the IP addresses and finding out that the botnet is fairly large, I simply denied all access to xmlrpc.php. That is a simple and effective solution but it breaks some functionality that is expected of a WordPress site. I don’t like that. So I was looking for a way to block the attackers without crippling the site.
I noticed that all of the requests have a particular HTTP request user agent:
"Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)"
So I redirect the requests with that user agent in .htaccess all back to themselves (you could also redirect it to 127.0.0.1 with the same effect):
# Block attackers by agents <IfModule mod_rewrite.c> RewriteCond %{HTTP_USER_AGENT} ^.*WinHttp.WinHttpRequest.5.*$ RewriteRule .* http://%{REMOTE_ADDR}/ [R,L] </IfModule>
It seems to have mitigated the attacks by that particular botnet software while allowing access from all other browsers and sites. I hope it stays that way. I don’t think my site is really worthy of this kind of attention anyway.
More on WordPress xmlrpc denial of service attacks | Holy Hash!2014-09-08 06:01 /
[…] attacks on WordPress using xmlrpc.php service are rather common. I already mentioned that you could filter out unwanted user-agents using the redirect capability of Apache. That would, […]