上一篇 下一篇 分享链接 返回 返回顶部

Linux_ssh防爆破教程(Shell脚本)

发布人:速云-小陈 发布时间:2022-11-06 23:28 阅读量:3562

命名we:[root@localhost]# vim kill.sh 

###################################################

#!/bin/bash

cat /var/log/secure | awk '/Failed/{print $(NF-3)}' | sort | uniq -c |awk '{print $2"="$1}' > /tmp/blacklist

MAXCOUNT="3"

for i in `cat /tmp/blacklist`

do

    IP=`echo $i | awk -F= '{print $1}'`

    NUM=`echo $i | awk -F= '{print $2}'`

if [ $NUM -gt $MAXCOUNT ];then

   grep $IP /etc/hosts.deny > /dev/null

   if [ $? -gt 0 ];then

       echo "sshd:$IP" >> /etc/hosts.deny

   fi

fi

done

###################################################

#授權

[root@localhost]# chmod -R 777 kill.sh 

#運行

[root@localhost]# nohup ./kill.sh &

[1] 13893

#查看拉黑的IP

[root@localhost]# cat /etc/hosts.deny

目录结构
全文
微信客服 微信客服
微信公众号 微信公众号
服务热线: 15555444774
电子邮箱: admin@suyun.net