Skip to content

Latest commit

 

History

History
206 lines (165 loc) · 23.2 KB

README-containers.md

File metadata and controls

206 lines (165 loc) · 23.2 KB

ModSecurity Core Rule Set Docker Image

dockeri.co

Build Status GitHub issues GitHub PRs License

Full documentation

⚠️ We are limited to 25000 chars in the Docker Hub documentation. The full documentation is hosted on GitHub.

What is the Core Rule Set

The Core Rule Set (CRS) is a set of generic attack detection rules for use with ModSecurity or compatible web application firewalls.

Supported tags and respective Dockerfile links

  • 3-nginx-YYYYMMDDHHMM, 3.3-nginx-YYYYMMDDHHMM, 3.3.5-nginx-YYYYMMDDHHMM, nginx (master/nginx/Dockerfile) – last stable ModSecurity v3 on Nginx 1.25.3 official stable base image, and latest stable Core Rule Set 3.3.5
  • 3-apache-YYYYMMDDHHMM, 3.3-apache-YYYYMMDDHHMM, 3.3.5-apache-YYYYMMDDHHMM, apache (master/apache/Dockerfile) –last stable ModSecurity v2 on Apache 2.4.58 official stable base image, and latest stable Core Rule Set 3.3.5

🆕 We added healthchecks to the images. Containers already return HTTP status code 200 when accessing the /healthz URI. When a container has a healthcheck specified, it has a health status in addition to its normal status. This status is initially starting. Whenever a health check passes, it becomes healthy (whatever state it was previously in). After a certain number of consecutive failures, it becomes unhealthy. See https://docs.docker.com/engine/reference/builder/#healthcheck for more information.

Supported variants

