isSecurityVulnerability: true, and you can run a vulnerability-only scan at any time to focus exclusively on security issues without wading through the full bug list.
What counts as a security vulnerability
Detail’s AI agents look for a broad range of security issues, including but not limited to:- Injection flaws — SQL injection, command injection, template injection, and similar input-handling bugs
- Insecure data handling — sensitive data written to logs, stored unencrypted, or transmitted over unprotected channels
- Authentication and authorization flaws — broken access controls, missing authentication checks, and privilege escalation paths
- Cryptographic weaknesses — use of deprecated algorithms, hard-coded secrets, weak key sizes, and insecure random-number generation
- Dependency and configuration issues — patterns that indicate insecure defaults or known-vulnerable usage
Vulnerability-only mode
When you only want to see security findings, use vulnerability-only mode. It filters out all bugs whereisSecurityVulnerability is false or unset, giving you a focused view of your security posture.
Dashboard
Open the Bugs view and select the Security filter to show only security vulnerabilities.
CLI
Pass the
--vulns flag to the bugs list command:API
Fetch bugs and filter on the
isSecurityVulnerability field:Filtering security findings
Dashboard
- Navigate to the Bugs section of your repository.
- Click the Security filter chip.
- The list updates to show only findings where
isSecurityVulnerabilityistrue.
CLI
API
Fetch bugs from the API and filter on theisSecurityVulnerability field in the response. Each bug object includes:
isSecurityVulnerability === true.
What each security finding includes
Security findings include all the standard bug report fields. The key fields are:| Field | API field | Description |
|---|---|---|
| Title | title | Short description of the vulnerability |
| Summary | summary | Full explanation of the security risk and its potential impact |
| File path | filePath | File where the vulnerability exists |
| Introduced by | introducedIn | Commit SHA, date, author, and PR that introduced the code |
| Security flag | isSecurityVulnerability | Always true for security findings |