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
The agent is redacting request headers based on SanitizeFieldNames config. This list of names contains set-cookie name but not cookie resulting in transactions with request cookies not being redacted. The agent must redact the cookies based on that config. Response headers are also currently not being sanitized.
Other agents like Java & Python are parsing the cookies into an object and place it in context.request.cookies which is accepted by the intake API then sanitization is applied for each cookie individually. The cookie header itself is removed or redacted (it varies from implementation)
The text was updated successfully, but these errors were encountered:
Edited by @stevejgordon.
The agent is redacting request headers based on SanitizeFieldNames config. This list of names contains
set-cookie
name but notcookie
resulting in transactions with request cookies not being redacted. The agent must redact the cookies based on that config. Response headers are also currently not being sanitized.Other agents like Java & Python are parsing the cookies into an object and place it in
context.request.cookies
which is accepted by the intake API then sanitization is applied for each cookie individually. The cookie header itself is removed or redacted (it varies from implementation)The text was updated successfully, but these errors were encountered: