mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-22 19:23:31 +00:00
1b3effcb10
The function was using substring matching for sensitive param names, causing parameters like "extra_token" or "myapikey" to be incorrectly redacted when they matched "token=" or "apikey=" as substrings. Now checks for proper boundary characters (? or &) before matching, so only actual parameter names are redacted. Related to ADA knowledge entry: "Query param redaction uses substring matching"