metlo-labs / metlo

Metlo is an open-source API security platform.
https://metlo.com
MIT License
1.6k stars 91 forks source link

Feature Request: Add option to obsfucate PII #140

Closed dmdhrumilmistry closed 1 year ago

dmdhrumilmistry commented 1 year ago

Greetings Metlo Team,

Is it possible to store PII information in obfuscated form? This will ensure user privacy.

for example:

{
"other_params":"...",
"email":"random@domain.xyz",
"phone":"1234567890"
}

Obfuscated Form:

{
"other_params":"...",
"email":"raxxxxx@domxxx.xxx",
"phone":"xx3456xxxx"
}
NikhilShahi commented 1 year ago

Hi @dmdhrumilmistry , We do currently have an option to redact select fields so that they are instead stored as [REDACTED]. You can do this by editing the Metlo Config section in the Settings page. Here are the docs on how to do so: https://docs.metlo.com/docs/metlo-config

dmdhrumilmistry commented 1 year ago

ohh; @NikhilShahi thank you for the information