No description
Find a file
Alex Goodman f892289e7c
Add CycloneDX presenter (#157)
* add CycloneDX presenter + BOM Descriptor extension

Signed-off-by: Alex Goodman <alex.goodman@anchore.com>

* add docstrings to cyclonedx presenter

Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
2020-08-24 20:43:29 -04:00
.circleci bump circle resources 2020-07-25 19:08:19 -04:00
.github Add demo gif + slack channel links (#145) 2020-08-12 14:57:22 -04:00
cmd Add CycloneDX presenter (#157) 2020-08-24 20:43:29 -04:00
internal Add documentation around catalogers, UI elements, and the event bus (#143) 2020-08-12 11:04:39 -04:00
json-schema Add detailed location info to json artifact (#127) 2020-08-07 10:05:16 -04:00
resources Add shell completion script (#131) 2020-08-10 09:31:02 -04:00
syft Add CycloneDX presenter (#157) 2020-08-24 20:43:29 -04:00
test test: add setup.py integration cases 2020-08-17 16:00:49 -04:00
ui Add documentation around catalogers, UI elements, and the event bus (#143) 2020-08-12 11:04:39 -04:00
.bouncer.yaml Add release process (#89) 2020-07-23 10:52:44 -04:00
.gitignore Add inline-comparison as acceptance test (#130) 2020-08-10 10:33:44 -04:00
.golangci.yaml Improve overall documentation (#148) 2020-08-13 16:34:32 -04:00
.goreleaser.yaml Add install script + brew tap (#138) 2020-08-10 17:15:00 -04:00
CONTRIBUTING.md docs: add contributing guidelines 2020-08-10 14:15:07 -04:00
go.mod Add CycloneDX presenter (#157) 2020-08-24 20:43:29 -04:00
go.sum Improve overall documentation (#148) 2020-08-13 16:34:32 -04:00
install.sh Add install script + brew tap (#138) 2020-08-10 17:15:00 -04:00
LICENSE add apache v2 license 2020-06-24 14:37:00 -04:00
main.go Improve overall documentation (#148) 2020-08-13 16:34:32 -04:00
Makefile Add CycloneDX presenter (#157) 2020-08-24 20:43:29 -04:00
README.md replace in-repo asset 2020-08-14 13:58:45 -04:00
RELEASE.md add release process docs (#153) 2020-08-24 14:38:31 -04:00

syft

CircleCI Go Report Card GitHub release License: Apache-2.0

A CLI tool and go library for generating a Software Bill of Materials (SBOM) from container images and filesystems.

syft-demo

Features

  • Catalog container images and filesystems to discover packages and libraries.
  • Supports packages and libraries from various ecosystems (APK, DEB, RPM, Ruby Bundles, Python Wheel/Egg/requirements.txt, JavaScript NPM/Yarn, Java JAR/EAR/WAR, Jenkins plugins JPI/HPI, Go modules)
  • Linux distribution identification (supports Alpine, BusyBox, CentOS/RedHat, Debian/Ubuntu flavored distributions)

⚠️ This is pre-release software and it may not work as expected. If you encounter an issue, please let us know using the issue tracker.

Getting started

To generate an SBOM for an image:

syft <image>

The above output includes only software that is visible in the container (i.e., the squashed representation of the image). To include software from all image layers in the SBOM, regardless of its presence in the final image, provide --scope all-layers:

syft <image> --scope all-layers

Syft can generate a SBOM from a variety of sources:

# catalog a docker image tar (from the result of "docker image save ... -o image.tar" command)
syft docker-archive://path/to/image.tar

# catalog a directory
syft dir://path/to/dir

By default Syft shows a summary table, however, more detailed text and json formats are also available.

syft <image> -o json
syft <image> -o text

Installation

Recommended

# install the latest version to /usr/local/bin
curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin

# install a specific version into a specific dir
curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s <RELEASE_VERSION> -b <SOME_BIN_PATH>

macOS

brew tap anchore/syft
brew install syft

You may experience a "macOS cannot verify app is free from malware" error upon running Syft because it is not yet signed and notarized. You can override this using xattr.

xattr -rd com.apple.quarantine syft

Configuration

Configuration search paths:

  • .syft.yaml
  • .syft/config.yaml
  • ~/.syft.yaml
  • <XDG_CONFIG_HOME>/syft/config.yaml

Configuration options (example values are the default):

# same as -o ; the output format of the SBOM report (options: table, text, json)
output: "table"

# same as -s ; the search space to look for packages (options: all-layers, squashed)
scope: "squashed"

# same as -q ; suppress all output (except for the SBOM report)
quiet: false

log:
  # use structured logging
  structured: false

  # the log level; note: detailed logging suppress the ETUI
  level: "error"

  # location to write the log file (default is not to have a log file)
  file: ""

# enable/disable checking for application updates on startup
check-for-app-update: true

Future plans

The following areas of potential development are currently being investigated:

  • Add CycloneDX to list of output formats
  • Establish a stable interchange format w/Grype