We're under a distributed denial of service attack from traffic that looks like this:
49.146.161.175 - - [11/Jul/2014:00:43:42 -0400] "POST / HTTP/1.1" 500 557 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"
117.221.185.108 - - [11/Jul/2014:00:43:42 -0400] "POST / HTTP/1.1" 500 557 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"
58.186.16.180 - - [11/Jul/2014:00:43:42 -0400] "POST / HTTP/1.1" 500 557 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"
I've been able to reduce the impact by adding this to root folder .htaccess file
<Limit POST>
Deny from all
</Limit>
The problem of course is that prevents use of wp-login.php or anything in /wp-admin/
I'm wondering if there is a way to just deny POST requests to / or modify the above in such a way as to allow use of wp-login and anything in /wp-admin/
Thanks for any advice you can give.