masked icon indicating copy to clipboard operation
masked copied to clipboard

Mask sensitive data: replace blacklisted elements with redacted values

Results 4 masked issues
Sort by recently updated
recently updated
newest added

the use of `FILTER_SANITIZE_STRING` is deprecated since PHP 8.1.0. this is used twice in `fuko-php/masked/src/Masked/Redact.php` on line `107` and `109`. the use of `htmlspecialchars()` instead is encouraged. This needs to...

Detecting credit card numbers is relatively easy. It will be a great addition if they are detected as sensitive data without any declaration and properly masked/redacted

If the sensitive data contains special chars, in some occasions they are going to be escaped, and `Protect::protectScalar()` is not going to detect them. For example quotes in JSON ```php...

Switching to mb functions to support more languages.