Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: owasp-modsecurity/ModSecurity-nginx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: owasp-modsecurity/ModSecurity-nginx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 5,182 additions and 339 deletions.
  1. +9 −0 .editorconfig
  2. +1,712 −0 .github/nginx/docs/data50k.json
  3. BIN .github/nginx/docs/plugged.png
  4. +89 −0 .github/nginx/mime.types
  5. +291 −0 .github/nginx/modsecurity.conf
  6. +78 −0 .github/nginx/nginx.conf
  7. +96 −0 .github/nginx/unicode.mapping
  8. +19 −0 .github/workflows/stale.yml
  9. +251 −0 .github/workflows/test.yml
  10. +4 −4 .travis.yml
  11. +64 −0 CHANGES
  12. +140 −56 README.md
  13. +71 −19 config
  14. +35 −34 src/ngx_http_modsecurity_body_filter.c
  15. +45 −8 src/ngx_http_modsecurity_common.h
  16. +27 −18 src/ngx_http_modsecurity_header_filter.c
  17. +12 −5 src/ngx_http_modsecurity_log.c
  18. +267 −126 src/ngx_http_modsecurity_module.c
  19. +28 −10 src/ngx_http_modsecurity_pre_access.c
  20. +46 −12 src/ngx_http_modsecurity_rewrite.c
  21. +8 −6 tests/modsecurity-config-auditlog.t
  22. +174 −0 tests/modsecurity-config-custom-error-page.t
  23. +231 −0 tests/modsecurity-config-merge.t
  24. +4 −4 tests/modsecurity-config.t
  25. +205 −0 tests/modsecurity-h2.t
  26. +287 −0 tests/modsecurity-proxy-h2.t
  27. +13 −12 tests/modsecurity-proxy.t
  28. +224 −0 tests/modsecurity-request-body-h2.t
  29. +98 −9 tests/modsecurity-request-body.t
  30. +1 −1 tests/modsecurity-response-body.t
  31. +2 −2 tests/modsecurity-scoring.t
  32. +167 −0 tests/modsecurity-transaction-id.t
  33. +34 −13 tests/modsecurity.t
  34. +195 −0 win32/README.md
  35. +161 −0 win32/docker/Dockerfile
  36. +17 −0 win32/docker/InstallBuildTools.cmd
  37. +6 −0 win32/docker/build-nginx-bootstrap.bat
  38. +51 −0 win32/docker/build-nginx.sh
  39. +20 −0 win32/docker/git.inf
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
indent_style = space
indent_size = 4

Loading