/** * Path-traversal axis. * * For each path-shaped arg (heuristic: name contains `path`, `file`, * `dir`, etc. — see schema.ts::looksPathy), send classic traversal * payloads. Tests whether the server canonicalises paths before use. * * Per docs/SPEC.md §"Fuzzing strategy". */ import type { Prng } from "../prng.js"; import type { ToolFacts } from "../schema.js"; /** Generate path-traversal inputs for one tool. */ export declare function generatePathTraversal(facts: ToolFacts, _prng: Prng): Generator<{ args: Record; rationale: string; }>; //# sourceMappingURL=path-traversal.d.ts.map