1.0.1 • Published 9 months ago
securelog-detectors v1.0.1
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
}