Detector Configuration
Configure which detectors are enabled for your organization.
Available Detectors
| Detector | Free | Pro | Enterprise |
|---|---|---|---|
| SQL Injection | ✓ | ✓ | ✓ |
| XSS | ✓ | ✓ | ✓ |
| Secret Leak | ✓ | ✓ | ✓ |
| Path Traversal | ✓ | ✓ | ✓ |
| Race Condition | ✓ | ✓ | ✓ |
| Command Injection | ✓ | ✓ | |
| Weak Crypto | ✓ | ✓ | |
| Auth Bypass | ✓ | ✓ | |
| Vulnerable Deps | ✓ | ✓ | |
| Prototype Pollution | ✓ | ✓ |
Disable a Detector
To disable a detector, add it to the ignore list in your organization settings:
{
"disabledDetectors": ["command-injection", "weak-crypto"]
}API
Update detector settings via the API:
PATCH /api/dashboard/organization
{
"detectorSettings": {
"sql-injection": { "enabled": true },
"xss": { "enabled": true }
}
}Access the settings in your Dashboard Settings.