PDA

View Full Version : [RELEASE] mod_evasive 2.4


elboriyorker
07-13-2024, 02:51 AM
mod_evasive is an evasive maneuvers module for Apache to provide evasive action in the event of an HTTP DoS or DDoS attack or brute force attack. It is also designed to be a detection tool, and can be easily configured to talk to ipchains, firewalls, routers, and etcetera.

Detection is performed by creating an internal dynamic hash table of IP Addresses and URIs, and denying any single IP address from any of the following:

Requesting the same page more than a few times per second
Making more than 50 concurrent requests on the same child per second
Making any requests while temporarily blacklisted (on a blocking list)


This method has worked well in both single-server script attacks as well as distributed attacks, but just like other evasive tools, is only as useful to the point of bandwidth and processor consumption (e.g. the amount of bandwidth and processor required to receive/process/respond to invalid requests), which is why it's a good idea to integrate this with your firewalls and routers.

This module instantiates for each listener individually, and therefore has a built-in cleanup mechanism and scaling capabilities. Because of this, legitimate requests are rarely ever compromised, only legitimate attacks. Even a user repeatedly clicking on 'reload' should not be affected unless they do it maliciously.

Five different module sources have been provided:

Apache v1.3 API: mod_evasive13.c (outdated)
Apache v2.0 API: mod_evasive20.c
Apache v2.4 API: mod_evasive24.c
Apache v2.4 API (windows): mod_evasive24win.c
NSAPI (iPlanet): mod_evasiveNSAPI.c

https://github.com/jvdmr/mod_evasive