# Per-Ticket Reproduction Policy

No prior successful runs found for this exact vulnerability.

## Patterns from Similar Vulnerabilities
- Clone the target repo and check out a precise tag/branch before testing (e.g., `git clone …` then `git checkout v0.5.9` or `--branch release-1.29.6`).
- If unsure which version is affected, list tags and recent commits to pick candidates (`git tag --list | sort -V` and `git log --oneline -20`).
- Inspect suspected code paths with targeted file reads and line ranges (`grep -n "function_name"` and `sed -n 'start,endp' file`).
- For expression-eval style issues in Python components, set up a Python3 environment and pin required package versions via pip (e.g., `pip3 install "simpleeval<1.0.5" --user`).