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

模拟解决DOS攻击的shell脚本

时间:2018-08-16 00:56:46      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:连接数   sage   解决   wc -l   The   连接   方法   echo   网络连接   

方法1:

  #!/bin/sh

  While true

    do

     awk ‘{print $1}’.access.log|grep –v “^$”|sort|uniq –c >/tmp/access.log

     #netstat –an|grep EST|awk –F ‘[ :]+’ ‘{print $6}’|sort|uniq –c >/tmp/access.log 判断网络连接数

     exec </tmp/access.log

     while read line

     do

      ip=`echo $line|awk ‘{print $2}’`

      count=`echo $line|awk ‘{print $1}’

                 if [$count –gt 100 ] && [ `iptables –L -n|grep “$ip”|wc –l` -lt 1 ]

                 then

                  iptables –A INPUT –s  $ip -j DROP

                 echo “$line is dropped” >>/tmp/droplist.log

                 fi

      done

      sleep 180

    done

 

方法2:

#!/bin/sh

if [ $# -ne 1 ];then

  echo "USAGE:$0 ARG"

  exit

fi

ipt(){

awk ‘{print $1}‘ $1 |sort|uniq -c|sort -rn -k1 >/tmp/access.log

exec </tmp/access.log

while read line

do

  ip=`echo $line|awk ‘{print $2}‘`

  count=`echo $line|awk ‘{print $1}‘`

  if [ "$count" -gt 100 -a `iptables -L -n|grep "$ip"|wc -l` -lt 1 ];then

        iptables -I INPUT -s "$ip" -j DROP

        echo "$ip" >>/tmp/ip_$(date +%F).log

  fi

done

}

del(){

  touch /tmp/ip_$(date +%F -d ‘-1day‘).log

  exec </tmp/ip_$(date +%F -d ‘-1day‘).log

  while read line

  do

   if [ `iptables -L -n|grep "$line"|wc -l` -le 1 ];then

    iptables -D INPUT -s $line -j DROP

  fi

  done

}

main(){

while true

do

  ipt $1

  sleep 5

  del

done

}

main $*

 

模拟解决DOS攻击的shell脚本

标签:连接数   sage   解决   wc -l   The   连接   方法   echo   网络连接   

原文地址:https://www.cnblogs.com/liuhui-xzz/p/9484329.html

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