mirror of https://github.com/fail2ban/fail2ban
- Added "apache-noscript" filter. Thanks to Pander
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@411 a942ae1a-1317-0410-a47c-b1dcaea8d6050.x
parent
50e4eb6395
commit
ebae6d70aa
1
MANIFEST
1
MANIFEST
|
@ -52,6 +52,7 @@ config/jail.conf
|
|||
config/filter.d/postfix.conf
|
||||
config/filter.d/vsftpd.conf
|
||||
config/filter.d/apache-auth.conf
|
||||
config/filter.d/apache-noscript.conf
|
||||
config/filter.d/qmail.conf
|
||||
config/filter.d/couriersmtp.conf
|
||||
config/filter.d/sshd.conf
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
# Fail2Ban configuration file
|
||||
#
|
||||
# Author: Cyril Jaquier
|
||||
#
|
||||
# $Revision: 394 $
|
||||
#
|
||||
|
||||
[Definition]
|
||||
|
||||
# Option: failregex
|
||||
# Notes.: regex to match the password failure messages in the logfile.
|
||||
# Values: TEXT
|
||||
#
|
||||
failregex = [[]client (?P<host>\S*)[]] File does not exist: .*(\.php|\.asp)
|
3
setup.py
3
setup.py
|
@ -69,6 +69,9 @@ setup(
|
|||
[
|
||||
'config/filter.d/vsftpd.conf',
|
||||
'config/filter.d/apache-auth.conf',
|
||||
'config/filter.d/apache-noscript.conf',
|
||||
'config/filter.d/proftpd.conf',
|
||||
'config/filter.d/sasl.conf',
|
||||
'config/filter.d/sshd.conf',
|
||||
'config/filter.d/couriersmtp.conf',
|
||||
'config/filter.d/postfix.conf',
|
||||
|
|
Loading…
Reference in New Issue