- Install sample jail.conf and fail2ban.conf files so that when users modify the fail2ban.conf and jail.conf files they are not removed. - Add an IPFW example using IPFW tables - Created freebsd sshd and ftp example conf files. Submitted by: Ken Menzel <kmenzel@whisolutions.com> (via e-mail)
43 lines
1.7 KiB
Text
43 lines
1.7 KiB
Text
--- /dev/null 2010-01-12 16:33:00.000000000 -0500
|
|
+++ ./config/filter.d/bsd-sshd.conf 2010-01-12 16:26:22.000000000 -0500
|
|
@@ -0,0 +1,40 @@
|
|
+# Fail2Ban configuration file
|
|
+#
|
|
+# Author: Cyril Jaquier
|
|
+#
|
|
+# $Revision: 663 $
|
|
+#
|
|
+
|
|
+[INCLUDES]
|
|
+
|
|
+# Read common prefixes. If any customizations available -- read them from
|
|
+# common.local
|
|
+before = common.conf
|
|
+
|
|
+
|
|
+[Definition]
|
|
+
|
|
+_daemon = sshd
|
|
+
|
|
+# 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
|
|
+#
|
|
+failregex = ^%(__prefix_line)s(?:error: PAM: )?[A|a]uthentication (?:failure|error) for .* from <HOST>\s*$
|
|
+ ^%(__prefix_line)sDid not receive identification string from <HOST>$
|
|
+ ^%(__prefix_line)sFailed [-/\w]+ for .* from <HOST>(?: port \d*)?(?: ssh\d*)?$
|
|
+ ^%(__prefix_line)sROOT LOGIN REFUSED.* FROM <HOST>\s*$
|
|
+ ^%(__prefix_line)s[iI](?:llegal|nvalid) user .* from <HOST>\s*$
|
|
+ ^%(__prefix_line)sUser \S+ from <HOST> not allowed because not listed in AllowUsers$
|
|
+ ^%(__prefix_line)sauthentication failure; logname=\S* uid=\S* euid=\S* tty=\S* ruser=\S* rhost=<HOST>(?:\s+user=.*)?\s*$
|
|
+ ^%(__prefix_line)srefused connect from \S+ \(<HOST>\)\s*$
|
|
+ ^%(__prefix_line)sreverse mapping checking getaddrinfo for .* \[<HOST>\] .* POSSIBLE BREAK-IN ATTEMPT!$
|
|
+
|
|
+# Option: ignoreregex
|
|
+# Notes.: regex to ignore. If this regex matches, the line is ignored.
|
|
+# Values: TEXT
|
|
+#
|
|
+ignoreregex =
|