You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/index.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,40 @@ To check for security updates, go to [Security announcements for the Elastic sta
26
26
%
27
27
% ### Fixes [next-fixes]
28
28
29
+
## Next [next]
30
+
% **Release date:** Month day, year
31
+
32
+
### Features and enhancements [next-features-enhancements]
33
+
34
+
* Redact the `Cookie` HTTP request header by default, because it is often sensitive.
35
+
36
+
The `Cookie` pattern has been added to the [`sanitizeFieldNames`](/reference/configuration.md#sanitize-field-names) configuration variable. This means that when headers are captured (if `captureHeaders` is enabled, as it is by default), the `Cookie` header will be fully redacted:
37
+
38
+
```
39
+
http.request.headers.cookie: "[REDACTED]"
40
+
```
41
+
42
+
The result in earlier versions was to parse the Cookie header and redact only those fields that matched patterns in `sanitizeFieldNames`, for example:
0 commit comments