
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
A distributed maintained collection of patterns that indicate that something probably is secret
A distributed maintained collection of patterns that indicate that something probably is secret.
This is useful if you want to filter sensitive values in a data set.
This module uses a very simple algorithm that will not catch everthing. Use at your own risk.
npm install is-secret --save
var isSecret = require('is-secret')
var data = {
username: 'watson',
password: 'f8bY2fg8',
card: '1234 1234 1234 1234' // credit card number
}
Object.keys(data).forEach(function (key) {
if (isSecret.key(key) ||
isSecret.value(data[key])) data[key] = '********'
})
console.log(data)
// {
// username: 'watson',
// password: '********',
// card: '********'
// }
If you need functionality similar to what is shown in this example, I suggest you take a look at the redact-secrets module.
secret.key(string)Validates the given string against a list of key names known to
typically indicate secret data.
Returns true if the string is considered secret. Otherwise false.
secret.value(string)Validates the given string against a list of patterns that indicates
secret data.
Returns true if the string is considered secret. Otherwise false.
FAQs
A distributed maintained collection of patterns that indicate that something probably is secret
We found that is-secret demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.