What problem does it solve?
Detect SQL injection vulnerabilities in a codebase using a three-phase approach:
recon (find unsafe SQL construction sites), batched verify (trace user input to
those sites in parallel subagents, 3 sites each), and merge (consolidate batch
results). Covers string concat, f-strings, unsafe ORM methods, and dynamic
identifiers. Requires sast/architecture.md (run sast-analysis first). Outputs
findings to sast/sqli-results.md. Use when asked to find SQLi or database
injection bugs.
Core Features & Use Cases
- Three-phase workflow: recon, batched verify, and merge to surface and confirm SQLi
- Supports vulnerable construction patterns (concat/interpolation/formatting)
- Outputs to dedicated files (sast/sqli-recon.md and sast/sqli-results.md) for orchestration
Quick Start
Run the sast-sqli skill after completing the sast-analysis step to locate and verify SQL injection sites.