/** * @fileoverview CWE-20: Improper Input Validation * @module @nahisaho/musubix-security/rules/cwe/cwe-20-input-validation * @trace TSK-RULE-005 * * Detects: * - Missing input validation * - Insufficient type checking * - Missing length/size limits * - Unsafe type coercion * - Missing sanitization * * CWE-20 is #6 in CWE Top 25 2023. */ import type { SecurityRule } from '../types.js'; /** * CWE-20 - Improper Input Validation */ export declare const cwe20InputValidation: SecurityRule; export default cwe20InputValidation; //# sourceMappingURL=cwe-20-input-validation.d.ts.map