/** * @fileoverview CWE-22: Improper Limitation of a Pathname to a Restricted Directory (Path Traversal) * @module @nahisaho/musubix-security/rules/cwe/cwe-22-path-traversal * @trace TSK-RULE-005 * * Detects: * - Path concatenation with user input * - Missing path normalization * - Directory escape attempts * - Symlink attacks * * CWE-22 is #8 in CWE Top 25 2023. */ import type { SecurityRule } from '../types.js'; /** * CWE-22 - Path Traversal */ export declare const cwe22PathTraversal: SecurityRule; export default cwe22PathTraversal; //# sourceMappingURL=cwe-22-path-traversal.d.ts.map