2007-01-21 22:19:57 +00:00
|
|
|
#!/usr/bin/python
|
2005-07-01 09:30:52 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
#
|
2008-07-21 14:13:13 +00:00
|
|
|
# $Revision: 678 $
|
2005-07-01 09:30:52 +00:00
|
|
|
|
|
|
|
__author__ = "Cyril Jaquier"
|
2008-07-21 14:13:13 +00:00
|
|
|
__version__ = "$Revision: 678 $"
|
|
|
|
__date__ = "$Date: 2008-03-10 23:34:46 +0100 (Mon, 10 Mar 2008) $"
|
2005-07-01 09:30:52 +00:00
|
|
|
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
|
|
|
__license__ = "GPL"
|
|
|
|
|
|
|
|
from distutils.core import setup
|
2006-11-16 21:07:42 +00:00
|
|
|
from common.version import version
|
2007-01-04 12:58:21 +00:00
|
|
|
from os.path import isfile, join, isdir
|
2006-11-15 23:09:49 +00:00
|
|
|
from sys import argv
|
2006-10-17 21:13:11 +00:00
|
|
|
from glob import glob
|
2005-07-01 09:30:52 +00:00
|
|
|
|
2005-07-28 20:30:34 +00:00
|
|
|
longdesc = '''
|
|
|
|
Fail2Ban scans log files like /var/log/pwdfail or
|
|
|
|
/var/log/apache/error_log and bans IP that makes
|
|
|
|
too many password failures. It updates firewall rules
|
|
|
|
to reject the IP address or executes user defined
|
2005-08-07 13:10:39 +00:00
|
|
|
commands.'''
|
2005-07-28 20:30:34 +00:00
|
|
|
|
2005-07-01 09:30:52 +00:00
|
|
|
setup(
|
2006-11-15 23:09:49 +00:00
|
|
|
name = "fail2ban",
|
|
|
|
version = version,
|
|
|
|
description = "Ban IPs that make too many password failure",
|
|
|
|
long_description = longdesc,
|
|
|
|
author = "Cyril Jaquier",
|
2008-03-06 01:19:06 +00:00
|
|
|
author_email = "cyril.jaquier@fail2ban.org",
|
|
|
|
url = "http://www.fail2ban.org",
|
2006-11-15 23:09:49 +00:00
|
|
|
license = "GPL",
|
|
|
|
platforms = "Posix",
|
2006-08-22 22:05:08 +00:00
|
|
|
scripts = [
|
2006-11-15 23:09:49 +00:00
|
|
|
'fail2ban-client',
|
|
|
|
'fail2ban-server',
|
2006-09-06 18:25:11 +00:00
|
|
|
'fail2ban-regex'
|
2006-11-15 23:09:49 +00:00
|
|
|
],
|
2006-08-22 22:05:08 +00:00
|
|
|
packages = [
|
2006-11-16 21:07:42 +00:00
|
|
|
'common',
|
2006-11-15 23:09:49 +00:00
|
|
|
'client',
|
2006-08-22 22:11:12 +00:00
|
|
|
'server'
|
2006-11-15 23:09:49 +00:00
|
|
|
],
|
2006-08-22 22:05:08 +00:00
|
|
|
data_files = [
|
2006-11-15 23:09:49 +00:00
|
|
|
('/etc/fail2ban',
|
2006-10-17 21:13:11 +00:00
|
|
|
glob("config/*.conf")
|
2006-11-16 21:07:42 +00:00
|
|
|
),
|
2006-11-15 23:09:49 +00:00
|
|
|
('/etc/fail2ban/filter.d',
|
2006-10-17 21:13:11 +00:00
|
|
|
glob("config/filter.d/*.conf")
|
2006-11-16 21:07:42 +00:00
|
|
|
),
|
2006-11-15 23:09:49 +00:00
|
|
|
('/etc/fail2ban/action.d',
|
2006-10-17 21:13:11 +00:00
|
|
|
glob("config/action.d/*.conf")
|
2008-07-21 14:13:13 +00:00
|
|
|
),
|
|
|
|
('/var/run/fail2ban',
|
|
|
|
''
|
2006-08-22 22:05:08 +00:00
|
|
|
)
|
|
|
|
]
|
2005-07-01 09:30:52 +00:00
|
|
|
)
|
2005-07-15 14:14:12 +00:00
|
|
|
|
|
|
|
# Do some checks after installation
|
|
|
|
# Search for obsolete files.
|
|
|
|
obsoleteFiles = []
|
2006-08-22 22:05:08 +00:00
|
|
|
elements = {
|
|
|
|
"/etc/":
|
|
|
|
[
|
|
|
|
"fail2ban.conf"
|
2006-11-15 23:09:49 +00:00
|
|
|
],
|
2006-08-22 22:05:08 +00:00
|
|
|
"/usr/bin/":
|
|
|
|
[
|
|
|
|
"fail2ban.py"
|
2006-11-15 23:09:49 +00:00
|
|
|
],
|
2006-08-22 22:05:08 +00:00
|
|
|
"/usr/lib/fail2ban/firewall/":
|
|
|
|
[
|
2006-11-15 23:09:49 +00:00
|
|
|
"iptables.py",
|
|
|
|
"ipfwadm.py",
|
2006-08-22 22:05:08 +00:00
|
|
|
"ipfw.py"
|
2006-11-19 21:35:54 +00:00
|
|
|
],
|
|
|
|
"/usr/lib/fail2ban/":
|
|
|
|
[
|
|
|
|
"version.py",
|
|
|
|
"protocol.py"
|
2006-08-22 22:05:08 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2006-11-15 23:09:49 +00:00
|
|
|
for directory in elements:
|
|
|
|
for f in elements[directory]:
|
|
|
|
path = join(directory, f)
|
2005-07-15 14:14:12 +00:00
|
|
|
if isfile(path):
|
|
|
|
obsoleteFiles.append(path)
|
2006-11-16 21:07:42 +00:00
|
|
|
|
2005-07-15 14:14:12 +00:00
|
|
|
if obsoleteFiles:
|
|
|
|
print
|
|
|
|
print "Obsolete files from previous Fail2Ban versions were found on " \
|
|
|
|
"your system."
|
|
|
|
print "Please delete them:"
|
|
|
|
print
|
|
|
|
for f in obsoleteFiles:
|
|
|
|
print "\t" + f
|
|
|
|
print
|
|
|
|
|
2007-01-04 12:58:21 +00:00
|
|
|
if isdir("/usr/lib/fail2ban"):
|
|
|
|
print
|
|
|
|
print "Fail2ban is not installed under /usr/lib anymore. The new " \
|
|
|
|
"location is under /usr/share. Please remove the directory " \
|
|
|
|
"/usr/lib/fail2ban and everything under this directory."
|
|
|
|
print
|
|
|
|
|
2005-07-15 14:14:12 +00:00
|
|
|
# Update config file
|
|
|
|
if argv[1] == "install":
|
|
|
|
print
|
2006-07-08 16:51:14 +00:00
|
|
|
print "Please do not forget to update your configuration files."
|
2006-08-22 22:05:08 +00:00
|
|
|
print "They are in /etc/fail2ban/."
|
2005-07-15 14:14:12 +00:00
|
|
|
print
|