mirror of https://github.com/fail2ban/fail2ban
- Added "courierlogin" filter. Thanks to Christoph Haas
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@427 a942ae1a-1317-0410-a47c-b1dcaea8d6050.x
parent
eaea181f68
commit
f74657f4b6
|
@ -16,7 +16,7 @@ ver. 0.7.4 (2006/??/??) - beta
|
||||||
option in "fail2ban.conf"
|
option in "fail2ban.conf"
|
||||||
- Added "backend" option in "jail.conf"
|
- Added "backend" option in "jail.conf"
|
||||||
- Added more filters/actions and jail samples. Thanks to Nick
|
- Added more filters/actions and jail samples. Thanks to Nick
|
||||||
Munger
|
Munger, Christoph Haas
|
||||||
- Improved testing framework
|
- Improved testing framework
|
||||||
|
|
||||||
ver. 0.7.3 (2006/09/28) - beta
|
ver. 0.7.3 (2006/09/28) - beta
|
||||||
|
|
1
MANIFEST
1
MANIFEST
|
@ -60,6 +60,7 @@ config/filter.d/apache-auth.conf
|
||||||
config/filter.d/apache-noscript.conf
|
config/filter.d/apache-noscript.conf
|
||||||
config/filter.d/qmail.conf
|
config/filter.d/qmail.conf
|
||||||
config/filter.d/couriersmtp.conf
|
config/filter.d/couriersmtp.conf
|
||||||
|
config/filter.d/courierlogin.conf
|
||||||
config/filter.d/sshd.conf
|
config/filter.d/sshd.conf
|
||||||
config/filter.d/proftpd.conf
|
config/filter.d/proftpd.conf
|
||||||
config/filter.d/sasl.conf
|
config/filter.d/sasl.conf
|
||||||
|
|
3
README
3
README
|
@ -96,7 +96,8 @@ Thanks:
|
||||||
Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker,
|
Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker,
|
||||||
Tom Pike, Iain Lea, Andrey G. Grozin, Yaroslav Halchenko,
|
Tom Pike, Iain Lea, Andrey G. Grozin, Yaroslav Halchenko,
|
||||||
Jonathan Kamens, Stephen Gildea, Markus Hoffmann, Mark
|
Jonathan Kamens, Stephen Gildea, Markus Hoffmann, Mark
|
||||||
Edgington, Patrick Börjesson, kojiro, zugeschmiert, Tyler
|
Edgington, Patrick Börjesson, kojiro, zugeschmiert, Tyler,
|
||||||
|
Nick Munger, Christoph Haas
|
||||||
|
|
||||||
License:
|
License:
|
||||||
--------
|
--------
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Fail2Ban configuration file
|
||||||
|
#
|
||||||
|
# Author: Christoph Haas
|
||||||
|
# Modified by: Cyril Jaquier
|
||||||
|
#
|
||||||
|
# $Revision: 267 $
|
||||||
|
#
|
||||||
|
|
||||||
|
[Definition]
|
||||||
|
|
||||||
|
# Option: failregex
|
||||||
|
# Notes.: regex to match the password failures messages in the logfile.
|
||||||
|
# Values: TEXT
|
||||||
|
#
|
||||||
|
failregex = LOGIN FAILED, ip=\[::ffff:(?P<host>\S*)\]$
|
Loading…
Reference in New Issue