vibe-guard
Version:
🛡️ Vibe-Guard Security Scanner - 25 essential security rules to catch vulnerabilities before they catch you! Zero dependencies, instant setup, works everywhere, optimized performance. Detects SQL injection, XSS, exposed secrets, CSRF, CORS issues, and mo
11 lines • 539 B
TypeScript
import { BaseRule, FileContent, SecurityIssue } from '../types';
export declare class AiDataLeakagePreventionRule extends BaseRule {
readonly name = "ai-data-leakage-prevention";
readonly description = "Detects potential data leakage in AI systems and training data exposure";
readonly severity: "high";
private readonly leakagePatterns;
private readonly falsePositivePatterns;
check(fileContent: FileContent): SecurityIssue[];
private isFalsePositive;
}
//# sourceMappingURL=ai-data-leakage-prevention.d.ts.map