配置Nginx實現簡單防禦cc攻擊方法分享

來源:互聯網
上載者:User
ddos攻擊:分散式阻斷服務攻擊,就是利用大量肉雞或偽造IP,發起大量的伺服器請求,最後導致伺服器癱瘓的攻擊。cc攻擊:類似於ddos攻擊,不過它的特點是主要是發起大量頁面請求,所以流量不大,但是卻能導致頁面訪問不了。

本文主要和介紹lua+Nginx下如何快速有效得防禦CC攻擊。至於如何安裝Nginx就不詳細介紹了,閑話少說,大家請看樣本,希望能協助到大家。

使用Nginx的配置對cc攻擊進行簡單防禦
===================================================================

主要是通過nginx和lua來配合,達到防禦的目的。

一、Nginx編譯支援lua
------------------------------

1. 下載lua-nginx-module


wget https://github.com/openresty/lua-nginx-module/archive/master.zipunzip master.zip

2. 編譯


#./configure \--user=nginx \--group=nginx \--prefix=/usr/local/gacp/nginx \--error-log-path=/data/logs/nginx/error/error.log \--http-log-path=/data/logs/nginx/access/access.log \--pid-path=/usr/local/gacp/nginx/conf/nginx.pid \--lock-path=/var/lock/nginx.lock \--with-http_flv_module \--with-http_stub_status_module \--with-http_ssl_module \--with-pcre \--with-http_realip_module \--with-http_gzip_static_module \--with-google_perftools_module \--with-file-aio \--add-module=../ngx_cache_purge-2.3 \--add-module=../lua-nginx-module-master# make && make install

二、配置


http {.....limit_req_zone $cookie_token zone=session_limit:3m rate=1r/s;limit_req_zone $binary_remote_addr $uri zone=auth_limit:3m rate=1r/m;}server {listen 80;server_name localhost;access_log /data/logs/nginx/access/localhost.access.log main;error_log /data/logs/nginx/error/localhost.error.log;charset utf-8;client_max_body_size 75M;root /data/www;location / {limit_req zone=session_limit burst=5;rewrite_by_lua 'local random = ngx.var.cookie_randomif(random == nil) thenreturn ngx.redirect("/auth?url=" .. ngx.var.request_uri)endlocal token = ngx.md5("opencdn" .. ngx.var.remote_addr .. random)if(ngx.var.cookie_token ~= token) thenreturn ngx.redirect("/auth?url=" .. ngx.var.request_uri)end';}location /auth {limit_req zone=auth_limit burst=1;if ($arg_url = "") {return 403;}access_by_lua 'local random = math.random(9999)local token = ngx.md5("opencdn" .. ngx.var.remote_addr .. random)if(ngx.var.cookie_token ~= token) thenngx.header["Set-Cookie"] = {"token=" .. token, "random=" .. random}return ngx.redirect(ngx.var.arg_url)end';}}

是不是很簡單呢。


相關文章

聯繫我們

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