Skip to content

Commit 098f7ba

Browse files
committed
fix: update known issues
Signed-off-by: Felipe Zipitria <[email protected]>
1 parent e2033c0 commit 098f7ba

File tree

2 files changed

+63
-68
lines changed

2 files changed

+63
-68
lines changed

content/deployment/problems.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

content/operation/known_issues.md

Lines changed: 63 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -7,64 +7,86 @@ chapter: false
77

88
> There are some *known issues* with CRS and some of its compatible WAF engines. This page describes these issues. Get in touch if you think something is missing.
99
10-
- There are still **false positives** for standard web applications in the default install (paranoia level 1). Please [report these on GitHub](https://github.com/coreruleset/coreruleset/issues/new/choose) if and when encountered.
10+
{{% notice warning %}}
11+
There are still **false positives** for standard web applications in the default install (paranoia level 1). Please [report these on GitHub](https://github.com/coreruleset/coreruleset/issues/new/choose) if and when encountered.
12+
{{% /notice %}}
1113

12-
False positives from paranoia level 2 and higher are considered to be less interesting, as it is expected that users will write exclusion rules for their alerts in the higher paranoia levels. Nevertheless, false positives from higher paranoia levels can still be reported and the CRS project will try to find a generic solution for them.
14+
👉 False positives from paranoia level 2 and higher are considered to be less interesting, as it is expected that users will write exclusion rules for their alerts in the higher paranoia levels. Nevertheless, false positives from higher paranoia levels can still be reported and the CRS project will try to find a generic solution for them.
1315

14-
- **Apache** may give an error on startup when the CRS is loaded:
16+
### AH00111: Config variable ${...} is not defined
1517

16-
```
17-
AH00111: Config variable ${[^} is not defined
18-
```
18+
**Apache** may give an error on startup when the CRS is loaded:
1919

20-
It appears that Apache tries to be smart by trying to evaluate a config variable. This notice should be a warning and can be safely ignored. The problem has been investigated and a solution has not been found yet.
20+
```
21+
AH00111: Config variable ${[^} is not defined
22+
```
2123

22-
- **ModSecurity 3.0.0-3.0.2** will give an error:
24+
It appears that Apache tries to be smart by trying to evaluate a config variable. This notice should be a warning and can be safely ignored. The problem has been investigated and a solution has not been found yet.
2325

24-
```
25-
Expecting an action, got: ctl:requestBodyProcessor=URLENCODED"`
26-
```
26+
### **ModSecurity 3.0.0-3.0.2** will give an error
2727

28-
Support for the URLENCODED body processor was only added in ModSecurity 3.0.3. To resolve this, upgrade to ModSecurity 3.0.3 or higher.
28+
```
29+
Expecting an action, got: ctl:requestBodyProcessor=URLENCODED"`
30+
```
2931

30-
- **Debian** releases up to and including Jessie lack YAJL/JSON support in ModSecurity. This causes the following error in the Apache ErrorLog or SecAuditLog:
32+
Support for the URLENCODED body processor was only added in ModSecurity 3.0.3. To resolve this, upgrade to ModSecurity 3.0.3 or higher.
3133

32-
```
33-
ModSecurity: JSON support was not enabled.
34-
```
34+
### Old Debian versions without YAJL
3535

36-
JSON support was enabled in Debian's package version 2.8.0-4 (Nov 2014). To resolve this, it is possible to either use `backports.debian.org` to install the latest ModSecurity
37-
release or to disable the rule with ID 200001.
36+
**Debian** releases up to and including Jessie lack YAJL/JSON support in ModSecurity. This causes the following error in the Apache ErrorLog or SecAuditLog:
3837

39-
- **Apache 2.4 prior to 2.4.11** is affected by a bug in parsing multi-line configuration directives, which causes Apache to fail during startup with an error such as:
38+
```
39+
ModSecurity: JSON support was not enabled.
40+
```
4041

41-
```plaintext
42-
Error parsing actions: Unknown action: \\
43-
Action 'configtest' failed.`
44-
```
42+
JSON support was enabled in Debian's package version 2.8.0-4 (Nov 2014). To resolve this, it is possible to either use `backports.debian.org` to install the latest ModSecurity
43+
release or to disable the rule with ID 200001.
4544

46-
This bug is known to plague RHEL/Centos 7 below v7.4 or httpd v2.4.6 release 67 and Ubuntu 14.04 LTS users. (The original bug report can be found at https://bz.apache.org/bugzilla/show_bug.cgi?id=55910\).
45+
### Apache 2.4 prior to 2.4.11 ###
4746

48-
It is advisable to upgrade an affected Apache version. If upgrading is not possible, the CRS project provides a script in the `util/join-multiline-rules` directory which converts the rules into a format that works around the bug. This script must be re-run whenever the CRS rules are modified or updated.
47+
Apache versions prior to 2.4.11 are affected by a bug in parsing multi-line configuration directives, which causes Apache to fail during startup with an error such as:
4948

50-
- As of CRS version 3.0.1, support has been added for the `application/soap+xml` MIME type by default, as specified in RFC 3902. **OF IMPORTANCE:** application/soap+xml is indicative that XML will be provided. In accordance with this, ModSecurity's XML request body processor should also be configured to support this MIME type. Within the ModSecurity project, [commit 5e4e2af](https://github.com/owasp-modsecurity/ModSecurity/commit/5e4e2af7a6f07854fee6ed36ef4a381d4e03960e) has been merged to support this endeavor. However, if running a modified or preexisting version of the modsecurity.conf file provided by this repository, it is a good idea to upgrade rule '200000' accordingly. The rule now appears as follows:
49+
```plaintext
50+
Error parsing actions: Unknown action: \\
51+
Action 'configtest' failed.`
52+
```
53+
54+
This bug is known to plague RHEL/Centos 7 below v7.4 or httpd v2.4.6 release 67 and Ubuntu 14.04 LTS users. (The original bug report can be found at <https://bz.apache.org/bugzilla/show_bug.cgi?id=55910\>).
55+
56+
By now you should not be using such an old web server. It is advisable to upgrade your Apache version. If upgrading is not possible, the CRS project provides a script in the `util/join-multiline-rules` directory which converts the rules into a format that works around the bug. This script must be re-run whenever the CRS rules are modified or updated.
57+
58+
### Support for `application/soap+xml`
59+
60+
As of CRS version 3.0.1, support has been added for the `application/soap+xml` MIME type by default, as specified in RFC 3902. **OF IMPORTANCE:** application/soap+xml is indicative that XML will be provided. In accordance with this, ModSecurity's XML request body processor should also be configured to support this MIME type. Within the ModSecurity project, [commit 5e4e2af](https://github.com/owasp-modsecurity/ModSecurity/commit/5e4e2af7a6f07854fee6ed36ef4a381d4e03960e) has been merged to support this endeavor. However, if running a modified or preexisting version of the modsecurity.conf file provided by this repository, it is a good idea to upgrade rule '200000' accordingly. The rule now appears as follows:
61+
62+
```
63+
SecRule REQUEST_HEADERS:Content-Type "(?:application(?:/soap\+|/)|text/)xml" \
64+
"id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML"
65+
```
66+
67+
### `SecDisableBackendCompression` not supported in libmodsecurity3
68+
69+
All versions of libmodsecurity3 [do not support](https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v3.x)#secdisablebackendcompression) the `SecDisableBackendCompression` directive at all ###
5170

52-
```
53-
SecRule REQUEST_HEADERS:Content-Type "(?:application(?:/soap\+|/)|text/)xml" \
54-
"id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML"
55-
```
56-
- **All versions of libmodsecurity3** [do not support](https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v3.x)#secdisablebackendcompression) the `SecDisableBackendCompression` directive at all.
5771
If Nginx is acting as a proxy and the backend supports any type of compression, if the client sends an `Accept-Encoding: gzip,deflate,...` or `TE` header, the backend will return the response in a compressed format. Because of this, the engine cannot verify the response. As a workaround, you need to override the `Accept-Encoding` and `TE` headers in the proxy:
5872

59-
```
60-
server {
61-
server_name foo.com;
73+
```nginx
74+
server {
75+
server_name foo.com;
76+
...
77+
location / {
78+
proxy_pass http://backend;
6279
...
63-
location / {
64-
proxy_pass http://backend;
65-
...
66-
proxy_set_header Accept-Encoding "";
67-
proxy_set_header TE "";
68-
}
80+
proxy_set_header Accept-Encoding "";
81+
proxy_set_header TE "";
6982
}
70-
```
83+
}
84+
```
85+
86+
### Anomaly Mode Doesn't Work
87+
88+
Sometimes on IIS or Nginx users run into an instance where anomaly mode doesn't work as expected. In fact upon careful inspection of logs one would notice that rules don't fire in the order we would expect. In general this is a result of using the `'*'` operator within these environments as it does not act the same way as in Apache. In general within both Apache and IIS one should expliticly include the various files present within the OWASP CRS instead of using the `'*'`.
89+
90+
### Webserver returns error after CRS install
91+
92+
This is likley due to a rule triggering. For instance in some cases a rule is enabled that prohibits access via an IP address. Depending on your [SecDefaultAction](<https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v2.x)#SecDefaultAction>) and [SecRuleEngine](<https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v2.x)#SecRuleEngine>) configurations, this may result in a redirect loop or a status code. If this is the problem you are experiencing you should consult your error.log (or event viewer for IIS). From this location you candetermine the offending rule and add an exception if neccessary see [false positives and tuning]({{< ref "../concepts/false_positives_tuning.md" >}}).

0 commit comments

Comments
 (0)