linux下Shell指令碼分析Nginx日誌抗小量ddos攻擊

來源:互聯網
上載者:User


網站被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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.