zoukankan      html  css  js  c++  java
  • Nginx http_user_agent 防御 ab 等

    日志出现大量:

    xxxxxxxxxxxxx - - [04/Jul/2013:23:37:49 +0800] "GET /1000.html HTTP/1.0" 200 56471 "-" "ApacheBench/2.3" -

    xxxxxxxxxxxxx - - [04/Jul/2013:23:37:49 +0800] "GET /1000.html HTTP/1.0" 200 56471 "-" "ApacheBench/2.3" -

    Nginx 设置..Nginx.conf 添加

           if ($http_user_agent ~ ApacheBench|WebBench|Jmeter|must-revalidate){

           return 403;

           }

    重启~Nginx 以后~~再查看日志

    xxxxxxxxxxxxxx - - [05/Aug/2013:08:33:18 +0800] "GET / HTTP/1.0" 403 168 "-" "ApacheBench/2.3" -

    xxxxxxxxxxxxxx - - [05/Aug/2013:08:33:18 +0800] "GET / HTTP/1.0" 403 168 "-" "ApacheBench/2.3" -

    如果 ... DDOS 的话....

    =0=   查看特征..... proxy_pass  http://www.google.com    打的死么~~

  • 相关阅读:
    投票练习
    多条件查询
    PHP 购物车
    PHP TP模型
    PHP smarty函数
    PHP smarty复习
    PHP smarty缓存
    PHP phpcms
    php smarty查询分页
    PHP Smarty变量调节器
  • 原文地址:https://www.cnblogs.com/jicki/p/5546932.html
Copyright © 2011-2022 走看看