I am trying to configure fail2ban for my server and have come across: apache-overflows in the .config

What does it do/protect against?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The /etc/fail2ban/filters.d/apache-overflows.conf file may help explain it more:

Notes.: Regexp to catch Apache overflow attempts.

The regex that is being a applied to the log can provide more detail:

failregex = [[]client []] (Invalid method in request|request failed: URI too long|erroneous characters after protocol string)

Certain types of attacks against Apache are done to try and overflow the memory buffer and cause it to crash, effectively creating a denial of service. This filter attempts to detect the attack before it completely overwhelms the web server and then will apply whatever action you specify.

link|improve this answer
Thank you, I understand what it does now. – John Magnolia Nov 10 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.