# Per-Ticket Reproduction Policy

No prior successful runs found for this exact vulnerability.

## Patterns from Similar Vulnerabilities
- Clone the target repository into `/tmp` and enumerate tags/branches to locate the vulnerable version (e.g., `git tag --sort=-v:refname | head -20`, then `git checkout <tag>`).
- Use the ecosystem’s package manager to install a specific vulnerable version into a clean temp dir (e.g., `npm install <pkg>@<version>`), then inspect installed sources under `node_modules/`.
- Use `grep`/`sed` to locate suspect syntax or deprecated constructs in source files before running any exploit logic.
- Install required system packages via `apt-get` only when the reproduction explicitly depends on external binaries (e.g., browser/runtime).