web-dev-qa-db-ja.com

Fail2Banログファイルで「見つかりました」とは何ですか?

/var/log/fail2ban.logに次のような複数のインスタンスがあります。

2015-12-27 14:31:21,949 fail2ban.filter         [1020]: INFO    [sshd] Found ###.###.###.###

(#は多様なIPアドレスの代わりになります。)

このログエントリの意味は何ですか?特に、Foundは何を示していますか?

ここを検索し、ログファイルの説明について http://www.fail2ban.org を検索しました。この質問の明らかな情報源を逃した場合は、申し訳ありません。正しい方向に向けてください。

/etc/fail2ban/filter.d/sshd.configにあるFailRegexの設定は次のとおりです。

failregex = ^%(__prefix_line)s(?:error: PAM: )?[aA]uthentication (?:failure|error) for .* from <Host>( via \S+)?\s*$
        ^%(__prefix_line)s(?:error: PAM: )?User not known to the underlying authentication module for .* from <Host>\s*$
        ^%(__prefix_line)sFailed \S+ for .*? from <Host>(?: port \d*)?(?: ssh\d*)?(: (ruser .*|(\S+ ID \S+ \(serial \d+\) CA )?\S+ %(__md5hex)s(,$
        ^%(__prefix_line)sROOT LOGIN REFUSED.* FROM <Host>\s*$
        ^%(__prefix_line)s[iI](?:llegal|nvalid) user .* from <Host>\s*$
        ^%(__prefix_line)sUser .+ from <Host> not allowed because not listed in AllowUsers\s*$
        ^%(__prefix_line)sUser .+ from <Host> not allowed because listed in DenyUsers\s*$
        ^%(__prefix_line)sUser .+ from <Host> not allowed because not in any group\s*$
        ^%(__prefix_line)srefused connect from \S+ \(<Host>\)\s*$
        ^%(__prefix_line)sReceived disconnect from <Host>: 3: \S+: Auth fail$
        ^%(__prefix_line)sUser .+ from <Host> not allowed because a group is listed in DenyGroups\s*$
        ^%(__prefix_line)sUser .+ from <Host> not allowed because none of user's groups are listed in AllowGroups\s*$
        ^(?P<__prefix>%(__prefix_line)s)User .+ not allowed because account is locked<SKIPLINES>(?P=__prefix)(?:error: )?Received disconnect from$
        ^(?P<__prefix>%(__prefix_line)s)Disconnecting: Too many authentication failures for .+? \[preauth\]<SKIPLINES>(?P=__prefix)(?:error: )?Co$
        ^(?P<__prefix>%(__prefix_line)s)Connection from <Host> port \d+(?: on \S+ port \d+)?<SKIPLINES>(?P=__prefix)Disconnecting: Too many authe$
        ^%(__prefix_line)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$
20
nmax

_Found xxx.xxx.xxx.xxx_メッセージは、fail2banフィルターが、指定されたフィルター/刑務所ログファイルでfailregexと一致する行を見つけたことを意味します。

たとえば、ログが示す場合

_2016-03-16 15:35:51,527 fail2ban.filter         [1986]: INFO    [sshd] Found 1.2.3.4
2016-03-16 15:35:51,817 fail2ban.filter         [1986]: INFO    [sshd] Found 1.2.3.4
2016-03-16 15:35:52,537 fail2ban.actions        [1986]: NOTICE  [sshd] Ban 1.2.3.4
_

最初の2つのFoundは、IPアドレス1.2.3.4が指定されたsshdログ(/var/log/auth.logなど)で2回見つかり、ログファイルのエントリがfailregexin the filter _/etc/fail2ban/filter.d/sshd.conf_と一致することを意味します

2つの失敗したssh-attemtpsの後に禁止するように設定したので、3行目は、これら2つの発生が見つかった後にIP 1.2.3.4が禁止されたことを示しています。

私がこれについて知った方法:

python fail2banのソース(Debianでは、これは_/usr/lib/python3/dist-packages/fail2ban/_にあります)で次のようにします。

_cd /usr/lib/python3/dist-packages/fail2ban/

grep -r "\[%s\] Found" *
_

pythonファイル "server/filter.py"の937行目に、対応するログ関数があります:

_def processLineAndAdd(self, line, date=None):
  [..]
  logSys.info("[%s] Found %s" % (self.jail.name, ip))
  [..]
_
18
minni