Created
March 28, 2014 03:04
-
-
Save anonymous/9824388 to your computer and use it in GitHub Desktop.
Drupal + fail2ban: enable Drupal syslog module and add the following to fail2ban, see receipes from http://drupalcode.org/project/fail2ban.git/tree/refs/heads/7.x-2.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fail2Ban configuration file | |
# | |
# Author: Tipi Koivisto | |
[Definition] | |
# Option: failregex | |
# Notes.: regex to match the password failure messages in the logfile. The | |
# host must be matched by a group named "host". The tag "<HOST>" can | |
# be used for standard IP/hostname matching and is only an alias for | |
# (?:::f{4,6}:)?(?P<host>[\w\-.^_]+) | |
# Values: TEXT | |
# | |
failregex = \|\d*\|user\|<HOST>\|.*Login attempt failed for \s? | |
# Option: ignoreregex | |
# Notes.: regex to ignore. If this regex matches, the line is ignored. | |
# Values: TEXT | |
# | |
ignoreregex = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fail2Ban configuration file | |
# | |
# Author: Peter Lieverdink | |
[Definition] | |
# Option: failregex | |
# Notes.: regex to match the password failures messages in the logfile. The | |
# host must be matched by a group named "host". The tag "<HOST>" can | |
# be used for standard IP/hostname matching and is only an alias for | |
# (?:::f{4,6}:)?(?P<host>[\w\-.^_]+) | |
# Values: TEXT | |
# | |
failregex = Submitting address \[<HOST>\] to the firewall | |
# Option: ignoreregex | |
# Notes.: regex to ignore. If this regex matches, the line is ignored. | |
# Values: TEXT | |
# | |
ignoreregex = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fail2Ban configuration file | |
# | |
# Author: CK Ng | |
[Definition] | |
# Option: failregex | |
# Notes.: regex to match the password failure messages in the logfile. The | |
# host must be matched by a group named "host". The tag "<HOST>" can | |
# be used for standard IP/hostname matching and is only an alias for | |
# (?:::f{4,6}:)?(?P<host>[\w\-.^_]+) | |
# Values: TEXT | |
# | |
# targeting /user/login | |
failregex = ^<HOST> -.*\"(GET|POST) /user/login.* | |
# Option: ignoreregex | |
# Notes.: regex to ignore. If this regex matches, the line is ignored. | |
# Values: TEXT | |
# | |
# if /user/login is not blocked from search engine bots, add here, e.g. | |
# ignoreregex = ^<HOST> -.*\"(GET|POST).*Googlebot | |
ignoreregex = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fail2Ban configuration file | |
# | |
# Author: Peter Lieverdink | |
[Definition] | |
# Option: failregex | |
# Notes.: regex to match the password failures messages in the logfile. The | |
# host must be matched by a group named "host". The tag "<HOST>" can | |
# be used for standard IP/hostname matching and is only an alias for | |
# (?:::f{4,6}:)?(?P<host>\S+) | |
# Values: TEXT | |
# Grab the dirty spammer by its IP address. | |
# | |
failregex = \|mollom\|<HOST>\|.*\|Spam: | |
# Option: ignoreregex | |
# Notes.: regex to ignore. If this regex matches, the line is ignored. | |
# Values: TEXT | |
# | |
ignoreregex = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[drupal-comment] | |
enabled = true | |
port = http,https | |
protocol = tcp | |
filter = drupal-comment | |
logpath = /var/log/syslog | |
maxretry = 0 | |
bantime = 604800 | |
action = iptables-multiport[name=DrupalComment, port="http,https"] | |
[drupal-mollom-spam] | |
enabled = true | |
port = http,https | |
filter = drupal-mollom-spam | |
logpath = /var/log/drupal/drupal.log | |
ignoreip = 127.0.0.1 | |
bantime = 86400 | |
maxretry = 1 | |
action = iptables-multiport[name=DrupalMollom, port="http,https"] | |
[drupal-auth] | |
enabled = true | |
port = http,https | |
filter = drupal-auth | |
logpath = /var/log/syslog | |
maxretry = 3 | |
bantime = 86400 | |
action = iptables-multiport[name=DrupalAuth, port="http,https"] | |
[drupal-dos] | |
enabled = true | |
port = http,https | |
filter = drupal-dos | |
# webserver/site access log | |
logpath = /var/log/apache2/access.log | |
maxretry = 20 | |
findtime = 600 | |
bantime = 604800 | |
action = iptables-multiport[name=DrupalDoS, port="http,https"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment