2013-10-30 13:02:59 +00:00
# Fail2Ban filter for openssh
2006-07-17 19:26:14 +00:00
#
2014-02-02 04:16:40 +00:00
# If you want to protect OpenSSH from being bruteforced by password
# authentication then get public key authentication working before disabling
2014-02-13 05:20:36 +00:00
# PasswordAuthentication in sshd_config.
#
#
# "Connection from <HOST> port \d+" requires LogLevel VERBOSE in sshd_config
#
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
2016-11-11 12:23:20 +00:00
[DEFAULT]
2006-06-26 20:05:00 +00:00
2007-09-12 21:38:51 +00:00
_daemon = sshd
2015-10-05 19:18:16 +00:00
# optional prefix (logged from several ssh versions) like "error: ", "error: PAM: " or "fatal: "
__pref = (?:(?:error|fatal): (?:PAM: )?)?
# optional suffix (logged from several ssh versions) like " [preauth]"
2016-11-11 12:23:20 +00:00
__suff = (?: \[preauth\])?\s*
2016-11-14 11:59:37 +00:00
__on_port_opt = (?: port \d+)?(?: on \S+(?: port \d+)?)?
2015-10-05 19:18:16 +00:00
# single line prefix:
__prefix_line_sl = %(__prefix_line)s%(__pref)s
# multi line prefixes (for first and second lines):
__prefix_line_ml1 = (?P<__prefix>%(__prefix_line)s)%(__pref)s
__prefix_line_ml2 = %(__suff)s$<SKIPLINES>^(?P=__prefix)%(__pref)s
2016-11-11 12:23:20 +00:00
mode = %(normal)s
normal = ^%(__prefix_line_sl)s[aA]uthentication (?:failure|error|failed) for .* from <HOST>( via \S+)?\s*%(__suff)s$
^%(__prefix_line_sl)sUser not known to the underlying authentication module for .* from <HOST>\s*%(__suff)s$
2016-11-14 11:59:37 +00:00
^%(__prefix_line_sl)sFailed \S+ for (?P<cond_inv>invalid user )?(?P<user>(?P<cond_user>\S+)|(?(cond_inv)(?:(?! from ).)*?|[^:]+)) from <HOST>%(__on_port_opt)s(?: ssh\d*)?(?(cond_user): |(?:(?:(?! from ).)*)$)
2016-11-11 12:23:20 +00:00
^%(__prefix_line_sl)sROOT LOGIN REFUSED.* FROM <HOST>\s*%(__suff)s$
2016-11-14 11:59:37 +00:00
^%(__prefix_line_sl)s[iI](?:llegal|nvalid) user .*? from <HOST>%(__on_port_opt)s\s*$
2016-11-11 12:23:20 +00:00
^%(__prefix_line_sl)sUser .+ from <HOST> not allowed because not listed in AllowUsers\s*%(__suff)s$
^%(__prefix_line_sl)sUser .+ from <HOST> not allowed because listed in DenyUsers\s*%(__suff)s$
^%(__prefix_line_sl)sUser .+ from <HOST> not allowed because not in any group\s*%(__suff)s$
^%(__prefix_line_sl)srefused connect from \S+ \(<HOST>\)\s*%(__suff)s$
2017-01-21 15:18:03 +00:00
^%(__prefix_line_sl)sReceived disconnect from <HOST>%(__on_port_opt)s:\s*3: .*: Auth fail%(__suff)s$
2016-11-11 12:23:20 +00:00
^%(__prefix_line_sl)sUser .+ from <HOST> not allowed because a group is listed in DenyGroups\s*%(__suff)s$
^%(__prefix_line_sl)sUser .+ from <HOST> not allowed because none of user's groups are listed in AllowGroups\s*%(__suff)s$
^%(__prefix_line_sl)spam_unix\(sshd:auth\):\s+authentication failure;\s*logname=\S*\s*uid=\d*\s*euid=\d*\s*tty=\S*\s*ruser=\S*\s*rhost=<HOST>\s.*%(__suff)s$
2016-11-14 11:59:37 +00:00
^%(__prefix_line_sl)s(error: )?maximum authentication attempts exceeded for .* from <HOST>%(__on_port_opt)s(?: ssh\d*)? \[preauth\]$
2016-11-11 12:23:20 +00:00
^%(__prefix_line_ml1)sUser .+ not allowed because account is locked%(__prefix_line_ml2)sReceived disconnect from <HOST>: 11: .+%(__suff)s$
^%(__prefix_line_ml1)sDisconnecting: Too many authentication failures for .+?%(__prefix_line_ml2)sConnection closed by <HOST>%(__suff)s$
2016-11-14 11:59:37 +00:00
^%(__prefix_line_ml1)sConnection from <HOST>%(__on_port_opt)s%(__prefix_line_ml2)sDisconnecting: Too many authentication failures for .+%(__suff)s$
2016-11-11 12:23:20 +00:00
ddos = ^%(__prefix_line_sl)sDid not receive identification string from <HOST>%(__suff)s$
2017-01-23 07:56:47 +00:00
^%(__prefix_line_sl)sReceived disconnect from <HOST>%(__on_port_opt)s:\s*14: No supported authentication methods available%(__suff)s$
2016-11-14 11:59:37 +00:00
^%(__prefix_line_sl)sUnable to negotiate with <HOST>%(__on_port_opt)s: no matching (?:cipher|key exchange method) found.
^%(__prefix_line_ml1)sConnection from <HOST>%(__on_port_opt)s%(__prefix_line_ml2)sUnable to negotiate a (?:cipher|key exchange method)%(__suff)s$
2016-11-11 12:23:20 +00:00
^%(__prefix_line_ml1)sSSH: Server;Ltype: (?:Authname|Version|Kex);Remote: <HOST>-\d+;[A-Z]\w+:.*%(__prefix_line_ml2)sRead from socket failed: Connection reset by peer%(__suff)s$
aggressive = %(normal)s
%(ddos)s
[Definition]
failregex = %(mode)s
2006-06-26 20:05:00 +00:00
2006-11-15 18:44:28 +00:00
ignoreregex =
2013-05-27 21:06:49 +00:00
[Init]
# "maxlines" is number of log lines to buffer for multi-line regex searches
maxlines = 10
2013-06-29 12:00:40 +00:00
2013-05-09 23:15:07 +00:00
journalmatch = _SYSTEMD_UNIT=sshd.service + _COMM=sshd
2013-11-02 04:59:05 +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
2013-11-02 04:59:05 +00:00