Data Sanitization
Sanitizing sensitive information in payloads, responses, and headers
Overview
Default Behavior
password, secret, passwd, api_key, apikey, access_token, auth, credentials, mysql_pwd,
stripetoken, cardnumberauthorization, auth, auth-token{
"user": { // Level 1
"details": { // Level 2
"password": "secret123" // Will be scrubbed
},
"preferences": { // Level 2
"settings": { // Level 3
"api_key": "xyz123" // Won't be scrubbed
}
}
}
}How sanitization works
Example
Last updated