OpenResty部署ngx_lua_waf

OpenResty部署ngx_lua_waf

  • OpenResty部署
    • 安装依赖包
    • 下载并编译安装openresty
    • 测试openresty安装
    • 验证配置是否正确
    • 启动
    • 工程化的nginx+lua项目结构
      • 项目工程结构
      • 编辑/usr/local/openresty/nginx/conf/nginx.conf
      • /usr/hello/hello.conf
  • WAF部署
    • 用途
    • 配置文件详细说明
    • 检查规则是否生效

OpenResty部署

安装依赖包

yum install -y readline-devel pcre-devel openssl-devel
cd /usr/local/src

下载并编译安装openresty

wget "https://openresty.org/download/openresty-1.11.2.5.tar.gz"
tar zxf openresty-1.11.2.5.tar.gz
cd openresty-1.11.2.5
./configure --prefix=/usr/local/openresty \
--with-luajit --with-http_stub_status_module \
--with-pcre --with-pcre-jit
gmake && gmake install

测试openresty安装

vim /usr/local/openresty/nginx/conf/nginx.conf
server {
    location /hello {
         default_type text/html;
         content_by_lua_block {
             ngx.say("HelloWorld")
         }
     }
}

验证配置是否正确

/usr/local/openresty-1.11.2.5/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/openresty-1.11.2.5/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/openresty-1.11.2.5/nginx/conf/nginx.conf test is successful

启动

/usr/local/openresty/nginx/sbin/nginx
curl http://XXX.XXX.XXX.XX/hello

HelloWorld

工程化的nginx+lua项目结构

项目工程结构

hello
    hello.conf     
    lua              
      hello.lua
    lualib            
      *.lua
      *.so

放在/usr/hello目录下

编辑/usr/local/openresty/nginx/conf/nginx.conf

worker_processes  2;  
error_log  logs/error.log;  
events {  
    worker_connections  1024;  
}  
http {  
    include       mime.types;  
    default_type  text/html;  
    lua_package_path "/usr/hello/lualib/?.lua;;";  
    lua_package_cpath "/usr/hello/lualib/?.so;;"; 
    include /usr/hello/hello.conf;  
}  

/usr/hello/hello.conf

server {  
    listen       80;  
    server_name  _;  
    location /hello {  
        default_type 'text/html';  
        //lua_code_cache off;  
        content_by_lua_file /usr/hello/lua/hello.lua;  
    }  
}  

WAF部署

ngx_lua_waf是一个基于ngx_lua的web应用防火墙。
代码很简单,开发初衷主要是使用简单,高性能和轻量级。
现在开源出来,遵从MIT许可协议。其中包含我们的过滤规则。

用途

防止sql注入,本地包含,部分溢出,fuzzing测试,xss,SSRF等web攻击
防止svn/备份之类文件泄漏
防止ApacheBench之类压力测试工具的攻击
屏蔽常见的扫描黑客工具,扫描器
屏蔽异常的网络请求
屏蔽图片附件类目录php执行权限
防止webshell上传

具体情况可访问作者的github了解,这里不多说
nginx安装路径假设为:/usr/local/openresty/nginx/conf/
把ngx_lua_waf下载到conf目录下,解压命名为waf
在nginx.conf的http段添加

lua_shared_dict limit 50m;
lua_package_path "/usr/local/openresty/nginx/conf/waf/?.lua";
init_by_lua_file "/usr/local/openresty/nginx/conf/waf/init.lua";
access_by_lua_file "/usr/local/openresty/nginx/conf/waf/waf.lua";

配置config.lua里的waf规则目录(一般在waf/conf/目录下)

 RulePath = "/usr/local/openresty/nginx/conf/waf/wafconf/"

绝对路径如有变动,需对应修改
然后重启nginx即可

/usr/local/openresty/nginx/sbin/nginx -s reload

配置文件详细说明

	RulePath = "/usr/local/nginx/conf/waf/wafconf/"
    --规则存放目录
    attacklog = "off"
    --是否开启攻击信息记录,需要配置logdir
    logdir = "/usr/local/nginx/logs/hack/"
    --log存储目录,该目录需要用户自己新建,切需要nginx用户的可写权限
    UrlDeny="on"
    --是否拦截url访问
    Redirect="on"
    --是否拦截后重定向
    CookieMatch = "on"
    --是否拦截cookie攻击
    postMatch = "on" 
    --是否拦截post攻击
    whiteModule = "on" 
    --是否开启URL白名单
    black_fileExt={"php","jsp"}
    --填写不允许上传文件后缀类型
    ipWhitelist={"127.0.0.1"}
    --ip白名单,多个ip用逗号分隔
    ipBlocklist={"1.0.0.1"}
    --ip黑名单,多个ip用逗号分隔
    CCDeny="on"
    --是否开启拦截cc攻击(需要nginx.conf的http段增加lua_shared_dict limit 10m;)
    CCrate = "10/60"
    --设置cc攻击频率,单位为秒.
    --默认1分钟同一个IP只能请求同一个地址10次(方便测试)
    html=[[Please go away~~]]
    --警告内容,可在中括号内自定义
    备注:不要乱动双引号,区分大小写

检查规则是否生效

部署完毕可以尝试如下命令:

 curl http://xxxx/test.php?id=../etc/passwd
 返回"Please go away~~"字样,说明规则生效。

你可能感兴趣的:(OpenResty)