找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 9235|回复: 0

nginx配合modsecurity实现WAF功能

[复制链接]
发表于 2017-10-19 16:53:31 | 显示全部楼层 |阅读模式
modsecurity原本是Apache上的一款开源waf,可以有效的增强web安全性,目前已经支持nginx和IIS,配合nginx的灵活和高效,可以打造成生产级的WAF,是保护和审核web安全的利器。
: z+ w( ?/ l2 p: f' r( i+ [- A! b
2 t2 i' F) q% ]: j9 X4 |一.准备工作
& b/ m5 J; n% D: c5 y7 E' w$ ?. a0 V( c* t
系统:centos 6.5 64位、 tengine 2.1.0, modsecurity 2.8.0
5 w+ C' S, v( i$ s" O" p
9 R2 ]. N# n8 C9 ?! `tengine : http://tengine.taobao.org/download/tengine-2.1.0.tar.gz3 x, E% T' W0 n* E1 n& r% k

6 Z; `. H9 m* C1 W: p6 m- cmodsecurity for Nginx: https://www.modsecurity.org/tarball/2.8.0/modsecurity-2.8.0.tar.gz7 K! e1 _6 C: F$ L+ `5 k0 x
$ T, c) c$ M8 K1 L" @: y7 P6 y
OWASP规则集: https://github.com/SpiderLabs/owasp-modsecurity-crs
" h" G7 v1 x6 l
1 |3 K2 [# u* j6 M- J依赖关系:
8 e. L# g0 n- btengine(nginx)依赖: pcre 、zlib、 openssl, 这三个包centos 6.5 系统源里都有:$ E; a6 V- m& b/ Y8 f. [$ r/ I

4 L8 ?8 p$ r. g. C, @7 cyum install zlib zlib-devel openssl openssl-devel  pcre pcre-devel) ]: z; ^" g1 d0 C
modsecurty依赖的包:pcre httpd-devel libxml2 apr# }+ x% r' `7 `! H) d5 i2 T1 h2 e
9 Y% o3 V- B9 w5 S: W' \  t+ n
yum install httpd-devel apr apr-util-devel apr-devel  pcre pcre-devel  libxml2 libxml2-devel0 J/ n2 p# r& p! f8 V; ~, m9 y, w( ]
二.启用standalone模块并编译
" Q9 b% x6 J* z4 q4 n  V
, V- t- h7 c  V4 {! L下载modsecurity for nginx 解压,进入解压后目录执行:) W& d9 Y4 l3 N" n4 S3 R9 F: R
. [! S+ j. c/ M$ H, J
./autogen.sh7 A; u8 w+ x4 {
./configure --enable-standalone-module --disable-mlogc. N2 w& y4 @3 H! U  [9 e
make 9 [7 W( V( v: z* F) F
三.nginx添加modsecurity模块% a& `  G6 Z7 ], Q2 A2 y2 v
& t" p  N7 E" F2 m
在编译standalone后,nginx编译时可以通过"--add-module"添加modsecurity模块:' y. [" R. ]* Z) ~% E2 l
9 S! \+ d0 c8 c
./configure --add-module=/root/modsecurity-2.8.0/nginx/modsecurity/  --prefix=/opt/tengine1 a2 Y7 G8 }  k' f+ ?  H9 H2 y0 q
make && make install9 W1 [3 I! |3 u$ f
四.添加规则5 P: t3 W" I1 E2 |& l% o1 D# {; f
/ K7 F/ ~0 R5 ?+ O
modsecurity倾向于过滤和阻止web危险,之所以强大就在于规则,OWASP提供的规则是于社区志愿者维护的,被称为核心规则CRS(corerules),规则可靠强大,当然也可以自定义规则来满足各种需求。( T+ q( ^% D+ \- v

6 S# T6 g" r  |6 e' K; V1.下载OWASP规则:
- e3 c+ f5 h6 V) p/ \! n. n  w5 l" a& X( c! e. s& o
git clone https://github.com/SpiderLabs/owasp-modsecurity-crs* L) \0 D4 ]& X8 M
6 w+ b" U' \: l+ s
mv owasp-modsecurity-crs /opt/tengine/conf/( D2 W4 B" ?% Z$ B

# q+ v; b2 Z& s# _( Bcd /opt/tengine/conf/owasp-modsecurity-crs && mv modsecurity_crs_10_setup.conf.example modsecurity_crs_10_setup.conf
( C0 `. u5 [( `2.启用OWASP规则:
# k/ W( b% n" R- y$ @
# ]$ p7 d( [) M$ g" D3 |复制modsecurity源码目录下的modsecurity.conf-recommended和unicode.mapping到nginx的conf目录下,并将modsecurity.conf-recommended重新命名为modsecurity.conf。3 Z+ B) X, M; D4 @
$ q& g0 ]- k9 X! w8 F
编辑modsecurity.conf 文件,将SecRuleEngine设置为 on
; ?7 x4 K8 |* A3 `
, \. p& _: O3 G, p9 o$ h0 Sowasp-modsecurity-crs下有很多存放规则的文件夹,例如base_rules、experimental_rules、optional_rules、slr_rules,里面的规则按需要启用,需要启用的规则使用Include进来即可。
9 {3 f8 }6 {% {- w' h
$ C+ e8 q2 t! E5 BInclude owasp-modsecurity-crs/modsecurity_crs_10_setup.conf; f+ R. s) q6 f+ L8 h" N1 v
Include owasp-modsecurity-crs/base_rules/modsecurity_crs_41_sql_injection_attacks.conf  H3 Q! W% e$ \# g/ C
Include owasp-modsecurity-crs/base_rules/modsecurity_crs_41_xss_attacks.conf6 b9 r# k9 t- D! h1 @" a
Include owasp-modsecurity-crs/base_rules/modsecurity_crs_40_generic_attacks.conf
+ e! m7 R  L, }# G- x" Y3 F6 t% [( g$ `+ dInclude owasp-modsecurity-crs/experimental_rules/modsecurity_crs_11_dos_protection.conf
" V' j' {/ W& q% G; t4 y9 W2 nInclude owasp-modsecurity-crs/experimental_rules/modsecurity_crs_11_brute_force.conf
' [- @, s) L9 C* [" DInclude owasp-modsecurity-crs/optional_rules/modsecurity_crs_16_session_hijacking.conf
" C+ p- I2 ~5 q五.配置nginx! ?2 ~4 p$ l7 k+ D# O

* c* ]0 b# {! q% A8 f0 S8 {在需要启用modsecurity的主机的location下面加入下面两行即可:
: z1 d! Y/ N& b$ W( Q
' L  l- R' M* EModSecurityEnabled on;  
  Z; e  w4 U. y9 B! E0 S5 dModSecurityConfig modsecurity.conf;
! |5 q( ^& C! V8 w下面是两个示例配置,php虚拟主机:6 p2 V' a) {$ [0 M  d
' i% U$ K2 e5 ^) k3 x& |! W
server {
4 P3 I$ t! M3 a      listen      80;# V4 `. `7 Q  g2 S) e
      server_name 52os.net www.52os.net;
3 P8 \7 L! L( c  o% L     
/ f% r3 i1 d% J2 U: I: x, W      location ~ \.php$ {7 ^& z- q) A: N
      ModSecurityEnabled on;  
. u8 V& x5 q% C5 s6 L( ?      ModSecurityConfig modsecurity.conf;2 v. q# \/ N0 E2 l

9 S1 p7 ~, \# d2 U- o0 E4 L      root /web/wordpress;  O2 ]7 d; A. u, l6 r. {" F
      index index.php index.html index.htm;
5 H1 V, n" ?# a  Y4 a  
' m# v% s  E% \' P      fastcgi_pass   127.0.0.1:9000;
+ ^3 Q' F( s- ]* K+ G      fastcgi_index  index.php;
& }9 c3 g' a  i& T      fastcgi_param  SCRIPT_FILENAME  $Document_root$fastcgi_script_name;
2 b* a6 y1 N- l3 [& G+ L4 x( b      include        fastcgi_params;+ W! M% u! g+ W7 ]# {* z" z
      }
6 F- Z" n; K8 K0 b* t6 R; x  }/ _, J3 p6 z8 _& K3 b1 {$ N  k
upstream负载均衡:
% P2 D6 Z; p) N* E4 ^# J/ U: m' ~7 U+ h
upstream 52os.net {! H  V0 O5 d. z$ _! t
    server 192.168.1.100:8080;# O1 g& I" V1 k; l; ?% y+ R# X' {
    server 192.168.1.101:8080 backup;( N  v% G- J' u3 I+ H
}
0 h8 c3 n3 M6 Y4 Q5 s: m% _* J7 Q. v0 t4 r* A
server {
3 V$ o# Y% k" m' dlisten 80;
, y. N/ x; T/ }  f7 w' {" V! j) `8 hserver_name 52os.net www.52os.net;
% j6 z( _, R0 k; o3 a6 [$ M: S
% f$ [0 F7 w+ k( a- Ilocation / {/ J7 Q- W2 H. Y( R* v) J& f
    ModSecurityEnabled on;  . F% L# I' J# D- _# u- H
    ModSecurityConfig modsecurity.conf;  
* Y+ p" J# ^/ c0 d! ~7 A/ I' q
# u) J  m: {2 N+ ^        proxy_pass http://online;
# ]/ J" @* m5 Y; e; B' A( ~3 V. Q        proxy_redirect         off;6 |# g# {% L! `: Z' O' x& h$ A
        proxy_set_header Host $host;3 i7 r( `4 }9 i
        proxy_set_header X-Real-IP $remote_addr;
# S0 m  ?% b1 {5 z, B' q( u        proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
; Z/ v  v$ j# u9 U0 q/ z    }
& g" [% t: d3 V3 x}+ H0 Q$ f: ]" z5 B" P
六.测试4 [7 P0 ~; s4 w5 \2 y

6 J1 c4 z) H/ d4 {% d我们启用了xss和sql注入的过滤,不正常的请求会直接返回403。以php环境为例,新建一个phpinfo.php内容为:
5 c0 L$ Q  A9 O
- \( F) ~3 R) ^( y' d' d<?php6 H1 I0 ~, t" h0 @- p) t
    phpinfo();   
. r+ j+ D7 s& V* ?6 `?>
9 \+ s2 A! r) ^' s% q4 ~# k" v在浏览器中访问:- @8 d& S6 U$ `6 j; _$ F  x
% ~4 K6 s) u- M' K  O+ u( M
http://www.52os.net/phpinfo.php?id=1 正常显示。
& u) t: G/ @- y% }) K8 Shttp://www.52os.net/phpinfo.php?id=1 and 1=1  返回403。- h; `: T  U* H+ M0 T6 J
http://www.52os.net/phpinfo.php?search=<scritp>alert('xss');</script>  返回403。
9 m! C. W2 C& ^; b) \8 O6 `7 V说明sql注入和xss已经被过滤了; ]' |) Z( \# b6 x
6 Q9 a6 ]- m# {( v
七、安装过程中排错
& ^" I2 R4 U; l- K+ ]. k( W) l$ j; u
1.缺少APXS会报错
# J9 ]( E- E* q8 [+ Z/ K* g; G: _- F7 w: k
configure: looking for Apache module support via DSO through APXS3 H0 P( o. i4 S" s
configure: error: couldn't find APXS
. n6 G9 }8 {* {1 e* z3 z' x1 R/ a+ ^3 Yapxs是一个为Apache HTTP服务器编译和安装扩展模块的工具,用于编译一个或多个源程序或目标代码文件为动态共享对象。
+ C, s1 q6 F9 A5 r解决方法:
$ y  s, j) d: B1 _
+ p* z$ K' r" c( w/ j6 [yum install httpd-devel
& w& X0 j# p; H3 u4 S/ z5 T2.没有pcre/ p6 B7 G# Z# L' y" N
! Z4 F- s- n) ]" k: u8 |9 t
configure: *** pcre library not found.( s. b7 z3 P9 [. b  y
configure: error: pcre library is required
1 k4 d/ M) |* R' F3 t; x9 N) V  \. Q. T解决方法:
5 V: X) A: n+ s- T6 d/ C
( j  o) N  N( l+ e2 {# myum install pcre pcre-devel' ]" J' F5 [. {/ k3 t
3.没有libxml26 X/ `! u) Z) F  z6 h

+ C0 z8 O) A  u$ A! Z1 j
1 i  j% n# w4 I- _  ]6 w5 G( A! Uconfigure: *** xml library not found.
2 a+ T6 O2 ^$ {: Vconfigure: error: libxml2 is required
$ E  c4 t5 n: n3 \3 B4 i/ ~# C解决方法:
- d5 e0 ^& \* y) y8 n2 S) C
2 l9 y+ h* \) ?* L8 ]" ryum install  libxml2 libxml2-devel$ }  Q6 {0 X3 ^2 G
4.执行 /opt/tengine/sbin/nginx -m 时有警告, n& `# f2 f- M
% }2 L) w2 l) t2 d" L/ k
Tengine version: Tengine/2.1.0 (nginx/1.6.2)) Y! n2 P% }3 e% Q2 M3 N9 Q
nginx: [warn] ModSecurity: Loaded APR do not match with compiled!
( |# T% W! x' h- |+ E" _原因:modsecurity编译时和加载时的apr版本不一致造成的,并且会有以下error.log1 f8 Y, h5 f# L; ?9 Y8 U8 q+ D

; Z* Z  M7 d" E$ P, R2015/01/26 02:04:18 [notice] 29036#0: ModSecurity for nginx (STABLE)/2.8.0 () configured.
; w3 A* ^8 W8 @' |9 s2015/01/26 02:04:18 [notice] 29036#0: ModSecurity: APR compiled version="1.5.0"; loaded     version="1.3.9"  T( `# V1 v) f: n
2015/01/26 02:04:18 [warn] 29036#0: ModSecurity: Loaded APR do not match with compiled!. |/ c1 @. W7 p2 ^- f- C! y3 ]- `
2015/01/26 02:04:18 [notice] 29036#0: ModSecurity: PCRE compiled version="7.8 "; loaded version="7.8 2008-09-05"% D4 X. u$ L2 M/ j/ A) I6 z
2015/01/26 02:04:18 [notice] 29036#0: ModSecurity: LIBXML compiled version="2.7.6"; f7 }9 \( [4 {' e7 X2 r
2015/01/26 02:04:18 [notice] 29036#0: Status engine is currently disabled, enable it by set SecStatusEngine to On.% q8 a1 y6 ]. R: z! ^9 `  Z% g
解决方法,移除低版本的APR (1.3.9)7 z' `: Z8 `6 ~

. M: z8 u+ l& D3 p- tyum remove apr
2 C8 K3 i+ S4 X' W- W0 v5.Error.log中有: Audit log: Failed to lock global mutex6 o. b6 }' @6 e- l* r$ a) i

) h: Y8 Z$ |8 F& n; {  |; }2015/01/26 04:15:42 [error] 61610#0: [client 10.11.15.161] ModSecurity: Audit log: Failed to lock     2 q0 y+ g  G+ z, e0 L$ w
global mutex: Permission denied [hostname ""] [uri "/i.php"] [unique_id "AcAcAcAcAcAcAcA4DcA7AcAc"]" e; G/ V% `. t! y" O
解决方法:
& `7 F7 o  r, r" v. t) m编辑modsecurity.conf,注释掉默认的SecAuditLogType和SecAuditLog,添加以下内容:$ d+ j3 }& @' ~. O$ J

% ~' y7 v! ~/ bSecAuditLogDirMode 07778 a) \8 E) k6 F: a: k: z+ v; l' c. L
SecAuditLogFileMode 05508 h  `/ k! j. d2 p2 M! n' E# y: k
SecAuditLogStorageDir /var/log/modsecurity
% G/ O3 F" ]; ESecAuditLogType Concurrent2 D/ c6 _& K3 j3 S/ k  J; d
参考文章:
4 I! d+ R" A/ uhttps://github.com/SpiderLabs/ModSecurity/wiki/Reference-Manual#Installation_for_NGINX4 I/ S$ k, K2 s  E
http://drops.wooyun.org/tips/2614
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|第一站论坛 ( 蜀ICP备06004864号-6 )

GMT+8, 2025-11-30 16:05 , Processed in 0.077276 second(s), 19 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表