We also build alpine linux variants of the base images, using the -alpine suffix. Examples:

  • 3-nginx-alpine-YYYYMMDDHHMM, 3.3-nginx-alpine-YYYYMMDDHHMM, 3.3.5-nginx-alpine-YYYYMMDDHHMM, nginx-alpine (master/nginx/Dockerfile-alpinelast stable ModSecurity v3 on Nginx 1.25.3 official alpine stable base image, and latest stable Core Rule Set 3.3.5
  • 3-apache-alpine-YYYYMMDDHHMM, 3.3-apache-alpine-YYYYMMDDHHMM, 3.3.5-apache-alpine-YYYYMMDDHHMM, apache-alpine (master/apache/Dockerfile-alpine) – last stable ModSecurity v2 on Apache 2.4.58 official alpine stable base image, and latest stable Core Rule Set 3.3.5

Production usage

⚠️ We changed tags to support production usage. Now, if you want to use the "rolling version", use tags owasp/modsecurity-crs:nginx or owasp/modsecurity-crs:apache, or if you want the alpine variant use owasp/modsecurity-crs:nginx-alpine or owasp/modsecurity-crs:apache-alpine. If you need a stable long term image, use the one with the full CRS version, the variant used (if any), and the build date in YYYYMMDDHHMM format, example owasp/modsecurity-crs:3.3.5-nginx-202209141209 or owasp/modsecurity-crs:3.3.5-apache-alpine-202209141209 for example. You have been warned.

Supported architectures

  • linux/amd64
  • linux/arm/v7
  • linux/arm64/v8
  • linux/i386

Quick reference

What is ModSecurity

See ModSecurity.

Nginx based images breaking change

⚠️ WARNING
Nginx based images are now based on upstream nginx. This changed the way the config file for nginx is generated.

If using the Nginx environment variables is not enough for your use case, you can mount your own nginx.conf file as the new template for generating the base config.

An example can be seen in the docker-compose file.

💬 What happens if I want to make changes in a different file, like /etc/nginx/conf.d/default.conf? You mount your local file, e.g. nginx/default.conf as the new template: /etc/nginx/templates/conf.d/default.conf.template. You can do this similarly with other files. Files in the templates directory will be copied and subdirectories will be preserved.

Common ENV Variables

These variables are common to image variants and will set defaults based on the image name.

Name Description
ACCESSLOG Location of the custom log file (Default: /var/log/apache2/access.log and /var/log/nginx/access.log)
BACKEND Partial URL for the remote server of the ProxyPass and proxy_pass directive (Default: http://localhost:80)
ERRORLOG Location of the error log file (Default: /proc/self/fd/2)
LOGLEVEL Number of messages logged to the error_log (Default: warn)
METRICS_ALLOW_FROM a single range of IP adresses that can access the metrics (Default: 127.0.0.0/24 and 127.0.0.0/255.0.0.0 ::1/128)
METRICS_DENY_FROM a range of IP adresses that cannot access the metrics (Default: all and All)
PORT An int value indicating the port where the webserver is listening to (Default: 80)
PROXY_SSL_CERT Path to the server PEM-encoded X.509 certificate data file or token identifier (Default: /usr/local/apache2/conf/server.crt and /etc/nginx/conf/server.crt)
PROXY_SSL_CERT_KEY Path to the server PEM-encoded private key file (Default: /etc/nginx/conf/server.key and /usr/local/apache2/conf/server.key)
PROXY_SSL_VERIFY Type of remote server Certificate verification (Default: none and off)
SSL_PORT Port number where the SSL enabled webserver is listening (Default: 443)
TIMEOUT Number of seconds before receiving and sending timeout (Default: 60)

Apache ENV Variables

Name Description
APACHE_ALWAYS_TLS_REDIRECT if http should redirect to https (Allowed values: on, off. Default: off)
APACHE_LOGFORMAT The LogFormat that apache should use. (Default: '"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""' (combined). Tip: use single quotes outside your double quoted format string.) ⚠️ Do not add a `
APACHE_METRICS_LOGFORMAT The LogFormat that the additional log apache metrics should use. (Default:'"%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-agent}i""' (combined). Tip: use single quotes outside your double quoted format string.) ⚠️ Do not add a `
BACKEND_WS The IP/URL of the WebSocket service (Default: ws://localhost:8080)
H2_PROTOCOLS Protocols supported by the HTTP2 module (Default: h2 http/1.1)
METRICSLOG Path of the metrics log (Default: /dev/null)
MUTEX Configure mutex and lock file directory for all specified mutexes (see Mutex) (Default: default)
PROXY_ERROR_OVERRIDE that errors from the backend services should be overridden by this proxy server (see ProxyErrorOverride directive). (Allowed values: on, off. Default: on)
PROXY_PRESERVE_HOST Use of incoming Host HTTP request header for proxy request (Default: on)
PROXY_SSL_CHECK_PEER_NAME if the host name checking for remote server certificates is to be enabled (Default: on)
PROXY_SSL A string with SSL Proxy Engine Operation Switch (Default: off)
PROXY_TIMEOUT Number of seconds for proxied requests to time out (Default: 60)
REMOTEIP_INT_PROXY Client intranet IP addresses trusted to present the RemoteIPHeader value (Default: 10.1.0.0/16)
REQ_HEADER_FORWARDED_PROTO Transfer protocol of the initial request (Default: https)
SERVER_ADMIN Address where problems with the server should be e-mailed (Default: root@localhost)
SERVER_NAME Server name (Default: localhost)
SSL_CIPHER_SUITE Cipher suite to use. Uses OpenSSL list of cipher suites (Default: "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"
SSL_ENGINE The SSL Engine Operation Switch (Default: on)
SSL_HONOR_CIPHER_ORDER if the server should honor the cipher list provided by the client (Allowed values: on, off. Default: off)
SSL_PROTOCOL A string for configuring the usable SSL/TLS protocol versions (Default: "all -SSLv3 -TLSv1 -TLSv1.1")
SSL_PROXY_PROTOCOL A string for configuring the proxy client SSL/TLS protocol versions (Default: "all -SSLv3 -TLSv1 -TLSv1.1")
SSL_PROXY_CIPHER_SUITE Cipher suite to connect to the backend via TLS. (Default "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"
SSL_SESSION_TICKETS A string to enable or disable the use of TLS session tickets (RFC 5077). (Default: off)
SSL_USE_STAPLING if OSCP Stapling should be used (Allowed values: on, off. Default: on)
WORKER_CONNECTIONS Maximum number of MPM request worker processes (Default: 400)

Note: Apache access and metric logs can be disabled by exporting the nologging=1 environment variable, or using ACCESSLOG=/dev/null and METRICSLOG=/dev/null.

Nginx ENV Variables

Name Description
DNS_SERVER Name servers used to resolve names of upstream servers into addresses. For localhost backend this value should not be defined (Default: not defined)
METRICSLOG Location of metrics log file (Default: /dev/null)
NGINX_ALWAYS_TLS_REDIRECT if http should redirect to https (Allowed values: on, off. Default: off)
SET_REAL_IP_FROM A string of comma separated IP, CIDR, or UNIX domain socket addresses that are trusted to replace addresses in REAL_IP_HEADER (Default: 127.0.0.1). See set_real_ip_from
REAL_IP_HEADER Name of the header containing the real IP value(s) (Default: X-REAL-IP). See real_ip_header
REAL_IP_PROXY_HEADER Name of the header containing $remote_addr to be passed to proxy (Default: X-REAL-IP). See proxy_set_header
REAL_IP_RECURSIVE whether to use recursive reaplacement on addresses in REAL_IP_HEADER (Allowed values: on, off. Default: on). See real_ip_recursive
PROXY_SSL_CIPHERS A String value indicating the enabled ciphers. The ciphers are specified in the format understood by the OpenSSL library. (Default: ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
PROXY_SSL_DH_BITS A numeric value indicating the size (in bits) to use for the generated DH-params file (Default 2048)
PROXY_SSL_OCSP_STAPLING if ssl_stapling and ssl_stapling_verify should be enabled (Allowed values: on, off. Default: off)
PROXY_SSL_PREFER_CIPHERS if the server ciphers should be preferred over client ciphers when using the SSLv3 and TLS protocols (Allowed values: on, off. Default: off)
PROXY_SSL_PROTOCOLS Ssl protocols to enable (default: TTLSv1.2 TLSv1.3)
PROXY_TIMEOUT Number of seconds for proxied requests to time out connections (Default: 60s)
WORKER_CONNECTIONS Maximum number of simultaneous connections that can be opened by a worker process (Default: 1024)

ModSecurity ENV Variables

All these variables impact in configuration directives in the modsecurity engine running inside the container.

Name Description
MODSEC_AUDIT_ENGINE A string used to configure the audit engine, which logs complete transactions (Default: RelevantOnly). Accepted values: On, Off, RelevantOnly. See SecAuditEngine for additional information.
MODSEC_AUDIT_LOG Path to the main audit log file or the concurrent logging index file (Default: /dev/stdout)
MODSEC_AUDIT_LOG_FORMAT Output format of the AuditLogs (Default: JSON). Accepted values: JSON, Native. See SecAuditLogFormat for additional information.
MODSEC_AUDIT_LOG_TYPE Type of audit logging mechanism to be used (Default: Serial). Accepted values: Serial, Concurrent (HTTPS works only on Nginx - v3). See SecAuditLogType for additional information.
MODSEC_AUDIT_LOG_PARTS A string that defines which parts of each transaction are going to be recorded in the audit log (Default: 'ABIJDEFHZ'). See SecAuditLogParts for the accepted values.
MODSEC_AUDIT_STORAGE Directory where concurrent audit log entries are to be stored (Default: /var/log/modsecurity/audit/)
MODSEC_DATA_DIR Path where persistent data (e.g., IP address data, session data, and so on) is to be stored (Default: /tmp/modsecurity/data)
MODSEC_DEBUG_LOG Path to the ModSecurity debug log file (Default: /dev/null)
MODSEC_DEBUG_LOGLEVEL An int indicating the verboseness of the debug log data (Default: 0). Accepted values: 0 - 9. See SecDebugLogLevel.
MODSEC_DISABLE_BACKEND_COMPRESSION whether or not to disable backend compression (Default: On). Allowed values: On, Off. See SecDisableBackendCompression for more. Only supported in ModSecurity 2.x, will have not effect on 3.x
MODSEC_PCRE_MATCH_LIMIT An int value indicating the limit for the number of internal executions in the PCRE function (Default: 100000) (Only valid for Apache - v2). See SecPcreMatchLimit
MODSEC_PCRE_MATCH_LIMIT_RECURSION An int value indicating the limit for the depth of recursion when calling PCRE function (Default: 100000)
MODSEC_REQ_BODY_ACCESS A string allowing ModSecurity to access request bodies (Default: On). Allowed values: On, Off. See SecRequestBodyAccess for more information.
MODSEC_REQ_BODY_LIMIT An int value indicating the maximum request body size accepted for buffering (Default: 13107200). See SecRequestBodyLimit for additional information.
MODSEC_REQ_BODY_LIMIT_ACTION A string for the action when SecRequestBodyLimit is reached (Default: Reject). Accepted values: Reject, ProcessPartial. See SecRequestBodyLimitAction for additional information.
MODSEC_REQ_BODY_JSON_DEPTH_LIMIT An int value indicating the maximun JSON request depth (Default: 512). See SecRequestBodyJsonDepthLimit for additional information.
MODSEC_REQ_BODY_NOFILES_LIMIT An int indicating the maximum request body size ModSecurity will accept for buffering (Default: 131072). See SecRequestBodyNoFilesLimit for more information.
MODSEC_RESP_BODY_ACCESS A string allowing ModSecurity to access response bodies (Default: On). Allowed values: On, Off. See SecResponseBodyAccess for more information.
MODSEC_RESP_BODY_LIMIT An int value indicating the maximum response body size accepted for buffering (Default: 1048576)
MODSEC_RESP_BODY_LIMIT_ACTION A string for the action when SecResponseBodyLimit is reached (Default: ProcessPartial). Accepted values: Reject, ProcessPartial. See SecResponseBodyLimitAction for additional information.
MODSEC_RESP_BODY_MIMETYPE List of mime types that will be analyzed in the response (Default: 'text/plain text/html text/xml'). You might consider adding application/json documented here.
MODSEC_RULE_ENGINE A string enabling ModSecurity itself (Default: On). Accepted values: On, Off, DetectionOnly. See SecRuleEngine for additional information.
MODSEC_STATUS_ENGINE A string used to configure the status engine, which sends statistical information (Default: Off). Accepted values: On, Off. See SecStatusEngine for additional information.
MODSEC_TAG Default tag action, which will be inherited by the rules in the same configuration context (Default: modsecurity)
MODSEC_TMP_DIR Path where temporary files will be created (Default: /tmp/modsecurity/tmp)
MODSEC_TMP_SAVE_UPLOADED_FILES if temporary uploaded files are saved (Default: On) (only relevant in Apache - ModSecurity v2)
MODSEC_UPLOAD_DIR Path where intercepted files will be stored (Default: /tmp/modsecurity/upload)
MODSEC_DEFAULT_PHASE1_ACTION ModSecurity string with the contents for the default action in phase 1 (Default: 'phase:1,log,auditlog,pass,tag:\'\${MODSEC_TAG}\'')
MODSEC_DEFAULT_PHASE2_ACTION ModSecurity string with the contents for the default action in phase 2 (Default: 'phase:2,log,auditlog,pass,tag:\'\${MODSEC_TAG}\'')

Overridden

Name Description
BACKEND Backend address (and optional port) of the backend server. (Default: the container's default router, port 81) (Examples: 192.0.2.2, 192.0.2.2:80, http://172.17.0.1:8000)

CRS specific

Name Description
MANUAL_MODE A bool indicating that you are providing your own crs-setup.conf file mounted as volume. (Default: 0). ⚠️ None of the following variables are used if you set it to 1.
CRS_DISABLE_PLUGINS A bool indicating whether plugins will be disabled (Only from v4 and up. Default: 0)
PARANOIA An int indicating the paranoia level (Default: 1)
BLOCKING_PARANOIA (:new: Replaces PARANOIA in CRSv4) An int indicating the paranoia level (Default: 1)
EXECUTING_PARANOIA An int indicating the executing_paranoia_level (Default: PARANOIA)
DETECTION_PARANOIA (:new: Replaces EXECUTING_PARANOIA in CRSv4) An int indicating the detection_paranoia_level (Default: BLOCKING_PARANOIA)
ENFORCE_BODYPROC_URLENCODED A bool indicating the enforce_bodyproc_urlencoded (Default: 0)
VALIDATE_UTF8_ENCODING A bool indicating the crs_validate_utf8_encoding (Default: 0)
ANOMALY_INBOUND An int indicating the inbound_anomaly_score_threshold (Default: 5)
ANOMALY_OUTBOUND An int indicating the outbound_anomaly_score_threshold (Default: 4)
ALLOWED_METHODS Allowed_methods (Default: GET HEAD POST OPTIONS)
ALLOWED_REQUEST_CONTENT_TYPE Allowed_request_content_type (Default: |application/x-www-form-urlencoded| |multipart/form-data| |multipart/related| |text/xml| |application/xml| |application/soap+xml| |application/json| |application/cloudevents+json| |application/cloudevents-batch+json|)
ALLOWED_REQUEST_CONTENT_TYPE_CHARSET Allowed_request_content_type_charset (Default: utf-8|iso-8859-1|iso-8859-15|windows-1252)
ALLOWED_HTTP_VERSIONS Allowed_http_versions (Default: HTTP/1.0 HTTP/1.1 HTTP/2 HTTP/2.0)
RESTRICTED_EXTENSIONS Restricted_extensions (Default: .asa/ .asax/ .ascx/ .axd/ .backup/ .bak/ .bat/ .cdx/ .cer/ .cfg/ .cmd/ .com/ .config/ .conf/ .cs/ .csproj/ .csr/ .dat/ .db/ .dbf/ .dll/ .dos/ .htr/ .htw/ .ida/ .idc/ .idq/ .inc/ .ini/ .key/ .licx/ .lnk/ .log/ .mdb/ .old/ .pass/ .pdb/ .pol/ .printer/ .pwd/ .rdb/ .resources/ .resx/ .sql/ .swp/ .sys/ .vb/ .vbs/ .vbproj/ .vsdisco/ .webinfo/ .xsd/ .xsx/)
RESTRICTED_HEADERS Restricted_headers (Default: /accept-charset/ /content-encoding/ /proxy/ /lock-token/ /content-range/ /if/)
STATIC_EXTENSIONS Static_extensions (Default: /.jpg/ /.jpeg/ /.png/ /.gif/ /.js/ /.css/ /.ico/ /.svg/ /.webp/)
MAX_NUM_ARGS An int indicating the max_num_args (Default: unlimited)
ARG_NAME_LENGTH An int indicating the arg_name_length (Default: unlimited)
ARG_LENGTH An int indicating the arg_length (Default: unlimited)
TOTAL_ARG_LENGTH An int indicating the total_arg_length (Default: unlimited)
MAX_FILE_SIZE An int indicating the max_file_size (Default: unlimited)
COMBINED_FILE_SIZES An int indicating the combined_file_sizes (Default: unlimited)
CRS_ENABLE_TEST_MARKER A bool indicating whether to write test markers to the log file (Used for running the CRS test suite. Default: 0)