/** * @fileoverview OWASP A03:2021 - Injection Rule * @module @nahisaho/musubix-security/rules/owasp/a03-injection * @trace TSK-RULE-003 * * Detects: * - SQL Injection * - NoSQL Injection * - Command Injection * - Code Injection (eval) * - Template Injection * * Uses taint analysis when available for improved accuracy. */ import type { SecurityRule } from '../types.js'; /** * OWASP A03 - Injection */ export declare const owaspA03Injection: SecurityRule; export default owaspA03Injection; //# sourceMappingURL=a03-injection.d.ts.map