1. 程式人生 > >centos用lastb命令看失敗登錄記錄

centos用lastb命令看失敗登錄記錄

centos lastb 登錄 登錄失敗 失敗登錄 暴力試密碼

lastb |less

lastb |tail

lastb |head


可以寫個腳本,失敗多少次後,就扔到/etc/hosts.deny裏面去

如:

lastb |awk ‘{print $3}‘ |sort |uniq -c |sort -rn |awk ‘{print $2}‘ |head -25 |while read L;do echo "sshd:$L" >> /etc/hosts.deny;done


不生效可能是因為ldd /usr/sbin/sshd後沒找到libwrap.so.0


參考文章http://75clouds.blog.51cto.com/3054635/1669397

centos用lastb命令看失敗登錄記錄