# Per-Ticket Reproduction Policy

No prior successful runs found for this exact vulnerability.

## Patterns from Similar Vulnerabilities
- Clone the target repository at a specific release tag/branch using `git clone --depth 1 --branch <tag>` and, if needed, compare with a nearby patched tag.
- Inspect the suspected vulnerable code path using `grep -n "<function_or_symbol>"` and `sed -n '<start,end>p' <file>` to confirm locations before building an exploit.
- Use `git show <commit>:<path>` to extract historical workflow or config files when the vulnerability involves CI/automation behavior.
- If a repo provides a repro script (e.g., `repro/reproduction_steps.sh`), make it executable and run it from the repo root, clearing any logs/output directories beforehand.
- For workflow-related issues, install and use `act` to list/run GitHub Actions locally (`./bin/act --list`).