Re: Protect Webserver against DOS attacks using UFW

This is my answer to a friend post Protect Webserver against DOS attacks using UFW. I intended to post it as a comment, however, it looks like I was a bit carried up and my answer was “a tad too long” for his comment system. [edit]You will find his own answer to my post there too.[/edit]

Quite interesting article. Although the goal is important and utterly relevant, considering the number of automatic bots now creeping around in our virtual universe, I’m a bit afraid by the small thresholds. Imho, there is a very important trick to get used to when designing protection system: You have to make sure your own protection isn’t going to get in your way and either protect you from legitimate user scenario, or generate such a load that will make it actually easier for you attacker to DOS your service/server.

I have several concern regarding your strategy that may fall within this scope:

Moreover, there are a few issues that are not considered (Connection starvation, for example) by your setup.

I don’t think having conservative limits regarding your firewall is going to do you any good if you start having a reasonably heavy legitimate load on your server. Moreover, having unexpectedly complex firewall rules may still trigger high CPU load, which would be the new target of your attacker once identified as such: providing a distributed traffic always close to be rejected but not quite matching the rule will generate CPU load both from the website and the firewall which will probably make it even easier to crash your website.


I think a better way to go, would be first to get rid of any application-wide vulnerabilities. I’m not speaking of SQL injections or XSS, which a functional vulnerabilities but will rarely end up as a DOS strategy, but connection starvation or the ability to trigger extreme load with one single query (poor man search engines requests are usually a good example of such queries). If someone seems to be abusing these, a nice temporary “sorry, 503” or “302” to another server ban will most of the time be enough (and a captcha to unlock it could be neat).

Then, design simple but effective liberal rules for your firewall. For example extreme connections rates (such as several dozens connections from the same IP within 2 or 3 seconds). These rules should be enabled if the CPU load (or whatever your bottleneck is) rises above some high threshold. A simple monitoring solution, such as Monit could do that job and send you an e-mail or another alert at the same time so you know what’s happening and can take direct, mitigation efficient, actions. For example, a manual analysis of the logs could give you a list of IPs to ban directly in the firewall for the next X hours or so. Which will be highly effective, without sucking on your valuable CPU resources.

I hope this may help. I think this system is still simple yet efficient enough. You already ought to have some kind of monitoring solution, adding a few tests and triggers should be a big deal and you will know first hand what’s going on with your server.