Tool integration

Endor Labs Integration Guide

Reachability-aware SCA that filters out 80%+ of CVE noise

Get a Free API Key

Integrate Endor Labs with Vulnetix. Use endorctl to scan dependencies with reachability analysis, export SARIF findings, and upload to Vulnetix for centralised risk management.

SaaS platformSARIFCycloneDX

Run Endor Labs in CI

Scan on every push and upload the report as a workflow artifact:

- name: Install endorctl
  run: |
    curl -s https://api.endorlabs.com/download/latest/endorctl_linux_amd64       -o endorctl && chmod +x endorctl

- name: Endor Labs scan
  run: |
    ./endorctl scan --namespace ${{ secrets.ENDOR_NAMESPACE }} --as-default-branch
    ./endorctl api get-vulnerabilities       --namespace ${{ secrets.ENDOR_NAMESPACE }} --sarif > endorlabs.sarif
  env:
    ENDOR_API_CREDENTIALS_KEY: ${{ secrets.ENDOR_API_KEY }}

- name: Upload report
  uses: actions/upload-artifact@v6
  with:
    name: endorlabs
    path: endorlabs.sarif
    if-no-files-found: warn

Then one publish job hands every artifact in the run to Vulnetix, recorded under Endor Labs's own name and version. Written once per workflow, however many scanners you run:

publish:
  name: Publish to Vulnetix
  runs-on: ubuntu-latest
  needs: [scan]        # every scanner job, or its report is never published
  if: always()         # or one failing scanner suppresses all the others
  permissions:
    contents: read
    actions: read      # required to list the run's artifacts
  env:
    VULNETIX_ORG_ID: ${{ secrets.VULNETIX_ORG_ID }}
    VULNETIX_API_KEY: ${{ secrets.VULNETIX_API_KEY }}
  steps:
    - uses: actions/checkout@v5
    - name: Install Vulnetix CLI
      run: |
        curl -fsSL https://cli.vulnetix.com/install.sh | sh -s -- --install-dir "$HOME/.local/bin"
        echo "$HOME/.local/bin" >> "$GITHUB_PATH"
    - name: Publish scanner reports
      env:
        GITHUB_TOKEN: ${{ github.token }}
      run: vulnetix gha upload --org-id "$VULNETIX_ORG_ID" --json

After the run, vulnetix gha status reports what was actually recorded.

How Vulnetix compares: better together

Vulnetix does not replace Endor Labs. Keep running it. Vulnetix sits on top of Endor Labs (and every other scanner you already own) turning disconnected tool outputs into one prioritised, fixable queue.

Endor Labs is strongest at its core category and also carries features in SAST, Secret Scanning, Container & Image Scanning, SBOM Generation, License Compliance, just as Vulnetix spans categories.

CapabilityVulnetixEndor Labs
Security coverage
SAST (static code analysis)Built-in rules + Semgrep augmentationNative SAST: rule-based (Opengrep) plus AI SAST scanning code and PRs for code-level flaws
SCA / dependencies40+ ecosystems, transitive graphCore product: reachability-aware SCA across major ecosystems against OSV/advisory data
DAST (dynamic testing)~ Ingests DAST results; no native dynamic engine
Container & imageImage CVEs, base image, DockerfileContainer image scanning, layer-aware, marketed as container + SCA better together
IaC / misconfigurationTerraform, k8s, CloudFormation
Secret scanning1,000+ rules, source + binary + git historySecret/credential and API-key detection pre-commit, at commit, and in production
Cloud / CSPMCloud-posture findings, compliance tab
Mobile (MAST)~ Ingests mobile scanner output; no native mobile engine
License complianceSPDX, copyleft/AGPL/SSPL policy~ Detects legal/licensing risk across the SDLC
SBOM generationCycloneDX 1.7 + SPDX 2.3, cosign-signable~ Centralized SBOM creation and management; CycloneDX-oriented, less on generation breadth
Malware / supply-chainDe-duplicated corpus + install-time firewall (25+ registries)~ Malicious-package detection for supply-chain risk; not an install-time registry firewall
Network / infra vuln~ Ingests network scanner output; no native network scanner
FuzzingIngests fuzzing crashes; no native fuzzer
Pentest / bug bountyIngests pentest/bug-bounty findings; not a testing service
The Vulnetix orchestration layer
Cross-scanner dedup & one queue (ASPM)Correlates every scanner into one prioritised queue with ownership routing~ Unifies code, SCA, container, secrets, malware findings into one platform view
Exploit-intel prioritisationEPSS, CISA KEV, Coalition ESS, CWSS, Vulnetix LEV~ Risk-based prioritisation factors EPSS alongside reachability; not a multi-source exploit-intel engine
Reachability analysisTree-sitter + CVEAffected; direct/transitive/semanticFunction-level call-graph reachability is the flagship capability that suppresses unreachable CVEs
Versioned VEX + audit trailImmutable OpenVEX/CycloneDX, cosign-signable~ Creates and manages VEX; not documented as immutable/versioned with audit trail
Safe Harbour autofixResolves + applies the nearest safe version~ Automated patching and AI code fixes with upgrade-impact analysis
End-of-life policyFlags/blocks past-EOL runtimes & packages
SSVC / risk-based policySSVC v2 + CISA/FedRAMP/Essential-8 presets

✓ full · ~ partial · ✗ not covered

What Endor Labs does well

Where Vulnetix adds to it: Both center on reachability, but Vulnetix is an orchestration/ASPM layer that ingests and dedupes findings from Endor Labs alongside other scanners into one prioritised queue, adds broader exploit-intel (EPSS, CISA KEV, Coalition ESS, CWSS, LEV) and SSVC policy, immutable versioned VEX with audit, EOL policy, and an install-time package firewall across 25+ registries. Vulnetix layers on top of Endor Labs rather than replacing its function-level reachability engine.

No migration, no rip-and-replace. Endor Labs keeps doing what it does best; Vulnetix adds the orchestration, exploit-intelligence prioritisation and remediation layer built for the way AppSec works today.

Centralise Endor Labs results in Vulnetix

Upload Endor Labs SARIF, CycloneDX output to the Vulnetix platform to deduplicate findings, prioritise them with EPSS, CISA KEV and Coalition ESS exploit intelligence, and track remediation across every scanner in a single queue.

Endor Labs documentation ↗

Wire Endor Labs into your CI/CD pipeline →