docs/usage/scan-modes.mdx
Strix offers three scan modes to balance speed and thoroughness.
strix --target ./app --scan-mode quick
Fast checks for obvious vulnerabilities. Best for:
Duration: Minutes
strix --target ./app --scan-mode standard
Balanced testing for routine security reviews. Best for:
Duration: 30 minutes to 1 hour
White-box behavior: Uses source-aware mapping and static triage to prioritize dynamic exploit validation paths.
strix --target ./app --scan-mode deep
Thorough penetration testing. Best for:
Duration: 1-4 hours depending on target complexity
White-box behavior: Runs broad source-aware triage (semgrep, AST structural search, secrets, supply-chain checks) and then systematically validates top candidates dynamically.
| Scenario | Recommended Mode |
|---|---|
| Every PR | Quick |
| Weekly scans | Standard |
| Before major release | Deep |
| Bug bounty hunting | Deep |