Giter VIP home page Giter VIP logo

masked's Issues

Code duplication

Hi. I've scrutinized your code and have notice several code block with similar code. For instance:

This method hides values from array https://github.com/fuko-php/masked/blob/master/src/Protect.php#L44 and you have also method hideValue that does the same work.
And your hideValues could look like this

public static function hideValues(array $values)
{
   foreach ($values as $value){
      self::hideValue($value);
   }
}

The same problem also is here: https://github.com/fuko-php/masked/blob/master/src/Protect.php#L185

foreach ($names as $name)
{
   self::hideInput($name, $type);
}

Detect escaped values for blacklisting

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

echo json_encode('password"'); // output is "password\""

Hide credit cards

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

Constant FILTER_SANITIZE_STRING is deprecated

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 be updated in the code.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.