本文最后更新于 1195 天前,其中的信息可能已经有所发展或是发生改变。
创建目录
演示路径 /root/shell
mkdir -p /root/shell
touch /root/shell/ipblack.txt
#!/bin/bash
cat /var/log/secure|awk '/Failed/{print $(NF-3)}'|sort|uniq -c|awk '{print $2"="$1;}' > /root/shell/ipblack.txt
for i in `cat /root/shell/ipblack.txt`
do
IP=`echo $i |awk -F= '{print $1}'`
NUM=`echo $i|awk -F= '{print $2}'`
if [ $NUM -gt 3 ];then
grep $IP /etc/hosts.deny > /dev/null
if [ $? -gt 0 ];then
echo "sshd:$IP:deny" >> /etc/hosts.deny
fi
fi
done