/** * @fileoverview CWE-787: Out-of-bounds Write * @module @nahisaho/musubix-security/rules/cwe/cwe-787-oob-write * @trace TSK-RULE-005 * * Detects: * - Buffer overflow patterns * - Array index out of bounds * - Unsafe array operations * - TypedArray boundary violations * - Unchecked array growth * * CWE-787 is #1 in CWE Top 25 2023. */ import type { SecurityRule } from '../types.js'; /** * CWE-787 - Out-of-bounds Write */ export declare const cwe787OutOfBoundsWrite: SecurityRule; export default cwe787OutOfBoundsWrite; //# sourceMappingURL=cwe-787-oob-write.d.ts.map