shell實戰之:定時分析nginx日誌,並將對本站使用webscan的同學擋住

來源:互聯網
上載者:User

shell實戰之:定時分析nginx日誌,並將對本站使用webscan的同學擋住 01定時分析nginx日誌,並將對本站使用webscan的同學擋住02查看nginx日誌時發現03atible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)"04220.181.55.30 - - [20/Jul/2013:19:55:57 +0400] "GET /article/show/14/?classid=2-%28-9999995%29-9999995-0-0-0 HTTP/1.1" 200 5285 "http://scpman.com:80/article/show/14/?classid=2-%28-9999995%29-9999995-0-0-0" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; WebscanSpider )"05220.181.55.29 - - [20/Jul/2013:20:06:05 +0400] "GET /web-console/ HTTP/1.1" 404 225 "http://scpman.com:80/web-console/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; WebscanSpider )"06於是:07# cat /usr/shell_work/iptab_nginx.sh08#!/bin/bash09#code by scpman10#把對本站使用webscan的同學封在外面了,又少了一些使用者。。11for ip in `cat /usr/local/nginx/logs/access.log |grep 'WebscanSpider'|awk '{print $1}'|sort -u`12do13/sbin/iptables -I INPUT -s $ip -p TCP --dport 80 -j DROP14done15#加到定時裡,每10分鐘來一次吧16*/10 * * * * /usr/shell_work/iptab_nginx.sh17Chain INPUT (policy ACCEPT)18num  target     prot opt source               destination        191    DROP       tcp  --  220.181.55.30        0.0.0.0/0           tcp dpt:80202    DROP       tcp  --  220.181.55.29        0.0.0.0/0           tcp dpt:8021效果很明顯 

相關文章

聯繫我們

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