Deep Redact
Faster than Fast Redact 1 as well as being safer and more configurable than many other redaction solutions,
Deep Redact is a zero-dependency tool that redacts sensitive information from strings and objects. It is designed to be
used in a production environment where sensitive information needs to be redacted from logs, error messages, files,
and other outputs.
Circular references and other unsupported values are handled gracefully, and the library is designed to be as fast as
possible while still being easy to use and configure.
Supporting both CommonJS and ESM, with named and default exports, Deep Redact is designed to be versatile and easy to
use in any modern JavaScript or TypeScript project in Node or the browser.
Installation
npm install @hackylabs/deep-redact
Usage
In order to maintain a consistent usage throughout your project, it is not advised to call this
library outside of your global logging/error-reporting libraries.
import {DeepRedact} from '@hackylabs/deep-redact';
const objRedaction = new DeepRedact({
blacklistedKeys: ['sensitive', 'password', /name/i],
})
const obj = {
keepThis: 'This is fine',
sensitive: 'This is not fine',
user: {
id: 1,
password: '<h1><strong>Password</strong></h1>',
firstName: 'John',
}
}
objRedaction.redact(obj)
const strRedaction = new DeepRedact({
stringTests: [
{
pattern: /<(email|password)>([^<]+)<\/\1>/gi,
replacer: (value: string, pattern: RegExp) => value.replace(pattern, '<$1>[REDACTED]</$1>'),
},
],
})
strRedaction.redact('<email>someone@somewhere.com</email><keepThis>This is fine</keepThis><password>secret</password>')
Configuration
Main Options
key | description | type | options | default | required |
---|
blacklistedKeys | Deeply compare names of these keys against the keys in your object. | array | Array<string│RegExp│BlacklistKeyConfig> | [] | N |
stringTests | Array of regular expressions to perform against string values, whether that value is a flat string or nested within an object. | array | Array<RegExp│StringTestConfig> | [] | N |
fuzzyKeyMatch | Loosely compare key names by checking if the key name of your unredacted object is included anywhere within the name of your blacklisted key. For example, is "pass" (your key) included in "password" (from config). | boolean | | false | N |
caseSensitiveKeyMatch | Loosely compare key names by normalising the strings. This involves removing non-word characters and transforms the string to lowercase. This means you never have to worry having to list duplicate keys in different formats such as snake_case, camelCase, PascalCase or any other case. | boolean | | true | N |
remove | Determines whether or not to remove the key from the object when it is redacted. | boolean | | false | N |
retainStructure | Determines whether or not keep all nested values of a key that is going to be redacted. Circular references are always removed. | boolean | | false | N |
replacement | When a value is going to be redacted, what would you like to replace it with? | string │ function | | [REDACTED] | N |
replaceStringByLength | When a string value is going to be replaced, optionally replace it by repeating the replacement to match the length of the value. For example, if replaceStringByLength were set to true and replacement was set to "x", then redacting "secret" would return "xxxxxx". This is sometimes useful for debugging purposes, although it may be less secure as it could give hints to the original value. | boolean | | false | N |
types | JS types (values of typeof keyword). Only values with a typeof equal to string , number , bigint , boolean , symbol , object , or function will be redacted. Undefined values will never be redacted, although the type undefined is included in this list to keep TypeScript happy. | array | Array<'string'│'number'│'bigint'│'boolean'│'symbol'│'undefined'│'object'│'function'> | ['string'] | N |
serialise | Determines whether or not to serialise the object after redacting. Typical use cases for this are when you want to send it over the network or save to a file, both of which are common use cases for redacting sensitive information. | boolean | | false | N |
serialize | Alias of serialise for International-English users. | boolean | | false | N |
BlacklistKeyConfig
key | type | default | required |
---|
key | string│RegExp | | Y |
fuzzyKeyMatch | boolean | Main options fuzzyKeyMatch | N |
caseSensitiveKeyMatch | boolean | Main options caseSensitiveKeyMatch | N |
remove | boolean | Main options remove | N |
retainStructure | boolean | Main options retainStructure | N |
StringTestConfig
key | description | type | required |
---|
pattern | A regular expression to perform against a string value, whether that value is a flat string or nested within an object. | RegExp | Y |
replacer | A function that will be called with the value of the string that matched the pattern and the pattern itself. This function should return the new (redacted) value to replace the original value. | function | Y |
Benchmark
Comparisons are made against JSON.stringify, Regex.replace, Fast Redact &
(one of my other creations, @hackylabs/obglob) as well as different
configurations of Deep Redact, using this test object. Fast Redact was configured to redact
the same keys on the same object as Deep Redact without using wildcards.
The benchmark is run on a 2021 iMac with an M1 chip with 16GB memory running macOS Sequoia 15.0.0.
JSON.stringify is included as a benchmark because it is the fastest way to deeply iterate over an object, although it
doesn't redact any sensitive information.
Regex.replace is included as a benchmark because it is the fastest way to redact sensitive information from a string.
However, a regex pattern for all keys to be redacted is much harder to configure than a dedicated redaction library,
especially when dealing with multiple types of values. It also doesn't handle circular references or other unsupported
values as gracefully as deep-redact unless a third-party library is used to stringify the object beforehand.
Fast-redact is included as a benchmark because it's the next fastest library available specifically for redaction.
Neither JSON.stringify, Regex.replace nor Fast Redact offer the same level of configurability as deep-redact. Both Fast
Redact and Obglob are slower and rely on dependencies.
scenario | ops / sec | op duration (ms) | margin of error | sample count |
---|
DeepRedact, XML | 171985.01 | 0.0058144601 | 0.00004 | 85993 |
JSON.stringify, large object | 162406.59 | 0.0061573855 | 0.00002 | 81204 |
DeepRedact, remove item, single object | 25293.55 | 0.039535775 | 0.00023 | 12647 |
Regex replace, large object | 22529.52 | 0.0443862153 | 0.00024 | 11265 |
DeepRedact, custom replacer function, single object | 22324.84 | 0.0447931554 | 0.00037 | 11163 |
DeepRedact, default config, large object | 21437.04 | 0.046648239 | 0.00028 | 10719 |
DeepRedact, replace string by length, single object | 21018.32 | 0.0475775519 | 0.00084 | 10510 |
DeepRedact, fuzzy matching, single object | 18000.38 | 0.0555543858 | 0.0003 | 9001 |
DeepRedact, retain structure, single object | 17581.5 | 0.056877956 | 0.00037 | 8791 |
DeepRedact, config per key, single object | 16914.73 | 0.0591200552 | 0.0004 | 8458 |
DeepRedact, default config, 1000 large objects | 7989.05 | 0.1251712531 | 0.0018 | 3995 |
fast redact, large object | 5929.58 | 0.1686459096 | 0.00126 | 2965 |
ObGlob, large object | 4939.98 | 0.2024300664 | 0.01105 | 2470 |
DeepRedact, case insensitive matching, single object | 4721.59 | 0.2117932541 | 0.00378 | 2361 |
DeepRedact, fuzzy and case insensitive matching, single object | 4686.29 | 0.2133882948 | 0.0018 | 2344 |
JSON.stringify, 1000 large objects | 222.05 | 4.5035912679 | 0.04553 | 112 |
ObGlob, 1000 large objects | 164.55 | 6.0771323614 | 0.11829 | 83 |
fast redact, 1000 large objects | 120.7 | 8.2848202295 | 0.05702 | 61 |
Regex replace, 1000 large objects | 93.5 | 10.6954525319 | 0.39014 | 47 |