kissbom

command module
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 11, 2024 License: MPL-2.0 Imports: 2 Imported by: 0

README

kissbom

kissbom

GitHub release (latest by date) Go Report Card

Converts a CycloneDX file into a KissBOM. Implements the kissbom-spec.

Overview

Let's face it - SBOMs can be massive in size. On an episode of daBOM, Philippe Ombredanne mentioned that he had created a very minimal SBOM specification called KissBOM. KissBOMs are pretty much the bare minimum that one would need to describe software in an SBOM format.

We thought it may be cool to implement a CLI that would convert a CycloneDX file to a KissBOM. kissbom will take a CycloneDX file, remove all non-essential fields, and lets you save it to a variety of formats - including a CycloneDX formatted kissbom.

Using a sample CycloneDX SBOM for juiceshop, we found that a generated kissbom in JSON format was 1/10th of the size of the original file.

KissBOM Content

KissBOMs contain a similar collection of packages that are defined in a CycloneDX format, but only the essential fields. The fields that are maintained from the CycloneDX spec are:

Field Description Required
PURL The package url YES
License The defined License of the package NO
Copyright The copyright for the package NO
Notes Any notes available for the package NO

Installation

Mac

You can use Homebrew to install kissbom using the following:

brew tap devops-kung-fu/homebrew-tap
brew install devops-kung-fu/homebrew-tap/kissbom

If you do not have Homebrew, you can still download the latest release (ex: kissbom.1.0_darwin_all.tar.gz), extract the files from the archive, and use the kissbom binary.

If you wish, you can move the kissbom binary to your /usr/local/bin directory or anywhere on your path.

Linux

To install kissbom, download the latest release for your platform and install locally. For example, install kissbom on Ubuntu:

dpkg -i kissbom_0.4.1_linux_arm64.deb

Usage

kissbom is a really simple CLI with only a small number of options. To quickly convert a CycloneDX SBOM to a JSON formatted KissBOM, run the following:

kissbom convert test.cyclonedx.json //where test.cyclonedx.json is a valid CycloneDX SBOM
Output Formats

kissbom can output a KissBOM in a variety of formats using the --format flag. Valid options are:

Option Description
--format=json Outputs all 4 KissBOM fields in JSON format. This is the default output format
--format=yaml Outputs all 4 KissBOM fields in YAML format
--format=csv Outputs all 4 KissBOM fields into a CSV formatted file
--format=minimal Outputs just the KissBOM required fields into a JSON formatted file (Purl)
--format=compatible Outputs all 4 KissBOM fields in a CycloneDX formatted JSON file
Debugging

To enable verbose logging in kissbom, use the --debug flag.

Credits

A big thank-you to our friends at Good Ware for the kissbom logo.

Documentation

Overview

Package main is the entry point for the kissbom CLI.

Directories

Path Synopsis
Package cmd contains all of the commands that may be executed in the cli
Package cmd contains all of the commands that may be executed in the cli
Package lib contains all of the core functionality of the application
Package lib contains all of the core functionality of the application
Package models contains any structs used throughout kissbom
Package models contains any structs used throughout kissbom

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL