2013-10-30 13:02:59 +00:00
# Fail2Ban filter for openssh
2006-07-17 19:26:14 +00:00
#
2007-09-12 21:38:51 +00:00
[INCLUDES]
# Read common prefixes. If any customizations available -- read them from
# common.local
2008-03-04 00:17:56 +00:00
before = common.conf
2007-09-12 21:38:51 +00:00
2006-07-16 21:35:08 +00:00
[Definition]
2006-06-26 20:05:00 +00:00
2007-09-12 21:38:51 +00:00
_daemon = sshd
2013-05-07 16:22:49 +00:00
failregex = ^%(__prefix_line)s(?:error: PAM: )?[aA]uthentication (?:failure|error) for .* from <HOST>( via \S+)?\s*$
2008-07-22 22:29:57 +00:00
^%(__prefix_line)s(?:error: PAM: )?User not known to the underlying authentication module for .* from <HOST>\s*$
2013-11-08 18:06:24 +00:00
^%(__prefix_line)sFailed \S+ for .*? from <HOST>(?: port \d*)?(?: ssh\d*)?(: (ruser .*|(\S+ ID \S+ \(serial \d+\) CA )?\S+ %(__md5hex)s(, client user ".*", client host ".*")?))?\s*$
2007-09-12 21:38:51 +00:00
^%(__prefix_line)sROOT LOGIN REFUSED.* FROM <HOST>\s*$
^%(__prefix_line)s[iI](?:llegal|nvalid) user .* from <HOST>\s*$
2012-02-11 02:14:51 +00:00
^%(__prefix_line)sUser .+ from <HOST> not allowed because not listed in AllowUsers\s*$
2012-04-17 00:36:53 +00:00
^%(__prefix_line)sUser .+ from <HOST> not allowed because listed in DenyUsers\s*$
2013-04-16 14:03:36 +00:00
^%(__prefix_line)sUser .+ from <HOST> not allowed because not in any group\s*$
2008-03-04 22:41:28 +00:00
^%(__prefix_line)srefused connect from \S+ \(<HOST>\)\s*$
2013-04-16 14:03:36 +00:00
^%(__prefix_line)sUser .+ from <HOST> not allowed because a group is listed in DenyGroups\s*$
2011-11-18 15:07:13 +00:00
^%(__prefix_line)sUser .+ from <HOST> not allowed because none of user's groups are listed in AllowGroups\s*$
2006-06-26 20:05:00 +00:00
2006-11-15 18:44:28 +00:00
ignoreregex =
2013-10-30 13:02:59 +00:00
2013-11-08 22:34:31 +00:00
# DEV Notes:
#
# "Failed \S+ for .*? from <HOST>..." failregex uses non-greedy catch-all because
# it is coming before use of <HOST> which is not hard-anchored at the end as well,
# and later catch-all's could contain user-provided input, which need to be greedily
# matched away first.
#
2013-10-30 13:02:59 +00:00
# Author: Cyril Jaquier, Yaroslav Halchenko, Petr Voralek, Daniel Black