shell黑名单

Posted 风追海浪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell黑名单相关的知识,希望对你有一定的参考价值。

#/bin/bash
netstat -ant | grep "EST" | grep -v "22000" | awk {print $5} | grep -v "^10" | cut -d ":" -f1 | sort | uniq -c | sort -nr | awk $1 > 4 {print $1,$2} > /root/root/black.txt

for i in `awk {print $2} /root/root/black.txt`
do
COUNT=`grep $i /root/root/black.txt | awk {print $1}`
DEFINE="4"
ZERO="0"
if [ $COUNT -gt $DEFINE ];
  then
  grep $i /root/root/white.txt > /dev/null
    if [ $? -gt $ZERO ];
      then
      echo "$COUNT $i"
      iptables -F
      iptables -I INPUT -i em1 -p tcp -s $i -j DROP
    fi
fi
done    


iptables -I INPUT -i em1 -p tcp --dport 80 -m connlimit  --connlimit-above 10 -j DROP

 

以上是关于shell黑名单的主要内容,如果未能解决你的问题,请参考以下文章

shell黑名单

10个超级有用必须收藏的PHP代码样例

Linux-----Ubuntu通过shell脚本将SSH多次登录失败的IP自动加入黑名单

使用shell及python分别判断某个IP是否在白名单

shell脚本检查进程是不是存在不存在发送邮件

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]