mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
* commit 'remotes/upstream-repo/FAIL2BAN-0_8': - Added actions to report abuse to ISP, DShield and myNetWatchman. Thanks to Russell Odom. - Added svn:keywords property. - Added apache-nohome.conf. Thanks to Yaroslav Halchenko. - Added new time format. No idea from where it comes... - Added new regex. Thanks to Tobias Offermann. - Try to match the regex even if the line does not contain a valid date/time. Described in Debian #491253. Thanks to Yaroslav Halchenko. - Removed "timeregex" and "timepattern" stuff that is not needed anymore. - Added date template for Day-Month-Year Hour:Minute:Second. - Added date pattern for Hour:Minute:Second. Thanks to Andreas Itzchak Rehberg. - Use current day and month instead of Jan 1st if both are not available in the log. Thanks to Andreas Itzchak Rehberg. - Improved pattern. Thanks to Yaroslav Halchenko. - Merged patches from Debian package. Thanks to Yaroslav Halchenko. - Changed to SVN version. Conflicts: MANIFEST
27 lines
994 B
Python
27 lines
994 B
Python
# This file is part of Fail2Ban.
|
|
#
|
|
# Fail2Ban is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Fail2Ban is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Fail2Ban; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
# Author: Cyril Jaquier
|
|
#
|
|
# $Revision: 703 $
|
|
|
|
__author__ = "Cyril Jaquier"
|
|
__version__ = "$Revision: 703 $"
|
|
__date__ = "$Date: 2008-07-17 23:28:51 +0200 (Thu, 17 Jul 2008) $"
|
|
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
|
__license__ = "GPL"
|
|
|
|
version = "0.8.3-SVN"
|