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
This change is useful because currently we are only able to obfuscate by providing name of the field without context about its location so for example we obfuscate all fields with name name instead of only obfuscating the /user/name
I'm not sure a JSON Pointer is the right tool here. A JSON Pointer will always uniquely identify a single node within the JSON tree. As soon as you have arrays you end up in a situation where you can't say something like /users/*/name.
I would like to propose a new change to allow to obfuscate json body fields by specifying a json pointer such as
/child/elem
Detailed Description
I am proposing a new change so that we can provide the following configuration
Which will obfuscate the following payload without issues
Into
Context
This change is useful because currently we are only able to obfuscate by providing name of the field without context about its location so for example we obfuscate all fields with name
name
instead of only obfuscating the/user/name
Possible Implementation
Changing the implementation of
JacksonJsonFieldBodyFilter::filter
to JacksonJsonFieldBodyFilter - L63Your Environment
The text was updated successfully, but these errors were encountered: