# Per-Ticket Reproduction Policy

No prior successful runs found for this exact vulnerability.

## Patterns from Similar Vulnerabilities
- Clone the target repository into a fresh working directory and check out a specific tag/branch before investigating (e.g., `git clone --depth 1 --branch <tag>` or `git checkout <version>`).
- Use targeted `grep`/`sed` to locate the vulnerable code paths in source files once the correct version is checked out.
- Prefer running a provided `repro/reproduction_steps.sh` script if the repo includes one; make it executable with `chmod +x` first.
- When external artifacts are required, download them directly with `curl` from authoritative release URLs and verify availability with `curl -I`.

## Approaches to Avoid
- Avoid using hardcoded absolute run paths from previous runs; keep all paths relative to `$WORKDIR`.