UNPKG

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

15 lines 681 B
import { BaseRule, FileContent, SecurityIssue } from '../types'; export declare class InsecureSessionManagementRule extends BaseRule { readonly name = "insecure-session-management"; readonly description = "Detects insecure session management configurations and practices"; readonly severity: "high"; private readonly sessionPatterns; private readonly secureSessionPatterns; private readonly falsePositivePatterns; check(fileContent: FileContent): SecurityIssue[]; private hasSecureSessionPatterns; private isCommentOrTest; private isFalsePositive; private isDevelopmentContext; } //# sourceMappingURL=insecure-session-management.d.ts.map