├── .bazelrc ├── .circleci └── config.yml ├── .dockerignore ├── .gitattributes ├── .gitignore ├── .gitmodules ├── BUILD ├── LICENSE ├── README.md ├── WORKSPACE ├── ci ├── Dockerfile-envoy-image ├── README.md ├── WORKSPACE.filter.example ├── build_container │ ├── Dockerfile-centos │ ├── Dockerfile-ubuntu │ ├── build_container_modsecurity_ubuntu.sh │ └── docker_build.sh ├── do_ci.sh ├── do_envoy_ci.sh ├── docker-entrypoint.sh ├── docker_build.sh └── run_envoy_docker.sh ├── conf ├── envoy-modsecurity-example-lds.yaml ├── envoy-modsecurity-example.yaml ├── lds.yaml ├── modsecurity.conf ├── modsecurity.v3.0.3.conf └── unicode.mapping ├── http-filter-modsecurity ├── BUILD ├── README.md ├── http_filter.cc ├── http_filter.h ├── http_filter.proto ├── http_filter_config.cc ├── http_filter_integration_test.cc ├── utility.cc ├── utility.h ├── webhook_fetcher.cc ├── webhook_fetcher.h └── well_known_names.h └── modsecurity ├── include └── libmodsecurity.a /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/.bazelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .cache 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/WORKSPACE -------------------------------------------------------------------------------- /ci/Dockerfile-envoy-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/Dockerfile-envoy-image -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/WORKSPACE.filter.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/WORKSPACE.filter.example -------------------------------------------------------------------------------- /ci/build_container/Dockerfile-centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/build_container/Dockerfile-centos -------------------------------------------------------------------------------- /ci/build_container/Dockerfile-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/build_container/Dockerfile-ubuntu -------------------------------------------------------------------------------- /ci/build_container/build_container_modsecurity_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/build_container/build_container_modsecurity_ubuntu.sh -------------------------------------------------------------------------------- /ci/build_container/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/build_container/docker_build.sh -------------------------------------------------------------------------------- /ci/do_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/do_ci.sh -------------------------------------------------------------------------------- /ci/do_envoy_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/do_envoy_ci.sh -------------------------------------------------------------------------------- /ci/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/docker-entrypoint.sh -------------------------------------------------------------------------------- /ci/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/docker_build.sh -------------------------------------------------------------------------------- /ci/run_envoy_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/ci/run_envoy_docker.sh -------------------------------------------------------------------------------- /conf/envoy-modsecurity-example-lds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/conf/envoy-modsecurity-example-lds.yaml -------------------------------------------------------------------------------- /conf/envoy-modsecurity-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/conf/envoy-modsecurity-example.yaml -------------------------------------------------------------------------------- /conf/lds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/conf/lds.yaml -------------------------------------------------------------------------------- /conf/modsecurity.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/conf/modsecurity.conf -------------------------------------------------------------------------------- /conf/modsecurity.v3.0.3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/conf/modsecurity.v3.0.3.conf -------------------------------------------------------------------------------- /conf/unicode.mapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/conf/unicode.mapping -------------------------------------------------------------------------------- /http-filter-modsecurity/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/BUILD -------------------------------------------------------------------------------- /http-filter-modsecurity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/README.md -------------------------------------------------------------------------------- /http-filter-modsecurity/http_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/http_filter.cc -------------------------------------------------------------------------------- /http-filter-modsecurity/http_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/http_filter.h -------------------------------------------------------------------------------- /http-filter-modsecurity/http_filter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/http_filter.proto -------------------------------------------------------------------------------- /http-filter-modsecurity/http_filter_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/http_filter_config.cc -------------------------------------------------------------------------------- /http-filter-modsecurity/http_filter_integration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/http_filter_integration_test.cc -------------------------------------------------------------------------------- /http-filter-modsecurity/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/utility.cc -------------------------------------------------------------------------------- /http-filter-modsecurity/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/utility.h -------------------------------------------------------------------------------- /http-filter-modsecurity/webhook_fetcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/webhook_fetcher.cc -------------------------------------------------------------------------------- /http-filter-modsecurity/webhook_fetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/webhook_fetcher.h -------------------------------------------------------------------------------- /http-filter-modsecurity/well_known_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/ModSecurity-envoy/HEAD/http-filter-modsecurity/well_known_names.h -------------------------------------------------------------------------------- /modsecurity/include: -------------------------------------------------------------------------------- 1 | ../../ModSecurity/headers -------------------------------------------------------------------------------- /modsecurity/libmodsecurity.a: -------------------------------------------------------------------------------- 1 | ../../ModSecurity/src/.libs/libmodsecurity.a --------------------------------------------------------------------------------