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

9 lines 387 B
import { BaseRule, FileContent, SecurityIssue } from '../types'; export declare class OpenCorsRule extends BaseRule { readonly name = "open-cors"; readonly description = "Detects overly permissive CORS configurations"; readonly severity: "high"; check(fileContent: FileContent): SecurityIssue[]; private isDevelopmentContext; } //# sourceMappingURL=open-cors.d.ts.map