Codebase list fail2ban / 51a3be2
Getting ready for 0.8.8 release (changelog, version boost) Yaroslav Halchenko 11 years ago
3 changed file(s) with 38 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
33 |_| \__,_|_|_/___|_.__/\__,_|_||_|
44
55 ================================================================================
6 Fail2Ban (version 0.8.7.1) 2012/07/31
6 Fail2Ban (version 0.8.8) 2012/12/06
77 ================================================================================
8
9 ver. 0.8.8 (2012/12/06) - stable
10 ----------
11 - Fixes:
12 Alan Jenkins
13 * [8c38907] Removed 'POSSIBLE BREAK-IN ATTEMPT' from sshd filter to avoid
14 banning due to misconfigured DNS. Close gh-64
15 Yaroslav Halchenko
16 * [83109bc] IMPORTANT: escape the content of <matches> (if used in
17 custom action files) since its value could contain arbitrary
18 symbols. Thanks for discovery go to the NBS System security
19 team
20 * [0935566,5becaf8] Various python 2.4 and 2.5 compatibility fixes. Close gh-83
21 * [b159eab] do not enable pyinotify backend if pyinotify < 0.8.3
22 * [37a2e59] store IP as a base, non-unicode str to avoid spurious messages
23 in the console. Close gh-91
24 - New features:
25 David Engeset
26 * [2d672d1,6288ec2] 'unbanip' command for the client + avoidance of touching
27 the log file to take 'banip' or 'unbanip' in effect. Close gh-81, gh-86
28 Yaroslav Halchenko
29 - Enhancements:
30 * [2d66f31] replaced uninformative "Invalid command" message with warning log
31 exception why command actually failed
32 * [958a1b0] improved failregex to "support" auth.backend = "htdigest"
33 * [9e7a3b7] until we make it proper module -- adjusted sys.path only if
34 system-wide run
35 * [f52ba99] downgraded "already banned" from WARN to INFO level. Closes gh-79
36 * [f105379] added hints into the log on some failure return codes (e.g. 0x7f00
37 for this gh-87)
38 * Various others: travis-ci integration, script to run tests
39 against all available Python versions, etc
840
941 ver. 0.8.7.1 (2012/07/31) - stable
1042 ----------
33 |_| \__,_|_|_/___|_.__/\__,_|_||_|
44
55 ================================================================================
6 Fail2Ban (version 0.8.7) 2012/07/31
6 Fail2Ban (version 0.8.8) 2012/07/31
77 ================================================================================
88
99 Fail2Ban scans log files like /var/log/pwdfail and bans IP that makes too many
3030
3131 To install, just do:
3232
33 > tar xvfj fail2ban-0.8.7.tar.bz2
34 > cd fail2ban-0.8.7
33 > tar xvfj fail2ban-0.8.8.tar.bz2
34 > cd fail2ban-0.8.8
3535 > python setup.py install
3636
3737 This will install Fail2Ban into /usr/share/fail2ban. The executable scripts are
2020 #
2121 # $Revision$
2222
23 __author__ = "Cyril Jaquier"
23 __author__ = "Cyril Jaquier, Yaroslav Halchenko"
2424 __copyright__ = "Copyright (c) 2004 Cyril Jaquier, 2011-2012 Yaroslav Halchenko"
2525 __license__ = "GPL"
2626
27 version = "0.8.7.1"
27 version = "0.8.8"