From 381c9ed26313b73455000d4ef3326b89285ad448 Mon Sep 17 00:00:00 2001 From: Xhoenix <86168235+Xhoenix@users.noreply.github.com> Date: Thu, 4 Jun 2026 16:02:12 +0530 Subject: [PATCH 1/2] fix: `early_blocking` typo --- content/2-how-crs-works/2-1-anomaly_scoring/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/2-how-crs-works/2-1-anomaly_scoring/index.md b/content/2-how-crs-works/2-1-anomaly_scoring/index.md index 3ee0a0c9..06723475 100644 --- a/content/2-how-crs-works/2-1-anomaly_scoring/index.md +++ b/content/2-how-crs-works/2-1-anomaly_scoring/index.md @@ -212,7 +212,7 @@ If early blocking is not enabled, there's a chance that the web server will inte #### Enabling the Early Blocking Option -If using a native CRS installation on a web application firewall, the early blocking option can be enabled in the file `crs-setup.conf`. This is done by uncommenting rule 900120, which sets the variable `tx.blocking_early` to 1 in order to enable early blocking. CRS otherwise gives this variable a default value of 0, meaning that early blocking is disabled by default. +If using a native CRS installation on a web application firewall, the early blocking option can be enabled in the file `crs-setup.conf`. This is done by uncommenting rule 900120, which sets the variable `tx.early_blocking` to 1 in order to enable early blocking. CRS otherwise gives this variable a default value of 0, meaning that early blocking is disabled by default. ```apache SecAction \ From 7b7ea55d6df2e94b0e864240601db124a1d9b0e6 Mon Sep 17 00:00:00 2001 From: Xhoenix <86168235+Xhoenix@users.noreply.github.com> Date: Thu, 4 Jun 2026 16:06:50 +0530 Subject: [PATCH 2/2] fix typo --- content/2-how-crs-works/2-1-anomaly_scoring/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/2-how-crs-works/2-1-anomaly_scoring/index.md b/content/2-how-crs-works/2-1-anomaly_scoring/index.md index 06723475..74048266 100644 --- a/content/2-how-crs-works/2-1-anomaly_scoring/index.md +++ b/content/2-how-crs-works/2-1-anomaly_scoring/index.md @@ -221,7 +221,7 @@ SecAction \ nolog,\ pass,\ t:none,\ - setvar:tx.blocking_early=1" + setvar:tx.early_blocking=1" ``` If running CRS where it has been integrated into a commercial product or CDN then support for the early blocking option varies. Some vendors may allow it to be enabled through the GUI, through a custom rule, or they might not allow it to be enabled at all.