[PR #84] [MERGED] Add support for new AppSec feature in CrowdSec plugin and update Coraza #88

Closed
opened 2026-03-02 02:59:52 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bunkerity/bunkerweb-plugins/pull/84
Author: @TheophileDiot
Created: 6/28/2024
Status: Merged
Merged: 7/22/2024
Merged by: @fl0ppy-d1sk

Base: mainHead: dev


📝 Commits (10+)

  • 3520b53 deps/gha: bump github/codeql-action from 3.25.4 to 3.25.5
  • 25c6548 Merge pull request #72 from bunkerity/dependabot/github_actions/dev/github/codeql-action-3.25.5
  • c5a3821 deps/gha: bump actions/checkout from 4.1.5 to 4.1.6
  • e564848
  • 0fd1ebf Merge pull request #73 from bunkerity/dependabot/github_actions/dev/actions/checkout-4.1.6
  • 37444a1 Merge pull request #74 from bunkerity/dependabot/github_actions/dev/github/codeql-action-3.25.6
  • 488286d deps/gha: bump docker/login-action from 3.1.0 to 3.2.0
  • 89b60a5 deps/gha: bump actions/checkout from 4.1.6 to 4.1.7
  • 8a8cdc5 deps/gha: bump github/codeql-action from 3.25.6 to 3.25.10
  • 7c8a050 deps/coraza/api: bump github.com/corazawaf/coraza/v3 in /coraza/api

📊 Changes

60 files changed (+850 additions, -573 deletions)

View changed files

📝 .github/workflows/codeql.yml (+3 -3)
📝 .github/workflows/tests.yml (+7 -4)
📝 .gitignore (+1 -1)
📝 .pre-commit-config.yaml (+8 -8)
📝 .tests/clamav/docker-compose.yml (+2 -2)
📝 .tests/coraza.sh (+1 -0)
📝 .tests/coraza/docker-compose.yml (+2 -2)
📝 .tests/crowdsec.sh (+33 -16)
.tests/crowdsec/appsec.yaml (+5 -0)
📝 .tests/crowdsec/docker-compose.yml (+5 -3)
📝 .tests/virustotal.sh (+1 -0)
📝 .tests/virustotal/docker-compose.yml (+2 -2)
📝 README.md (+4 -4)
📝 clamav/README.md (+11 -11)
📝 clamav/clamav.lua (+23 -23)
📝 clamav/plugin.json (+1 -1)
📝 clamav/ui/actions.py (+3 -2)
📝 clamav/ui/template.html (+14 -9)
📝 coraza/README.md (+25 -25)
📝 coraza/api/Dockerfile (+20 -10)

...and 40 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bunkerity/bunkerweb-plugins/pull/84 **Author:** [@TheophileDiot](https://github.com/TheophileDiot) **Created:** 6/28/2024 **Status:** ✅ Merged **Merged:** 7/22/2024 **Merged by:** [@fl0ppy-d1sk](https://github.com/fl0ppy-d1sk) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`3520b53`](https://github.com/bunkerity/bunkerweb-plugins/commit/3520b534dd6c1080e34d9f76ce6ffcebe9861718) deps/gha: bump github/codeql-action from 3.25.4 to 3.25.5 - [`25c6548`](https://github.com/bunkerity/bunkerweb-plugins/commit/25c65485c5dcb3c0d01c0e4b3abf66110c073a63) Merge pull request #72 from bunkerity/dependabot/github_actions/dev/github/codeql-action-3.25.5 - [`c5a3821`](https://github.com/bunkerity/bunkerweb-plugins/commit/c5a3821c734a9bd28a7ccec489c866793ab2f8fa) deps/gha: bump actions/checkout from 4.1.5 to 4.1.6 - [`e564848`](https://github.com/bunkerity/bunkerweb-plugins/commit/e564848db4a5240747e8b8f735d3e02c38538589) - [`0fd1ebf`](https://github.com/bunkerity/bunkerweb-plugins/commit/0fd1ebf214689c6f046d07bc5b268d9337ebe5e7) Merge pull request #73 from bunkerity/dependabot/github_actions/dev/actions/checkout-4.1.6 - [`37444a1`](https://github.com/bunkerity/bunkerweb-plugins/commit/37444a123e015122218542800b94b23d5deb4e10) Merge pull request #74 from bunkerity/dependabot/github_actions/dev/github/codeql-action-3.25.6 - [`488286d`](https://github.com/bunkerity/bunkerweb-plugins/commit/488286d6f204301c82f10531ce4ba4146793a61c) deps/gha: bump docker/login-action from 3.1.0 to 3.2.0 - [`89b60a5`](https://github.com/bunkerity/bunkerweb-plugins/commit/89b60a5d3bcc03804402c8c0fe5304c3fa83dfff) deps/gha: bump actions/checkout from 4.1.6 to 4.1.7 - [`8a8cdc5`](https://github.com/bunkerity/bunkerweb-plugins/commit/8a8cdc5894230726ff2eeaedffae202ea90fe74f) deps/gha: bump github/codeql-action from 3.25.6 to 3.25.10 - [`7c8a050`](https://github.com/bunkerity/bunkerweb-plugins/commit/7c8a0506397e6195af1212c9b5e137df97298b32) deps/coraza/api: bump github.com/corazawaf/coraza/v3 in /coraza/api ### 📊 Changes **60 files changed** (+850 additions, -573 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/codeql.yml` (+3 -3) 📝 `.github/workflows/tests.yml` (+7 -4) 📝 `.gitignore` (+1 -1) 📝 `.pre-commit-config.yaml` (+8 -8) 📝 `.tests/clamav/docker-compose.yml` (+2 -2) 📝 `.tests/coraza.sh` (+1 -0) 📝 `.tests/coraza/docker-compose.yml` (+2 -2) 📝 `.tests/crowdsec.sh` (+33 -16) ➕ `.tests/crowdsec/appsec.yaml` (+5 -0) 📝 `.tests/crowdsec/docker-compose.yml` (+5 -3) 📝 `.tests/virustotal.sh` (+1 -0) 📝 `.tests/virustotal/docker-compose.yml` (+2 -2) 📝 `README.md` (+4 -4) 📝 `clamav/README.md` (+11 -11) 📝 `clamav/clamav.lua` (+23 -23) 📝 `clamav/plugin.json` (+1 -1) 📝 `clamav/ui/actions.py` (+3 -2) 📝 `clamav/ui/template.html` (+14 -9) 📝 `coraza/README.md` (+25 -25) 📝 `coraza/api/Dockerfile` (+20 -10) _...and 40 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 02:59:52 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/bunkerweb-plugins#88
No description provided.