linux中shell自動過濾網站攻擊源IP

來源:互聯網
上載者:User

具體的指令碼內容如下:

 代碼如下 複製代碼

$ vim /home/rainbow/sbin/block_attack_ips.sh

#!/bin/bash

logfile=/webserver/blog/logs/rainbow_access.log

function check_root(){
  if [ $EUID -ne 0 ]; then
    echo "This script must be run as root"
    exit 1
  fi
}

function block_ips(){
  blacklist=$@
  if [ ! -z "${blacklist}" ]; then
    for ip in ${blacklist}
    do
      if ! $(/sbin/iptables-save | grep -wq ${ip}); then
        echo /sbin/iptables -I INPUT -s ${ip}/32 -p tcp -m tcp --dport 80 -j DROP
        /sbin/iptables -I INPUT -s ${ip}/32 -p tcp -m tcp --dport 80 -j DROP
      fi
    done
  fi
}

function check_login(){
  tailnum=10000
  page=wp-login.php
  retry=5
 
  command="grep -w POST ${logfile} |tail -n ${tailnum} |grep -w ${page} |awk '{print $1}' |sort |uniq -c |awk '($1 > ${retry}){print $2}'"
  blacklist=$(eval ${command})
  block_ips ${blacklist}
}

function check_others(){
  tailnum=10000
  retry=400
 
  command="tail -n ${tailnum} ${logfile} |awk '{print $1}' |sort |uniq -c |awk '($1 > ${retry}){print $2}'"
  blacklist=$(eval ${command})
  block_ips ${blacklist}
}

check_root
check_login
check_others

$ chmod +x /home/rainbow/sbin/block_attack_ips.sh

配置crontab計劃任務,每5分鐘檢查一次,並每天定時重啟iptables服務清除舊的記錄:
$ sudo crontab -e

 代碼如下 複製代碼

*/5 * * * * /home/rainbow/sbin/block_attack_ips.sh
00 01 * * * /etc/init.d/iptables restart

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.