mirror of https://github.com/fail2ban/fail2ban
Initial changes for the release -- simplified ChangeLog header etc
parent
23d9e22477
commit
ca849b93dc
29
ChangeLog
29
ChangeLog
|
@ -3,20 +3,20 @@
|
||||||
| _/ _` | | |/ /| '_ \/ _` | ' \
|
| _/ _` | | |/ /| '_ \/ _` | ' \
|
||||||
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
||||||
|
|
||||||
================================================================================
|
Fail2Ban: Changelog
|
||||||
Fail2Ban (version 0.9.1.dev) 2014/10/29
|
===================
|
||||||
================================================================================
|
|
||||||
|
|
||||||
ver. 0.9.2 (2014/XX/XXX) - wanna-be-released
|
ver. 0.9.2 (2015/04/26) - better-quick-now-than-later
|
||||||
-----------
|
----------
|
||||||
|
|
||||||
- Fixes:
|
- Fixes:
|
||||||
* infinite busy loop on _escapedTags match in substituteRecursiveTags gh-907.
|
* infinite busy loop on _escapedTags match in substituteRecursiveTags gh-907.
|
||||||
Thanks TonyThompson
|
Thanks TonyThompson
|
||||||
* port[s] typo in jail.conf/nginx-http-auth gh-913. Thanks Frederik Wagner (fnerdwq)
|
* port[s] typo in jail.conf/nginx-http-auth gh-913. Thanks Frederik Wagner
|
||||||
|
(fnerdwq)
|
||||||
* $ typo in jail.conf. Thanks Skibbi. Debian bug #767255
|
* $ typo in jail.conf. Thanks Skibbi. Debian bug #767255
|
||||||
* grep'ing for IP in *mail-whois-lines.conf should now match also
|
* grep'ing for IP in *mail-whois-lines.conf should now match also
|
||||||
at the begginning and EOL. Thanks Dean Lee
|
at the beginning and EOL. Thanks Dean Lee
|
||||||
* jail.conf
|
* jail.conf
|
||||||
- php-url-fopen: separate logpath entries by newline
|
- php-url-fopen: separate logpath entries by newline
|
||||||
* failregex declared direct in jail was joined to single line (specifying of
|
* failregex declared direct in jail was joined to single line (specifying of
|
||||||
|
@ -36,14 +36,17 @@ ver. 0.9.2 (2014/XX/XXX) - wanna-be-released
|
||||||
descriptor" msgs issue (gh-161)
|
descriptor" msgs issue (gh-161)
|
||||||
* filter.d/postfix-sasl.conf - tweak failregex and add ignoreregex to ignore
|
* filter.d/postfix-sasl.conf - tweak failregex and add ignoreregex to ignore
|
||||||
system authentication issues
|
system authentication issues
|
||||||
* fail2ban-regex reads filter file(s) completely, incl. '.local' file etc. (gh-954)
|
* fail2ban-regex reads filter file(s) completely, incl. '.local' file etc.
|
||||||
|
(gh-954)
|
||||||
* firewallcmd-* actions: split output into separate lines for grepping (gh-908)
|
* firewallcmd-* actions: split output into separate lines for grepping (gh-908)
|
||||||
* Guard unicode encode/decode issues while storing records in the database.
|
* Guard unicode encode/decode issues while storing records in the database.
|
||||||
Fixes "binding parameter error (unsupported type)" (gh-973), thanks to kot for reporting
|
Fixes "binding parameter error (unsupported type)" (gh-973), thanks to kot
|
||||||
* filter.d/sshd added regex for matching openSUSE ssh authentication failure
|
for reporting
|
||||||
* filter.d/asterisk.conf - Dropped "Sending fake auth rejection" failregex since it incorrectly targets the asterisk server itself
|
* filter.d/sshd added regex for matching openSUSE ssh authentication failure
|
||||||
* filter.d/asterisk.conf - Added matching "hacking attempt detected" logs
|
* filter.d/asterisk.conf:
|
||||||
|
- Dropped "Sending fake auth rejection" failregex since it incorrectly
|
||||||
|
targets the asterisk server itself
|
||||||
|
- match "hacking attempt detected" logs
|
||||||
|
|
||||||
- New Features:
|
- New Features:
|
||||||
- New filters:
|
- New filters:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/ _|__ _(_) |_ ) |__ __ _ _ _
|
/ _|__ _(_) |_ ) |__ __ _ _ _
|
||||||
| _/ _` | | |/ /| '_ \/ _` | ' \
|
| _/ _` | | |/ /| '_ \/ _` | ' \
|
||||||
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
||||||
v0.9.1.dev 2014/??/??
|
v0.9.2 2015/04/26
|
||||||
|
|
||||||
## Fail2Ban: ban hosts that cause multiple authentication errors
|
## Fail2Ban: ban hosts that cause multiple authentication errors
|
||||||
|
|
||||||
|
@ -37,8 +37,8 @@ Optional:
|
||||||
|
|
||||||
To install, just do:
|
To install, just do:
|
||||||
|
|
||||||
tar xvfj fail2ban-0.9.1.tar.bz2
|
tar xvfj fail2ban-0.9.2.tar.bz2
|
||||||
cd fail2ban-0.9.1
|
cd fail2ban-0.9.2
|
||||||
python setup.py install
|
python setup.py install
|
||||||
|
|
||||||
This will install Fail2Ban into the python library directory. The executable
|
This will install Fail2Ban into the python library directory. The executable
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
__author__ = "Cyril Jaquier, Yaroslav Halchenko, Steven Hiscocks, Daniel Black"
|
__author__ = "Cyril Jaquier, Yaroslav Halchenko, Steven Hiscocks, Daniel Black"
|
||||||
__copyright__ = "Copyright (c) 2004 Cyril Jaquier, 2011-2014 Yaroslav Halchenko, 2013-2013 Steven Hiscocks, Daniel Black"
|
__copyright__ = "Copyright (c) 2004 Cyril Jaquier, 2005-2015 Yaroslav Halchenko, 2013-2014 Steven Hiscocks, Daniel Black"
|
||||||
__license__ = "GPL-v2+"
|
__license__ = "GPL-v2+"
|
||||||
|
|
||||||
version = "0.9.1.dev"
|
version = "0.9.2"
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
|
||||||
.TH FAIL2BAN-CLIENT "1" "October 2014" "fail2ban-client v0.9.1" "User Commands"
|
.TH FAIL2BAN-CLIENT "1" "April 2015" "fail2ban-client v0.9.2" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fail2ban-client \- configure and control the server
|
fail2ban-client \- configure and control the server
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B fail2ban-client
|
.B fail2ban-client
|
||||||
[\fI\,OPTIONS\/\fR] \fI\,<COMMAND>\/\fR
|
[\fI\,OPTIONS\/\fR] \fI\,<COMMAND>\/\fR
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
Fail2Ban v0.9.1 reads log file that contains password failure report
|
Fail2Ban v0.9.2 reads log file that contains password failure report
|
||||||
and bans the corresponding IP addresses using firewall rules.
|
and bans the corresponding IP addresses using firewall rules.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
|
@ -93,6 +93,14 @@ file
|
||||||
\fBget logtarget\fR
|
\fBget logtarget\fR
|
||||||
gets logging target
|
gets logging target
|
||||||
.TP
|
.TP
|
||||||
|
\fBset syslogsocket auto|<SOCKET>\fR
|
||||||
|
sets the syslog socket path to
|
||||||
|
auto or <SOCKET>. Only used if
|
||||||
|
logtarget is SYSLOG
|
||||||
|
.TP
|
||||||
|
\fBget syslogsocket\fR
|
||||||
|
gets syslog socket path
|
||||||
|
.TP
|
||||||
\fBflushlogs\fR
|
\fBflushlogs\fR
|
||||||
flushes the logtarget if a file
|
flushes the logtarget if a file
|
||||||
and reopens it. For log rotation.
|
and reopens it. For log rotation.
|
||||||
|
@ -128,8 +136,10 @@ starts the jail <JAIL>
|
||||||
stops the jail <JAIL>. The jail is
|
stops the jail <JAIL>. The jail is
|
||||||
removed
|
removed
|
||||||
.TP
|
.TP
|
||||||
\fBstatus <JAIL>\fR
|
\fBstatus <JAIL> [FLAVOR]\fR
|
||||||
gets the current status of <JAIL>
|
gets the current status of <JAIL>,
|
||||||
|
with optional flavor or extended
|
||||||
|
info
|
||||||
.IP
|
.IP
|
||||||
JAIL CONFIGURATION
|
JAIL CONFIGURATION
|
||||||
.TP
|
.TP
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
|
||||||
.TH FAIL2BAN-REGEX "1" "October 2014" "fail2ban-regex 0.9.1" "User Commands"
|
.TH FAIL2BAN-REGEX "1" "April 2015" "fail2ban-regex 0.9.2" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fail2ban-regex \- test Fail2ban "failregex" option
|
fail2ban-regex \- test Fail2ban "failregex" option
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
|
||||||
.TH FAIL2BAN-SERVER "1" "October 2014" "fail2ban-server v0.9.1" "User Commands"
|
.TH FAIL2BAN-SERVER "1" "April 2015" "fail2ban-server v0.9.2" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fail2ban-server \- start the server
|
fail2ban-server \- start the server
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B fail2ban-server
|
.B fail2ban-server
|
||||||
[\fI\,OPTIONS\/\fR]
|
[\fI\,OPTIONS\/\fR]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
Fail2Ban v0.9.1 reads log file that contains password failure report
|
Fail2Ban v0.9.2 reads log file that contains password failure report
|
||||||
and bans the corresponding IP addresses using firewall rules.
|
and bans the corresponding IP addresses using firewall rules.
|
||||||
.PP
|
.PP
|
||||||
Only use this command for debugging purpose. Start the server with
|
Only use this command for debugging purpose. Start the server with
|
||||||
|
|
Loading…
Reference in New Issue