SBOM + Rummage = Sbommage.
Pronounced (in my British English) as "ess-bomb-idge", or "SBOM Mage 🧙" if you prefer.
Sbommage is an interactive terminal frontend for viewing Software Bill of Materials (SBOM) files in various formats.
Software Bill of Materials (SBOM) files are increasingly important in software supply chain security. However, they come in multiple formats (SPDX, CycloneDX, Syft's native format), each with their own structure and complexity. Sbommage aims to provide a consistent, user-friendly way to view and explore SBOM data, regardless of the underlying format.
Sbommage is written in Python, and uses the Textual library for the UI.
You just need Python and the Textual library installed.
I use uv to manage Python virtual environments. It's good. You might like it too.
git clone https://github.com/popey/sbommage
cd sbommage
uv venv
source ./venv/bin/activate
uv pip install textual
Point sbommage at an SBOM file:
./sbommage example_sboms/nextcloud-latest-syft-sbom.json
Sbommage will detect the SBOM format (SPDX, CycloneDX, or Syft), and present the data in an interactive interface. Use the cursor keys or mouse to navigate the tree on the left pane. Click or press Enter on an item to see detailed information in the right pane.
Change view:
n
- View by package Namet
- View by package Typec
- View by License (Copyright/Code)s
- View by Supplier
Navigation:
h
- Move leftj
- Move downk
- Move upl
- Move right
Misc:
/
- Searchq
- Quit
The goal is to support as many SBOM formats as possible. Patches welcome!
- SPDX
- CycloneDX
- Syft
There are various tools available to generate SBOMs:
- Syft - Generates comprehensive SBOMs in multiple formats
- SPDX Tools - Official SPDX tools
- CycloneDX Tools - Various tools for CycloneDX format
For example, to generate an SBOM with Syft:
syft alpine:latest -o json > alpine-syft.json
I am an open-source enthusiast and self-taught coder creating projects driven by curiosity and a love for problem-solving. The code may have bugs or sharp edges. Kindly let me know if you find one, via an issue. Thanks.