mod security nginx


[root@cclient ~]# yum install mod_security
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: centos.mirror.snu.edu.in
 * centos-sclo-rh: centos.excellmedia.net
 * centos-sclo-sclo: centos.excellmedia.net
 * epel: ftp.jaist.ac.jp
 * extras: centos.excellmedia.net
 * updates: centos.excellmedia.net
Resolving Dependencies
--> Running transaction check
---> Package mod_security.x86_64 0:2.9.2-1.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================
 Package                Arch             Version                  Repository      Size
=======================================================================================
Installing:
mod_security           x86_64           2.9.2-1.el7              base           249 k

Transaction Summary
=======================================================================================
Install  1 Package

Total download size: 249 k
Installed size: 980 k
Is this ok [y/d/N]: y
Downloading packages:
mod_security-2.9.2-1.el7.x86_64.rpm                             | 249 kB  00:00:00    
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
Installing : mod_security-2.9.2-1.el7.x86_64                                     1/1
Verifying  : mod_security-2.9.2-1.el7.x86_64                                     1/1

Installed:
  mod_security.x86_64 0:2.9.2-1.el7                                                   

Complete!
[root@cclient ~]# yum install mod_securitymod_security_crs
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: centos.excellmedia.net
 * centos-sclo-rh: centos.excellmedia.net
 * centos-sclo-sclo: centos.excellmedia.net
 * epel: ftp.jaist.ac.jp
 * extras: centos.excellmedia.net
 * updates: centos.excellmedia.net
Package mod_security-2.9.2-1.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package mod_security_crs.noarch 0:2.2.9-1.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================
 Package                   Arch            Version                 Repository     Size
=======================================================================================
Installing:
mod_security_crsnoarch          2.2.9-1.el7             base           91 k

Transaction Summary
=======================================================================================
Install  1 Package

Total download size: 91 k
Installed size: 375 k
Is this ok [y/d/N]: y
Downloading packages:
mod_security_crs-2.2.9-1.el7.noarch.rpm                         |  91 kB  00:00:00    
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : mod_security_crs-2.2.9-1.el7.noarch                                 1/1
Verifying  : mod_security_crs-2.2.9-1.el7.noarch                                 1/1

Installed:
mod_security_crs.noarch 0:2.2.9-1.el7                                                

