From ee3f91176c763f41c6067cd84aa1db73d2452d7e Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 9 Feb 2007 03:22:15 +0000 Subject: [PATCH] * New upstream release (included most of the debian-provided patches -- new filters and actions) * Refreshed and made verbatim homepage in description --- debian/changelog | 9 +- debian/control | 2 +- debian/patches/00_iptables-mports.dpatch | 80 ------------- debian/patches/00_iptables_NEW.dpatch | 82 ------------- debian/patches/00_mail-whois-lines.dpatch | 118 ++++++++----------- debian/patches/00list | 5 - debian/patches/01_apache2_other.dpatch | 19 --- debian/patches/10_vsftpd_regex.dpatch | 18 --- debian/patches/10_wuftpd_section.dpatch | 25 ---- debian/patches/X00_rigid_usrbinpython.dpatch | 45 ------- 10 files changed, 52 insertions(+), 351 deletions(-) delete mode 100755 debian/patches/00_iptables-mports.dpatch delete mode 100755 debian/patches/00_iptables_NEW.dpatch delete mode 100644 debian/patches/01_apache2_other.dpatch delete mode 100755 debian/patches/10_vsftpd_regex.dpatch delete mode 100755 debian/patches/10_wuftpd_section.dpatch delete mode 100755 debian/patches/X00_rigid_usrbinpython.dpatch diff --git a/debian/changelog b/debian/changelog index a51a3e9f..b914294d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,10 @@ -fail2ban (0.7.6-4) UNRELEASED; urgency=low +fail2ban (0.7.7-1) unstable; urgency=low - * NOT RELEASED YET - * Made homepage in description verbatim + * New upstream release (included most of the debian-provided patches -- new + filters and actions) + * Refreshed and made verbatim homepage in description - -- Yaroslav Halchenko Wed, 7 Feb 2007 10:24:56 -0500 + -- Yaroslav Halchenko Thu, 8 Feb 2007 22:20:49 -0500 fail2ban (0.7.6-3) unstable; urgency=low diff --git a/debian/control b/debian/control index cd1a5b29..85a03754 100644 --- a/debian/control +++ b/debian/control @@ -25,5 +25,5 @@ Description: bans IPs that cause multiple authentication errors fail2ban can be adopted to be used with a variety of files and firewalls. . - Homepage: http://www.sourceforge.net/projects/fail2ban + Homepage: http://www.fail2ban.org diff --git a/debian/patches/00_iptables-mports.dpatch b/debian/patches/00_iptables-mports.dpatch deleted file mode 100755 index 35f22a6c..00000000 --- a/debian/patches/00_iptables-mports.dpatch +++ /dev/null @@ -1,80 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 00_iptables_mports.dpatch by Yaroslav Halchenko -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: No description. - -@DPATCH@ -diff -urNad fail2ban-0.7.6~/config/action.d/iptables-multiport.conf fail2ban-0.7.6/config/action.d/iptables-multiport.conf ---- fail2ban-0.7.6~/config/action.d/iptables-multiport.conf 1969-12-31 19:00:00.000000000 -0500 -+++ fail2ban-0.7.6/config/action.d/iptables-multiport.conf 2007-01-19 10:40:54.000000000 -0500 -@@ -0,0 +1,69 @@ -+# Fail2Ban configuration file -+# -+# Author: Cyril Jaquier -+# Modified by Yaroslav Halchenko for multiport banning -+# $Revision: 520 $ -+# -+ -+[Definition] -+ -+# Option: actionstart -+# Notes.: command executed once at the start of Fail2Ban. -+# Values: CMD -+# -+actionstart = iptables -N fail2ban- -+ iptables -A fail2ban- -j RETURN -+ iptables -I INPUT -p -m multiport --dports -j fail2ban- -+ -+# Option: actionend -+# Notes.: command executed once at the end of Fail2Ban -+# Values: CMD -+# -+actionstop = iptables -D INPUT -p -m multiport --dports -j fail2ban- -+ iptables -F fail2ban- -+ iptables -X fail2ban- -+ -+# Option: actioncheck -+# Notes.: command executed once before each actionban command -+# Values: CMD -+# -+actioncheck = iptables -n -L INPUT | grep -q fail2ban- -+ -+# Option: actionban -+# Notes.: command executed when banning an IP. Take care that the -+# command is executed with Fail2Ban user rights. -+# Tags: IP address -+# number of failures -+#