码迷,mamicode.com
首页 > 系统相关 > 详细

shell黑名单

时间:2019-02-25 13:39:56      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:table   bash   bin   define   inpu   nbsp   cut   mit   efi   

#/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黑名单

标签:table   bash   bin   define   inpu   nbsp   cut   mit   efi   

原文地址:https://www.cnblogs.com/icemonkey/p/10430316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!