Linux怎样操纵shell剧本抵抗小量的ddos进犯

相关游戏 相关文章 发表评论字体大小:【 | |

作者:佚名 2020-01-03 来源:本站整理    浏览:5     评论:0 条

  Linux体系shell剧本的做用壮大,用于执止各类号令,网站被小质ddos进击否经由过程shell剧本停止抵御,上面小编便给各人解说高Linux shell剧本剖析Nginx日记若何抵制ddos进击。

  真现体式格局:

  1. 进击特色,差别ip一直POST网站尾页,形成资源耗费过度

  2. 剖析nginx会见日记,判断POST特色获得客户端会见ip

  3. 将连贯数年夜于50的进击ip启杀

  4. 记载进击ip到文档

  5. 每一次获得的进击ip取未有进击ip比力

  查看源代码:

  #!/bin/bash

  WEBSITES=(

  example.com

  )

  minute_now=`date +%M`

  max_connections=50

  banips=“/wwwdata/jobs/banips.txt”

  for site in ${WEBSITES[*]}

  do

  access_log_file=“/wwwdata/logs/${site}.access.log”

  if [ -f “${access_log_file}” ]

  then

  cat ${access_log_file} | grep POST | awk ‘{print $1}’ | sort |uniq -c| sort -nr 》 /wwwdata/jobs/ip_records.txt

  lines=`wc -l /wwwdata/jobs/ip_records.txt | awk ‘{print $1}’`

  echo “Lines: $lines”

  i=1

  while [ ${i} -le ${lines} ]

  do

  ip_record=`head -${i} /wwwdata/jobs/ip_records.txt | tail -1 | sed ‘s/^[ \t]*//g’`

  ip_count=`echo ${ip_record} | awk ‘{print $1}’`

  ip_address=`echo ${ip_record} | awk ‘{print $2}’`

  echo “${ip_count} ${ip_address}”

  if [ ${ip_count} -gt ${max_connections} ]

  then

  banned=`cat ${banips} | grep ${ip_address} | wc -l`

  if [ ${banned} -lt 1 ]

  then

  iptables -A INPUT -s x.x.x.x -p tcp -m state --state NEW -m tcp --dport 80 -j DROP

  echo ${ip_address} 》》 ${banips}

  fi

  fi

  i=`expr ${i} + 1`

  done

  service iptables save

  service iptables restart

  if [ ${minute_now} -eq 30 ]

  then

  cat ${access_log_file} 》》 /wwwdata/logs/olds/${site}.access.log

  cat /dev/null 》 ${access_log_file}

  fi

  fi

  done

  if [ ${minute_now} -eq 30 ]

  then

  service nginx restart

  fi

  Linux体系shell剧本经由过程剖析Nginx日记,可以对微质的ddos进击起到防御做用,您也否运用iptables停止避免。

这些是你想要的吗?

相关游戏

网友评论

评论需审核后才能显示