diff --git a/ChangeLog b/ChangeLog index 613c05a6..3e117667 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,9 +4,47 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ================================================================================ -Fail2Ban (version 0.8.4) 2009/09/07 +Fail2Ban (version 0.8.5) 2011/07/28 ================================================================================ +ver. 0.8.5 (2011/07/28) - stable +---------- +- Fix: use addfailregex instead of failregex while processing per-jail + "failregex" parameter (Fixed Debian bug #635830, LP: #635036). Thanks to + Marat Khayrullin for the patch and Daniel T Chen for forwarding to + Debian. +- Fix: use os.path.join to generate full path - fixes includes in configs + given local filename (5 weeks ago) [yarikoptic] +- Fix: allowed for trailing spaces in proftpd logs +- Fix: escaped () in pure-ftpd filter. Thanks to Teodor +- Fix: allowed space in the trailing of failregex for sasl.conf: + see http://bugs.debian.org/573314 +- Fix: use /var/run/fail2ban instead of /tmp for temp files in actions: + see http://bugs.debian.org/544232 +- Fix: Tai64N stores time in GMT, needed to convert to local time before + returning +- Fix: disabled named-refused-udp jail entirely with a big fat warning +- Fix: added time module. Bug reported in buanzo's blog: + see http://blogs.buanzo.com.ar/2009/04/fail2ban-patch-ban-ip-address-manually.html +- Fix: Patch to make log file descriptors cloexec to stop leaking file + descriptors on fork/exec. Thanks to Jonathan Underwood: + see https://bugzilla.redhat.com/show_bug.cgi?id=230191#c24 +- Enhancement: added author for dovecot filter and pruned unneeded space + in the regexp +- Enhancement: proftpd filter -- if login failed -- count regardless of the + reason for failure +- Enhancement: added to action.d/iptables*. Thanks to Matthijs Kooijman: + see http://bugs.debian.org/515599 +- Enhancement: added filter.d/dovecot.conf from Martin Waschbuesch +- Enhancement: made filter.d/apache-overflows.conf catch more: + see http://bugs.debian.org/574182 +- Enhancement: added dropbear filter from Francis Russell and Zak B. Elep: + see http://bugs.debian.org/546913 +- Enhancement: changed default ignoreip to ignore entire loopback zone (/8): + see http://bugs.debian.org/598200 +- Minor: spell-checked jail.conf. Thanks to Christoph Anton Mitterer +- Few minor cosmetic changes + ver. 0.8.4 (2009/09/07) - stable ---------- - Check the inode number for rotation in addition to checking the first line of diff --git a/README b/README index 9005158e..fb6f3d2b 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ================================================================================ -Fail2Ban (version 0.8.4) 2009/09/07 +Fail2Ban (version 0.8.5) 2011/07/26 ================================================================================ Fail2Ban scans log files like /var/log/pwdfail and bans IP that makes too many diff --git a/common/version.py b/common/version.py index b3aeaaf6..fc90ffc6 100644 --- a/common/version.py +++ b/common/version.py @@ -21,7 +21,7 @@ __author__ = "Cyril Jaquier" __version__ = "$Revision$" __date__ = "$Date$" -__copyright__ = "Copyright (c) 2004 Cyril Jaquier" +__copyright__ = "Copyright (c) 2004 Cyril Jaquier, 2011 Yaroslav Halchenko" __license__ = "GPL" -version = "0.8.4-SVN" +version = "0.8.5"