vibe-guard
Version:
🛡️ Vibe-Guard Security Scanner - Catch security issues before they catch you!
13 lines • 591 B
TypeScript
import { BaseRule, FileContent, SecurityIssue } from '../types';
export declare class HardcodedSensitiveDataRule extends BaseRule {
readonly name = "hardcoded-sensitive-data";
readonly description = "Detects hardcoded sensitive information in configuration files";
readonly severity: "critical";
private readonly sensitivePatterns;
private readonly falsePositivePatterns;
check(fileContent: FileContent): SecurityIssue[];
private isSensitiveFile;
private isFalsePositive;
private maskSensitiveData;
}
//# sourceMappingURL=hardcoded-sensitive-data.d.ts.map