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
strix --target ./app --scan-mode deep
Thorough penetration testing. Best for:
Duration: 1-4 hours depending on target complexity
<Note> Deep mode is the default. It explores edge cases, chained vulnerabilities, and complex attack paths. </Note>| Scenario | Recommended Mode |
|---|---|
| Every PR | Quick |
| Weekly scans | Standard |
| Before major release | Deep |
| Bug bounty hunting | Deep |