nginx_lua_waf安装测试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx_lua_waf安装测试相关的知识,希望对你有一定的参考价值。
ngx_lua_waf是一个基于lua-nginx-module(openresty)的web应用防火墙,对于中小企业或不愿购置硬件防火墙的企业的首选,能有效保证网站的安全性。
源码:https://github.com/loveshell/ngx_lua_waf
0x1 安装部署
系统版本:Centos7 x86_64
安装依赖包
yum install -y readline-devel pcre-devel openssl-devel
1、openresty的安装配置
cd /usr/local/src
wget https://openresty.org/download/openresty-1.9.15.1.tar.gz
tar -zxvf openresty-1.9.15.1.tar.gz
cd openresty-1.9.15.1
./configure --prefix=/usr/local/openresty-1.9.15.1 --with-luajit --with-http_stub_status_module --with-pcre --with-pcre-jit
gmake && gmake install
ln -s /usr/local/openresty-1.9.15.1/ /usr/local/openresty
测试启动nginx
/usr/local/openresty/nginx/sbin/nginx -t
成功启动nginx显示如下
nginx: the configuration file /usr/local/openresty-1.9.15.1/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/openresty-1.9.15.1/nginx/conf/nginx.conf test is successful
启动nginx
/usr/local/openresty/nginx/sbin/nginx
2、配置nginx_lua_waf
git clone https://github.com/loveshell/ngx_lua_waf.git
将git获取的文件放到nginx的conf目录下
lua_package_path "/usr/local/openresty/nginx/conf/ngx_lua_waf/?.lua";
init_by_lua_file /usr/local/openresty/nginx/conf/ngx_lua_waf/init.lua;
access_by_lua_file /usr/local/openresty/nginx/conf/ngx_lua_waf/waf.lua;
配置config.lua里的waf规则目录(一般在ngx_lua_waf/wafconf/目录下)
RulePath = "/usr/local/openresty/nginx/conf/ngx_lua_waf/wafconf"
logdir = "/usr/local/nginx/logs/waf"
3、waf日志配置
#将nginx.conf首行的”# user nobody;”的”#”注释去掉,重新启动nginx服务
user nobody
#将防护日志目录所属user和group修改为nobody,目录权限可设为700也可以写入,当然也可以默认
cd /usr/local/nginx/conf
//chown -R nobay.nobady waf
//chmod 700 waf
因为nginx、php模块等是单独安装的,所以每次重启服务器都需要重启相应的服务
启动nginx
cd /usr/local/openresty/nginx/sbin
./nginx (不关闭nginx而重新加载配置文件 ./nginx -t)
0x2 nginx_lua_waf测试
启动php
直接执行/usr/sbin/php-fpm
测试SQL注入漏洞
测试结果
测试任意文件读取
进行CC攻击测试
通过查看waf_logs可以看到waf拦截的所有的攻击操作
通过waf_logs可以看到无论是sql注入、任意文件读取还是CC攻击都被成功的拦截,waf的部署是成功可靠的!
本文出自 “tar0cissp” 博客,请务必保留此出处http://tar0cissp.blog.51cto.com/6253667/1980249
以上是关于nginx_lua_waf安装测试的主要内容,如果未能解决你的问题,请参考以下文章