设置ssh登录失败多次封禁该ip(防暴力破解)

1.新建一个secure-ssh.sh

设置登录失败5次就永久封禁该ip

#! /bin/bash
cat /var/log/secure|awk '/Failed/{print $(NF-3)}'|sort|uniq -c|awk '{print $2"="$1;}' > /usr/local/bin/black.list
for i in `cat  /usr/local/bin/black.list`
do
  IP=`echo $i |awk -F= '{print $1}'`
  NUM=`echo $i|awk -F= '{print $2}'`
  if [ ${NUM} -gt 5 ]; then
    grep $IP /etc/hosts.deny > /dev/null
    if [ $? -gt 0 ];then
      echo "sshd:$IP:deny" >> /etc/hosts.deny
    fi
  fi
done

2.crontab -e 设置定时任务5s一次

*/5 * * * * sh ~/secure-ssh.sh

3. vi /etc/hosts.deny 检查发现,成功

猜你喜欢

转载自blog.csdn.net/qq_36961530/article/details/110393871