Fail2ban

Fail2Ban
Original author(s) Cyril Jaquier
Developer(s) Cyril Jaquier, Yaroslav Halchenko, Daniel Black, Steven Hiscocks, Arturo 'Buanzo' Busleiman et al.
Initial release 2004 (2004)
Stable release
0.9.5 / July 15, 2016 (2016-07-15)
Operating system Unix-like
Type Intrusion prevention
License GPLv2+
Website www.fail2ban.org

Fail2Ban is an intrusion prevention software framework that protects computer servers from brute-force attacks.[1] Written in the Python programming language, it is able to run on POSIX systems that have an interface to a packet-control system or firewall installed locally, for example, iptables or TCP Wrapper.

Functionality

Fail2Ban operates by monitoring log files (e.g. /var/log/auth.log, /var/log/apache/access.log, etc.) for selected entries and running scripts based on them. Most commonly this is used to block selected IP addresses that may belong to hosts that are trying to breach the system's security. It can ban any host IP address that makes too many login attempts or performs any other unwanted action within a time frame defined by the administrator. Fail2Ban is typically set up to unban a blocked host within a certain period, so as to not "lock out" any genuine connections that may have been temporarily misconfigured. However, an unban time of several minutes is usually enough to stop a network connection being flooded by malicious connections, as well as reducing the likelihood of a successful dictionary attack.

Fail2Ban can perform multiple actions whenever an abusive IP address is detected:[2] update Netfilter/iptables or PF firewall rules, TCP Wrapper's hosts.deny table, to reject an abuser's IP address; email notifications; or any user-defined action that can be carried out by a Python script.

The standard configuration ships with filters for Apache, Lighttpd, sshd, vsftpd, qmail, Postfix and Courier Mail Server.[3] Filters are defined by Python regexes, which may be conveniently customized by an administrator familiar with regular expressions. A combination of a filter and an action is known as a "jail" and is what causes a malicious host to be blocked from accessing specified network services. As well as the examples that are distributed with the software, a "jail" may be created for any network-facing process that creates a log file of access.

Fail2Ban is similar to DenyHosts [...] but unlike DenyHosts which focuses on SSH, Fail2Ban can be configured to monitor any service that writes login attempts to a log file, and instead of using /etc/hosts.deny only to block IP addresses/hosts, Fail2Ban can use Netfilter/iptables and TCP Wrappers /etc/hosts.deny.
Falko Timme[4]

Shortcomings

See also

References

  1. serverwatch.com (2006-08-15). "Tip of the Trade: Fail2Ban".
  2. ducea.com (2006-07-03). "Using Fail2Ban to Block Brute Force Attacks".
  3. fail2ban.org. "Features - Fail2Ban".
  4. Timme, Falko (2007-10-08). "Preventing Brute Force Attacks With Fail2Ban On OpenSUSE 10.3". Retrieved 2007-11-14.
  5. "IPv6 support master plan". Github. Retrieved 21 January 2016.
  6. Aleksandersen, Daniel (31 May 2016). "IPv6 support finally coming to Fail2Ban with next major release". Slight Future. Retrieved 31 May 2016.

External links

This article is issued from Wikipedia - version of the 10/18/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.