VS Code
- ✓Real-time inline vulnerability annotations
- ✓One-click scan trigger from editor
- ✓Quick-fix remediation suggestions
- ✓Finding explorer sidebar panel
Ecosystem
Connect SecureScope to your development ecosystem. IDE plugins, CI/CD pipelines, REST API, webhooks, and standardized SBOM exports for complete toolchain integration.
- uses: securescope/scan-action@v1
with:
scan-type: "sast,sca"
fail-on: "critical"securescope-scan:
image: securescope/scanner:latest
script:
- securescope scan --type sast,sca
allow_failure: falsepipeline {
stages {
stage('Security') {
steps {
secureScopeScan types: 'sast,sca',
failOnSeverity: 'critical'
}
}
}
}- task: SecureScopeScan@1
inputs:
scanType: 'sast,sca'
failOnSeverity: 'critical'- securescope/scan:
scan-type: "sast,sca"
fail-on: "critical"Full-featured REST API for programmatic access to all SecureScope capabilities. Manage scans, retrieve findings, generate reports, and automate workflows.
POST /api/v1/scans — Create scanGET /api/v1/findings — List findingsGET /api/v1/reports — Generate reportsGET /api/v1/sbom — Export SBOMcurl -H "Authorization: Bearer $TOKEN" \
https://api.securescope.io/v1/scansSubscribe to real-time events for automated workflows and notifications.
| Event | Description |
|---|---|
scan.started | Triggered when a scan begins execution |
scan.completed | Triggered when a scan finishes with results |
finding.created | Triggered when a new vulnerability is detected |
finding.resolved | Triggered when a finding is marked as resolved |
compliance.drift | Triggered when compliance posture changes |
policy.violated | Triggered when a security policy is breached |
Full BOM specification with vulnerability data, service definitions, and dependency graphs. Industry-standard format supported by OWASP.
Linux Foundation standard for software package data exchange. Comprehensive license and provenance information for supply chain transparency.
Generate an API token
Navigate to Settings → API Tokens and create a new token with the required scopes.
Install the CLI or plugin
npm install -g @securescope/cliRun your first scan
securescope scan --type sast,sca --output jsonAdd to your CI/CD pipeline
Copy the platform-specific configuration above into your pipeline definition and configure severity thresholds.
Explore the full API reference or get started with our integration guides.
Get Started