Nginx 安装 Naxsi 模块实现 WAF WEB应用安全防火墙的功能

2019-08-09 07:28发布

能够浏览我的这篇文章,相信你已经对 Nginx 不陌生了,所以这里就不再赘述 Nginx 的安装和配置了,我们直接从 Nginx 和 Naxsi 的集成来讲,如果你对 Nginx 还比较陌生,不知道配置文件在哪里或者不知道如何编译,那这篇文章不太适合你,还请先熟悉 Nginx 的安装和配置编译。

我为什么需要 WAF 呢?随着网站上线时间变长,各种扫描攻击也日益增多,为了能安心一点,所以就希望能有个 WAF防火墙抵挡大部分攻击扫描,但是硬件 WAF防火墙虽然好,价格也十分昂贵,中小型企业或者创业团队肯定没有资金来购买昂贵的安全设备的,但是 Nginx + Naxsi 就可以构建一个免费的软件 WAF防火墙,所以我开始尝试使用 Naxsi 来实现我的 WAF防火墙。

在开始之前,我们先了解一下都需要准备的环境(我所演示的操作均在Linux环境下):

  1. Nginx:http://nginx.org/en/download.html
  2. Naxsi:https://github.com/nbs-system/naxsi
  3. Linux环境我安装了:crontabs gcc gcc-c++ glibc libpcre3-dev make zlib autoconf openssl openssl-devel wget libxslt-devel gd gd-devel GeoIP GeoIP-devel pcre pcre-devel

一、下载和安装各项依赖和包

1、我使用的Centos7,所以直接使用 yum 安装:

yum -y install crontabs gcc gcc-c++ glibc libpcre3-dev make zlib autoconf openssl openssl-devel wget libxslt-devel gd gd-devel GeoIP GeoIP-devel pcre pcre-devel

2、下载 Nginx:

wget -P /usr/local/src/ http://nginx.org/download/nginx-1.16.0.tar.gz

3、下载 Naxsi:

wget -P /usr/local/src/ https://github.com/nbs-system/naxsi/archive/untagged-afabfc163946baa8036f.tar.gz

4、解压 Nginx 和 Naxsi:

tar vxf nginx-1.16.0.tar.gz
tar vxf untagged-afabfc163946baa8036f.tar.gz

注意,untagged-afabfc163946baa8036f.tar.gz 就是下载的 Naxsi,解压后就是下文中的 naxsi 文件夹

5、新建 Nginx 的工作目录

mkdir /usr/local/nginx

6、配置 Nginx 的各个模块,在此处添加 Naxsi 模块,注意下文中的 “../naxsi/” 就是 Naxsi 解压的文件夹

cd nginx-1.16.0/
./configure
--prefix=/usr/local/nginx
--user=nginx
--group=nginx
--add-module=../naxsi/naxsi_src
--with-http_stub_status_module
--with-http_gzip_static_module
--with-http_realip_module
--with-http_ssl_module

7、编译安装

make modules
make
make install

8、复制 Naxsi 的核心规则文件到指定位置

cp ../naxsi/naxsi_config/naxsi_core.rules /etc/nginx/naxsi_core.rules

二、配置 Nginx 的配置文件 nginx.conf

1、在 http 节点处

http {
t#上下文省略
tinclude /etc/nginx/naxsi_core.rules; # 此处加载 naxsi 核心规则文件
t#上下文省略
}

2、在 server 节点处

server {
t#上下文省略
t# 启用Naxsi模块
tSecRulesEnabled;
t# 启用学习模式,即拦截请求后不拒绝访问,只将触发规则的请求写入日志
#LearningMode; #enable learning mode
LibInjectionSql; #enable libinjection support for SQLI
LibInjectionXss; #enable libinjection support for XSS
t
t# 拒绝访问时展示的页面
tDeniedUrl "/RequestDenied";
t
t# 检查规则
tCheckRule "$SQL >= 8" BLOCK;
tCheckRule "$RFI >= 8" BLOCK;
tCheckRule "$TRAVERSAL >= 4" BLOCK;
tCheckRule "$EVADE >= 4" BLOCK;
tCheckRule "$XSS >= 8" BLOCK;
terror_log logs/naxsi.log;
t# 配置拦截后拒绝访问时展示的页面,这里直接返回403。
location /RequestDenied {
return 403;
}
t#上下文省略
}

这里说下 LearningMode 学习模式,如果把这个放出来,启用学习模式的话,就不会拦截攻击,只是把攻击请求写入 error_log 日志里面,所以我们需要它拦截攻击,就需要把这个注释掉。

三、重启 Nginx,验证是否能拦截攻击请求

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

验证方法也很简单,执行类似这样的请求:

http://localhost/?id=<>

如果显示的是 403 禁止访问,那么就是成功了!

文章来源: https://www.toutiao.com/group/6722709645829341710/