securelog-detectors
v1.0.1
Published
```ts export interface SecureLogDetector { detector: string; // the name of the detector e.g AWS regex: string; // the regex pattern of the detectors secretPosition: number; // the position the secret exist on based on the regex.matchAll falsePosi
Downloads
83
Readme
Secure Log Detectors
export interface SecureLogDetector {
detector: string; // the name of the detector e.g AWS
regex: string; // the regex pattern of the detectors
secretPosition: number; // the position the secret exist on based on the regex.matchAll
falsePositive?: string; // optional regex pattern to use to filter out false positives
}