Complete!
[root@cclient ~]# vi /etc/httpd/conf.d/mod_security.conf
[root@cclient ~]# cat  /etc/httpd/conf.d/mod_security.conf
<IfModule mod_security2.c>
    # ModSecurity Core Rules Set configuration
                IncludeOptionalmodsecurity.d/*.conf
                IncludeOptionalmodsecurity.d/activated_rules/*.conf

    # Default recommended configuration
SecRuleEngine On
SecRequestBodyAccess On
SecRuleREQUEST_HEADERS:Content-Type "text/xml" \
         "id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML"
SecRequestBodyLimit 13107200
SecRequestBodyNoFilesLimit 131072
SecRequestBodyInMemoryLimit 131072
SecRequestBodyLimitAction Reject
SecRule REQBODY_ERROR "!@eq 0" \
    "id:'200001', phase:2,t:none,log,deny,status:400,msg:'Failed to parse request body.',logdata:'%{reqbody_error_msg}',severity:2"
SecRule MULTIPART_STRICT_ERROR "!@eq 0" \
    "id:'200002',phase:2,t:none,log,deny,status:44,msg:'Multipart request body \
failed strict validation: \
    PE %{REQBODY_PROCESSOR_ERROR}, \
    BQ %{MULTIPART_BOUNDARY_QUOTED}, \
    BW %{MULTIPART_BOUNDARY_WHITESPACE}, \
    DB %{MULTIPART_DATA_BEFORE}, \
    DA %{MULTIPART_DATA_AFTER}, \
    HF %{MULTIPART_HEADER_FOLDING}, \
    LF %{MULTIPART_LF_LINE}, \
    SM %{MULTIPART_MISSING_SEMICOLON}, \
    IQ %{MULTIPART_INVALID_QUOTING}, \
    IP %{MULTIPART_INVALID_PART}, \
    IH %{MULTIPART_INVALID_HEADER_FOLDING}, \
    FL %{MULTIPART_FILE_LIMIT_EXCEEDED}'"

SecRule MULTIPART_UNMATCHED_BOUNDARY "!@eq 0" \
    "id:'200003',phase:2,t:none,log,deny,status:44,msg:'Multipart parser detected a possible unmatched boundary.'"

SecPcreMatchLimit 1000
SecPcreMatchLimitRecursion 1000

SecRule TX:/^MSC_/ "!@streq 0" \
            "id:'200004',phase:2,t:none,deny,msg:'ModSecurity internal error flagged: %{MATCHED_VAR_NAME}'"

SecResponseBodyAccess Off
SecDebugLog /var/log/httpd/modsec_debug.log
SecDebugLogLevel 0
SecAuditEngineRelevantOnly
SecAuditLogRelevantStatus "^(?:5|4(?!04))"
SecAuditLogParts ABIJDEFHZ
SecAuditLogType Serial
SecAuditLog /var/log/httpd/modsec_audit.log
SecArgumentSeparator&
SecCookieFormat 0
SecTmpDir /var/lib/mod_security
SecDataDir /var/lib/mod_security
</IfModule>
[root@cclient ~]# servicehttpd restart
Redirecting to /bin/systemctl restart httpd.service
[root@cclient ~]# tail /var/log/httpd/error_log
[Sun Jul 28 22:15:05.440212 2019] [:notice] [pid 19609] ModSecurity for Apache/2.9.2 (http://www.modsecurity.org/) configured.
[Sun Jul 28 22:15:05.440222 2019] [:notice] [pid 19609] ModSecurity: APR compiled version="1.4.8"; loaded version="1.4.8"
[Sun Jul 28 22:15:05.440226 2019] [:notice] [pid 19609] ModSecurity: PCRE compiled version="8.32 "; loaded version="8.32 2012-11-30"
[Sun Jul 28 22:15:05.440229 2019] [:notice] [pid 19609] ModSecurity: LUA compiled version="Lua 5.1"
[Sun Jul 28 22:15:05.440232 2019] [:notice] [pid 19609] ModSecurity: LIBXML compiled version="2.9.1"
[Sun Jul 28 22:15:05.440234 2019] [:notice] [pid 19609] ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
[Sun Jul 28 22:15:05.504776 2019] [auth_digest:notice] [pid 19609] AH01757: generating secret for digest authentication ...
[Sun Jul 28 22:15:05.505642 2019] [lbmethod_heartbeat:notice] [pid 19609] AH02282: No slotmem from mod_heartmonitor
[Sun Jul 28 22:15:05.553753 2019] [mpm_prefork:notice] [pid 19609] AH00163: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16 configured -- resuming normal operations
[Sun Jul 28 22:15:05.553803 2019] [core:notice] [pid 19609] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[root@cclient ~]# apachectl -M | grep --color sec
 security2_module (shared)
[root@cclient ~]#
root@cclient ~]# yum -y install https://extras.getpagespeed.com/release-el7-latest.rpm
Loaded plugins: fastestmirror, langpacks
release-el7-latest.rpm                                          | 5.6 kB  00:00:00    
Examining /var/tmp/yum-root-D57FAS/release-el7-latest.rpm: getpagespeed-extras-release-7-4.el7.gps.noarch
Marking /var/tmp/yum-root-D57FAS/release-el7-latest.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package getpagespeed-extras-release.noarch 0:7-4.el7.gps will be installed
--> Finished Dependency Resolution
base/7/x86_64                                                   | 3.6 kB  00:00:00    
centos-sclo-rh/x86_64                                           | 3.0 kB  00:00:00    
centos-sclo-sclo/x86_64                                         | 2.9 kB  00:00:00    
docker-ce-stable/x86_64                                         | 3.5 kB  00:00:00    
epel/x86_64/metalink                                            | 6.5 kB  00:00:00    
extras/7/x86_64                                                 | 3.4 kB  00:00:00    
jenkins                                                         | 2.9 kB  00:00:00    
kubernetes/signature                                            |  454 B  00:00:00    
kubernetes/signature                                            | 1.4 kB  00:00:00 !!!
updates/7/x86_64                                                | 3.4 kB  00:00:00    
virtualbox/7/x86_64/signature                                   |  181 B  00:00:00    
virtualbox/7/x86_64/signature                                   | 2.9 kB  00:00:00 !!!

Dependencies Resolved

=======================================================================================
 Package                        Arch      Version         Repository              Size
=======================================================================================
Installing:
getpagespeed-extras-releasenoarch    7-4.el7.gps     /release-el7-latest    3.1 k

Transaction Summary
=======================================================================================
Install  1 Package

Total size: 3.1 k
Installed size: 3.1 k
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : getpagespeed-extras-release-7-4.el7.gps.noarch                      1/1
Verifying  : getpagespeed-extras-release-7-4.el7.gps.noarch                      1/1

Installed:
getpagespeed-extras-release.noarch 0:7-4.el7.gps                                    

Complete!
[root@cclient ~]# yum install nginx-module-security
Loaded plugins: fastestmirror, langpacks
Determining fastest mirrors
 * base: centos.excellmedia.net
 * centos-sclo-rh: centos.excellmedia.net
 * centos-sclo-sclo: centos.excellmedia.net
 * epel: repos.del.extreme-ix.org
 * extras: centos.excellmedia.net
 * updates: centos.excellmedia.net
getpagespeed-extras                                             | 4.0 kB  00:00:00    
getpagespeed-extras-noarch                                      | 3.4 kB  00:00:00    
(1/3): getpagespeed-extras/x86_64/group_gz|  861 B  00:00:01    
(2/3): getpagespeed-extras-noarch/primary_db|  81 kB  00:00:01    
(3/3): getpagespeed-extras/x86_64/primary_db                    | 196 kB  00:00:01
Resolving Dependencies
--> Running transaction check
---> Package nginx-module-security.x86_64 1:1.16.0.1.0.0-2.el7.gps will be installed
--> Processing Dependency: nginx = 1:1.16.0-1.el7.ngx for package: 1:nginx-module-security-1.16.0.1.0.0-2.el7.gps.x86_64
--> Processing Dependency: libmodsecurity.so.3()(64bit) for package: 1:nginx-module-security-1.16.0.1.0.0-2.el7.gps.x86_64
--> Running transaction check
---> Package libmodsecurity.x86_64 0:3.0.3-4.el7.gps will be installed
--> Processing Dependency: libluajit-5.1.so.2()(64bit) for package: libmodsecurity-3.0.3-4.el7.gps.x86_64
--> Processing Dependency: liblmdb.so.0.0.0()(64bit) for package: libmodsecurity-3.0.3-4.el7.gps.x86_64
--> Processing Dependency: libfuzzy.so.2()(64bit) for package: libmodsecurity-3.0.3-4.el7.gps.x86_64
---> Package nginx.x86_64 1:1.16.0-1.el7.ngx will be installed
--> Running transaction check
---> Package lmdb-libs.x86_64 0:0.9.22-2.el7 will be installed
---> Package luajit.x86_64 0:2.0.4-3.el7 will be installed
---> Package ssdeep-libs.x86_64 0:2.14.1-1.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================
 Package                Arch    Version                     Repository            Size
=======================================================================================
Installing:
nginx-module-security  x86_64  1:1.16.0.1.0.0-2.el7.gps    getpagespeed-extras   24 k
Installing for dependencies:
libmodsecurity         x86_64  3.0.3-4.el7.gps             getpagespeed-extras  550 k
lmdb-libs              x86_64  0.9.22-2.el7                epel                  54 k
luajit                 x86_64  2.0.4-3.el7                 epel                 343 k
nginx                  x86_64  1:1.16.0-1.el7.ngx          getpagespeed-extras  766 k
ssdeep-libs            x86_64  2.14.1-1.el7                epel                  19 k

Transaction Summary
=======================================================================================
Install  1 Package (+5 Dependent packages)

Total download size: 1.7 M
Installed size: 6.2 M
Is this ok [y/d/N]: y
Downloading packages:
(1/6): lmdb-libs-0.9.22-2.el7.x86_64.rpm                        |  54 kB  00:00:00    
warning: /var/cache/yum/x86_64/7/getpagespeed-extras/packages/libmodsecurity-3.0.3-4.el7.gps.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 222b0e83: NOKEY
Public key for libmodsecurity-3.0.3-4.el7.gps.x86_64.rpm is not installed
(2/6): libmodsecurity-3.0.3-4.el7.gps.x86_64.rpm                | 550 kB  00:00:02
(3/6): ssdeep-libs-2.14.1-1.el7.x86_64.rpm                      |  19 kB  00:00:00    
(4/6): luajit-2.0.4-3.el7.x86_64.rpm                            | 343 kB  00:00:03
(5/6): nginx-module-security-1.16.0.1.0.0-2.el7.gps.x86_64.rpm  |  24 kB  00:00:00    
(6/6): nginx-1.16.0-1.el7.ngx.x86_64.rpm                        | 766 kB  00:00:03
---------------------------------------------------------------------------------------
Total                                                     502 kB/s | 1.7 MB  00:03
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-GETPAGESPEED
Importing GPG key 0x222B0E83:
Userid     : "GetPageSpeed Builder <info@getpagespeed.com>"
 Fingerprint: d1a3 7295 c6b0 5ed8 43db d501 0cd6 0276 222b 0e83
 Package    : getpagespeed-extras-release-7-4.el7.gps.noarch (installed)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-GETPAGESPEED
Is this ok [y/N]: y
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : lmdb-libs-0.9.22-2.el7.x86_64                                       1/6
Installing : 1:nginx-1.16.0-1.el7.ngx.x86_64                                     2/6
----------------------------------------------------------------------

Thanks for using nginx!

Please find the official documentation for nginx here:
* http://nginx.org/en/docs/

Please subscribe to nginx-announce mailing list to get
the most important news about nginx:
* http://nginx.org/en/support.html

Commercial subscriptions for nginx are available on:
* http://nginx.com/products/

----------------------------------------------------------------------
Installing : ssdeep-libs-2.14.1-1.el7.x86_64                                     3/6
Installing : luajit-2.0.4-3.el7.x86_64                                           4/6
Installing : libmodsecurity-3.0.3-4.el7.gps.x86_64                               5/6
Installing : 1:nginx-module-security-1.16.0.1.0.0-2.el7.gps.x86_64               6/6
----------------------------------------------------------------------

The security dynamic module for nginx has been installed.
To enable this module, add the following to /etc/nginx/nginx.conf
and reload nginx:

load_module modules/ngx_http_modsecurity_module.so;

Please refer to the module documentation for further details:
https://github.com/SpiderLabs/ModSecurity-nginx

----------------------------------------------------------------------
Verifying  : luajit-2.0.4-3.el7.x86_64                                           1/6
Verifying  : ssdeep-libs-2.14.1-1.el7.x86_64                                     2/6
Verifying  : libmodsecurity-3.0.3-4.el7.gps.x86_64                               3/6
Verifying  : 1:nginx-module-security-1.16.0.1.0.0-2.el7.gps.x86_64               4/6
Verifying  : 1:nginx-1.16.0-1.el7.ngx.x86_64                                     5/6
Verifying  : lmdb-libs-0.9.22-2.el7.x86_64                                       6/6

Installed:
nginx-module-security.x86_64 1:1.16.0.1.0.0-2.el7.gps                               

Dependency Installed:
  libmodsecurity.x86_64 0:3.0.3-4.el7.gps        lmdb-libs.x86_64 0:0.9.22-2.el7      
  luajit.x86_64 0:2.0.4-3.el7                    nginx.x86_64 1:1.16.0-1.el7.ngx      
ssdeep-libs.x86_64 0:2.14.1-1.el7            

Complete!
[root@cclient ~]# yum -y install nginx-owasp-crs
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: centos.excellmedia.net
 * centos-sclo-rh: centos.excellmedia.net
 * centos-sclo-sclo: centos.excellmedia.net
 * epel: repos.del.extreme-ix.org
 * extras: centos.excellmedia.net
 * updates: centos.excellmedia.net
Resolving Dependencies
--> Running transaction check
---> Package nginx-owasp-crs.noarch 0:3.1.1-1.el7 will be installed
--> Processing Dependency: perl(XML::Smart) for package: nginx-owasp-crs-3.1.1-1.el7.noarch
--> Processing Dependency: perl(Switch) for package: nginx-owasp-crs-3.1.1-1.el7.noarch
--> Processing Dependency: perl(Regexp::Assemble) for package: nginx-owasp-crs-3.1.1-1.el7.noarch
--> Processing Dependency: perl(Data::Validate::URI) for package: nginx-owasp-crs-3.1.1-1.el7.noarch
--> Processing Dependency: perl(Data::Types) for package: nginx-owasp-crs-3.1.1-1.el7.noarch
--> Processing Dependency: perl(Acme::Comment) for package: nginx-owasp-crs-3.1.1-1.el7.noarch
--> Running transaction check
---> Package perl-Acme-Comment.noarch 0:1.04-1.el7 will be installed
---> Package perl-Data-Types.noarch 0:0.16-1.el7 will be installed
---> Package perl-Data-Validate-URI.noarch 0:0.07-1.el7 will be installed
--> Processing Dependency: perl(Data::Validate::IP) for package: perl-Data-Validate-URI-0.07-1.el7.noarch
--> Processing Dependency: perl(Data::Validate::Domain) for package: perl-Data-Validate-URI-0.07-1.el7.noarch
---> Package perl-Regexp-Assemble.noarch 0:0.35-11.el7 will be installed
---> Package perl-Switch.noarch 0:2.16-7.el7 will be installed
---> Package perl-XML-Smart.noarch 0:1.79-1.el7 will be installed
--> Processing Dependency: perl(Object::MultiType) for package: perl-XML-Smart-1.79-1.el7.noarch
--> Running transaction check
---> Package perl-Data-Validate-Domain.noarch 0:0.14-1.el7 will be installed
--> Processing Dependency: perl(Net::Domain::TLD) >= 1.74 for package: perl-Data-Validate-Domain-0.14-1.el7.noarch
---> Package perl-Data-Validate-IP.noarch 0:0.27-1.el7 will be installed
--> Processing Dependency: perl(NetAddr::IP) >= 4 for package: perl-Data-Validate-IP-0.27-1.el7.noarch
---> Package perl-Object-MultiType.noarch 0:0.05-18.el7 will be installed
--> Running transaction check
---> Package perl-Net-Domain-TLD.noarch 0:1.75-6.el7 will be installed
---> Package perl-NetAddr-IP.x86_64 0:4.069-3.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=======================================================================================
 Package                     Arch     Version       Repository                    Size
=======================================================================================
Installing:
nginx-owasp-crsnoarch   3.1.1-1.el7   getpagespeed-extras-noarch   224 k
Installing for dependencies:
perl-Acme-Commentnoarch   1.04-1.el7    getpagespeed-extras-noarch    13 k
perl-Data-Typesnoarch   0.16-1.el7    getpagespeed-extras-noarch    14 k
perl-Data-Validate-Domainnoarch   0.14-1.el7    getpagespeed-extras-noarch    28 k
perl-Data-Validate-IPnoarch   0.27-1.el7    getpagespeed-extras-noarch    32 k
perl-Data-Validate-URInoarch   0.07-1.el7    getpagespeed-extras-noarch    15 k
perl-Net-Domain-TLDnoarch   1.75-6.el7    epel                          37 k
perl-NetAddr-IP             x86_64   4.069-3.el7   base                         125 k
perl-Object-MultiTypenoarch   0.05-18.el7   epel                          17 k
perl-Regexp-Assemblenoarch   0.35-11.el7   epel                          82 k
perl-Switchnoarch   2.16-7.el7    base                          22 k
perl-XML-Smartnoarch   1.79-1.el7    epel                          84 k

Transaction Summary
=======================================================================================
Install  1 Package (+11 Dependent packages)

Total download size: 695 k
Installed size: 3.5 M
Downloading packages:
(1/12): perl-Acme-Comment-1.04-1.el7.noarch.rpm                 |  13 kB  00:00:01    
(2/12): perl-Data-Types-0.16-1.el7.noarch.rpm                   |  14 kB  00:00:00    
(3/12): nginx-owasp-crs-3.1.1-1.el7.noarch.rpm                  | 224 kB  00:00:01
(4/12): perl-Data-Validate-Domain-0.14-1.el7.noarch.rpm         |  28 kB  00:00:00     
(5/12): perl-Data-Validate-IP-0.27-1.el7.noarch.rpm             |  32 kB  00:00:00    
(6/12): perl-Data-Validate-URI-0.07-1.el7.noarch.rpm            |  15 kB  00:00:00    
(7/12): perl-Net-Domain-TLD-1.75-6.el7.noarch.rpm               |  37 kB  00:00:00    
(8/12): perl-NetAddr-IP-4.069-3.el7.x86_64.rpm                  | 125 kB  00:00:00
(9/12): perl-Regexp-Assemble-0.35-11.el7.noarch.rpm             |  82 kB  00:00:00    
(10/12): perl-Switch-2.16-7.el7.noarch.rpm                      |  22 kB  00:00:00    
(11/12): perl-XML-Smart-1.79-1.el7.noarch.rpm                   |  84 kB  00:00:00    
(12/12): perl-Object-MultiType-0.05-18.el7.noarch.rpm           |  17 kB  00:00:01    
---------------------------------------------------------------------------------------
Total                                                     187 kB/s | 695 kB  00:03
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : perl-NetAddr-IP-4.069-3.el7.x86_64                                 1/12
Installing : perl-Data-Validate-IP-0.27-1.el7.noarch                            2/12
Installing : perl-Acme-Comment-1.04-1.el7.noarch                                3/12
Installing : perl-Object-MultiType-0.05-18.el7.noarch                           4/12
Installing : perl-XML-Smart-1.79-1.el7.noarch                                   5/12
Installing : perl-Switch-2.16-7.el7.noarch                                      6/12
Installing : perl-Regexp-Assemble-0.35-11.el7.noarch                            7/12
Installing : perl-Net-Domain-TLD-1.75-6.el7.noarch                              8/12
Installing : perl-Data-Validate-Domain-0.14-1.el7.noarch                        9/12
Installing : perl-Data-Validate-URI-0.07-1.el7.noarch                          10/12
Installing : perl-Data-Types-0.16-1.el7.noarch                                 11/12
Installing : nginx-owasp-crs-3.1.1-1.el7.noarch                                12/12
----------------------------------------------------------------------

The OWASP ModSecurity Core Rule Set for Nginx installed.
To enable these rules:

1. Ensure ModSecuritynginx module is loaded, e.g. in /etc/nginx/nginx.conf:

load_module modules/ngx_http_modsecurity.so; # <=  2.9
load_module modules/ngx_http_modsecurity_module.so; # >= 3.0

2. Enable ModSecurity in a site with:


    # ModSecurity<= 2.9
location / {
ModSecurityEnabled off;
ModSecurityConfigmodsec_includes.conf;
    }

    # ModSecurity>= 3.0
server {
modsecurity on;
location / {
modsecurity_rules_filemodsec_includes.conf;
        }
    }

3. Reload Nginx.

Please refer to the modules documentation for further details:
https://raw.githubusercontent.com/SpiderLabs/owasp-modsecurity-crs/v3.1.1/master/INSTALL

----------------------------------------------------------------------
Verifying  : perl-Data-Types-0.16-1.el7.noarch                                  1/12
Verifying  : perl-Net-Domain-TLD-1.75-6.el7.noarch                              2/12
Verifying  : perl-Regexp-Assemble-0.35-11.el7.noarch                            3/12
Verifying  : perl-Switch-2.16-7.el7.noarch                                      4/12
Verifying  : perl-Object-MultiType-0.05-18.el7.noarch                           5/12
Verifying  : perl-Data-Validate-Domain-0.14-1.el7.noarch                        6/12
Verifying  : perl-Data-Validate-URI-0.07-1.el7.noarch                           7/12
Verifying  : nginx-owasp-crs-3.1.1-1.el7.noarch                                 8/12
Verifying  : perl-Acme-Comment-1.04-1.el7.noarch                                9/12
Verifying  : perl-NetAddr-IP-4.069-3.el7.x86_64                                10/12
Verifying  : perl-XML-Smart-1.79-1.el7.noarch                                  11/12
Verifying  : perl-Data-Validate-IP-0.27-1.el7.noarch                           12/12

Installed:
nginx-owasp-crs.noarch 0:3.1.1-1.el7                                                 

Dependency Installed:
perl-Acme-Comment.noarch 0:1.04-1.el7                                               
perl-Data-Types.noarch 0:0.16-1.el7                                                 
perl-Data-Validate-Domain.noarch 0:0.14-1.el7                                        
perl-Data-Validate-IP.noarch 0:0.27-1.el7                                           
perl-Data-Validate-URI.noarch 0:0.07-1.el7                                          
perl-Net-Domain-TLD.noarch 0:1.75-6.el7                                              
perl-NetAddr-IP.x86_64 0:4.069-3.el7                                                
perl-Object-MultiType.noarch 0:0.05-18.el7                                          
perl-Regexp-Assemble.noarch 0:0.35-11.el7                                            
perl-Switch.noarch 0:2.16-7.el7                                                     
perl-XML-Smart.noarch 0:1.79-1.el7                                                  

Complete!

Comments