Files
compliance-scanner-agent/docs/guide/sbom.md
T
Sharang ParnerkarandClaude Fable 5 b7b9c812ab
CI / Check (push) Skipped
CI / Check (pull_request) Failing after 3m1s
CI / Detect Changes (pull_request) Skipped
CI / Deploy Agent (pull_request) Skipped
CI / Deploy Dashboard (pull_request) Skipped
CI / Deploy Docs (pull_request) Skipped
CI / Deploy MCP (pull_request) Skipped
docs: align tool inventory with what actually runs (no Grype, no ZAP/nuclei)
CVE matching is done directly against OSV.dev (by purl) and NVD (CVSS, CODESYS
CPE) in pipeline/cve.rs; Grype is not installed or invoked. DAST/pentest use the
in-house compliance-dast agents, not ZAP or nuclei. Found while reconciling the
Certifai requirements spec (Collectives) with the code.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01EgxGHn22YEfQz5fLHSHkLv
2026-08-31 15:05:06 +02:00

4.3 KiB

SBOM & Licenses

The SBOM (Software Bill of Materials) feature provides a complete inventory of all dependencies across your repositories, with vulnerability tracking and license compliance analysis.

What is an SBOM?

A Software Bill of Materials is a list of every component (library, package, framework) that your software depends on, along with version numbers, licenses, and known vulnerabilities. SBOMs are increasingly required for compliance audits, customer security questionnaires, and supply chain transparency.

Certifai generates SBOMs automatically during each scan using Syft for dependency extraction and OSV.dev + NVD for vulnerability matching.

Packages Tab

Navigate to SBOM in the sidebar to see the packages tab, which lists all dependencies discovered during scans.

SBOM packages tab with filters and export options

Filtering

Use the filter bar to narrow results:

  • Repository -- select a specific repository or view all
  • Package Manager -- npm, cargo, pip, go, maven, nuget, composer, gem
  • Search -- filter by package name
  • Vulnerabilities -- show all packages, only those with vulnerabilities, or only clean packages
  • License -- filter by specific license (MIT, Apache-2.0, BSD-3-Clause, GPL-3.0, etc.)

Package Details

Each package row shows:

Column Description
Package Package name
Version Installed version
Manager Package manager (npm, cargo, pip, etc.)
License License identifier with color-coded badge
Vulnerabilities Count of known vulnerabilities (click to expand)

Vulnerability Details

Click the vulnerability count on any package to expand inline details showing:

  • Vulnerability ID (e.g. CVE-2024-1234)
  • Source database
  • Severity level
  • Link to the advisory

License Compliance Tab

The license compliance tab helps you understand your licensing obligations across all dependencies.

License compliance tab with copyleft warnings and distribution chart

Copyleft Warnings

If any dependencies use copyleft licenses (GPL, AGPL, LGPL, MPL), a warning banner appears listing the affected packages. Copyleft licenses may impose distribution requirements on your software.

::: warning Copyleft-licensed dependencies can require you to release your source code under the same license. Review flagged packages carefully with your legal team if you distribute proprietary software. :::

License Distribution

A horizontal bar chart visualizes the percentage breakdown of licenses across your dependencies, giving you a quick overview of your licensing profile.

License Table

A detailed table lists every license found:

Column Description
License License identifier
Type Copyleft or Permissive badge
Packages List of packages using this license
Count Number of packages

Copyleft licenses (flagged as potentially restrictive): GPL-2.0, GPL-3.0, AGPL-3.0, LGPL-2.1, LGPL-3.0, MPL-2.0

Permissive licenses (generally safe for commercial use): MIT, Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC, and others

Export

You can export your SBOM in industry-standard formats:

  1. Select a repository (or export across all repositories)
  2. Choose a format:
    • CycloneDX 1.5 -- JSON format widely supported by security tools
    • SPDX 2.3 -- Linux Foundation standard for license compliance
  3. Click Export
  4. The SBOM downloads as a JSON file

::: tip SBOM exports are useful for compliance audits, customer security questionnaires, government procurement requirements, and supply chain transparency. :::

Compare Tab

Compare the dependency profiles of two repositories side by side:

  1. Select Repository A from the first dropdown
  2. Select Repository B from the second dropdown
  3. View the comparison results:
Section Description
Only in A Packages present in repo A but not in repo B
Only in B Packages present in repo B but not in repo A
Version Diffs Same package with different versions between repos
Common Count of packages that match exactly

This is useful for auditing consistency across microservices, identifying dependency drift, and planning coordinated upgrades.