Ssh

fail2ban 無法使用busybox-syslogd 與SSHD 一起工作

  • January 15, 2021

我在 Debian 9 上執行 fail2ban (0.9.6-2),busybox-syslogd 記錄到 /var/log/auth.log 設置,並在 /etc/rc.local 中使用以下行將日誌寫入文件。

/sbin/syslogd -O /var/log/auth.log || exit 1

SSHD 監獄已啟用,但沒有看到失敗的登錄嘗試

使用 sshd 過濾器在 auth.log 文件上執行 fail2ban-regex 不會失敗。

sshd_config 設置為 AUTHPRIV 和 VERBOSE

這是 auth.log 日誌的範例:

  Jan 14 17:12:41 Fire-Video authpriv.info sshd[2556]: Failed none for video from 192.168.60.5 port 56068 ssh2
Jan 14 17:12:42 Fire-Video authpriv.info sshd[2556]: Failed password for video from 192.168.60.5 port 56068 ssh2
Jan 14 17:12:42 Fire-Video authpriv.info sshd[2556]: Failed password for video from 192.168.60.5 port 56068 ssh2
Jan 14 17:12:42 Fire-Video authpriv.info sshd[2556]: Connection closed by 192.168.60.5 port 56068 [preauth]
Jan 14 17:12:49 Fire-Video authpriv.info sshd[2558]: Connection from 192.168.60.5 port 56074 on 192.168.40.19 port 22
Jan 14 17:12:53 Fire-Video authpriv.debug sshd[2558]: pam_usermapper(sshd:auth): pam_sm_authenticate flags: 00000001
Jan 14 17:12:53 Fire-Video authpriv.notice sshd[2558]: pam_usermapper(sshd:auth): aliasing to 'root'
Jan 14 17:12:53 Fire-Video authpriv.notice sshd[2558]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.60.5  user=root
Jan 14 17:12:55 Fire-Video authpriv.info sshd[2558]: Failed password for video from 192.168.60.5 port 56074 ssh2
Jan 14 17:13:15 Fire-Video authpriv.debug sshd[2558]: pam_usermapper(sshd:auth): pam_sm_authenticate flags: 00000001
Jan 14 17:13:16 Fire-Video authpriv.info sshd[2558]: Failed password for video from 192.168.60.5 port 56074 ssh2
Jan 14 17:13:21 Fire-Video authpriv.debug sshd[2558]: pam_usermapper(sshd:auth): pam_sm_authenticate flags: 00000001
Jan 14 17:13:21 Fire-Video authpriv.info sshd[2558]: Accepted password for video from 192.168.60.5 port 56074 ssh2
Jan 14 17:13:21 Fire-Video authpriv.info sshd[2558]: pam_unix(sshd:session): session opened for user root by (uid=0)

這是我在 filter.d 中的 sshd.conf

     # PasswordAuthentication in sshd_config.
   #
   #
   # "Connection from <HOST> port \d+" requires LogLevel VERBOSE in sshd_config
   #
   
   [INCLUDES]
   
   # Read common prefixes. If any customizations available -- read them from
   # common.local
   before = common.conf
   
   [Definition]
   
   _daemon = sshd
   
   failregex = ^%(__prefix_line)s(?:error: PAM: )?[aA]uthentication (?:failure|error|failed) 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 (?P<cond_inv>invalid user )?(?P<user>(?P<cond_user>\S+)|(?(cond_inv)(?:(?! from ).)*?|[^:]+)) from <HOST>(?: port \d+)?(?: ssh\d*)?(?(cond_user):|(?:(?:(?! from ).)*)$)
               ^%(__prefix_line)sROOT LOGIN REFUSED.* FROM <HOST>\s*$
               ^%(__prefix_line)s[iI](?:llegal|nvalid) user .*? from <HOST>(?: port \d+)?\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)s(?:error: )?Received disconnect from <HOST>: 3: .*: Auth fail(?: \[preauth\])?$
               ^%(__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 <HOST>: 11: .+ \[preauth\]$
               ^(?P<__prefix>%(__prefix_line)s)Disconnecting: Too many authentication failures for .+? \[preauth\]<SKIPLINES>(?P=__prefix)(?:error: )?Connection closed by <HOST> \[preauth\]$
               ^(?P<__prefix>%(__prefix_line)s)Connection from <HOST> port \d+(?: on \S+ port \d+)?<SKIPLINES>(?P=__prefix)Disconnecting: Too many authentication failures for .+? \[preauth\]$
               ^%(__prefix_line)s(error: )?maximum authentication attempts exceeded for .* from <HOST>(?: port \d*)?(?: ssh\d*)? \[preauth\]$
               ^%(__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>\s.*$
   
   ignoreregex = 
   
   [Init]
   
   # "maxlines" is number of log lines to buffer for multi-line regex searches
   maxlines = 10
   
   journalmatch = _SYSTEMD_UNIT=sshd.service + _COMM=sshd

# 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.
#
# Author: Cyril Jaquier, Yaroslav Halchenko, Petr Voralek, Daniel Black

所有這些的問題是__prefix_line與busybox syslogd 的奇怪日誌格式不匹配。因此fail2ban 無法理解busybox 創建的任何日誌條目。

您可以嘗試使用該-S選項使busybox syslogd 使用應該匹配__prefix_line但作為一般日誌不太有用的縮寫日誌格式。

/sbin/syslogd -S -O /var/log/auth.log || exit 1

引用自:https://serverfault.com/questions/1049874