Skip to content

Instantly share code, notes, and snippets.

@bigdatalyn
Forked from sparkydogX/autodeny.sh
Created December 12, 2019 02:55
Show Gist options
  • Save bigdatalyn/9d8746f0fae4c2a505037bfbe890deba to your computer and use it in GitHub Desktop.
Save bigdatalyn/9d8746f0fae4c2a505037bfbe890deba to your computer and use it in GitHub Desktop.
将ssh登录错误次数过多的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 1 ]; then
grep $IP /etc/hosts.deny > /dev/null
if [ $? -gt 0 ];then
echo "sshd:$IP:deny" >> /etc/hosts.deny
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment