No description
Find a file
Alex Goodman dad1d9691c
Merge pull request #263 from anchore/add-source-to-rpmdb-cataloger
Add source to packages found by RPMdb cataloger
2020-11-12 09:36:20 -05:00
.github Add zip to gon outputs 2020-11-11 12:30:29 -05:00
cmd modify version command to match grype (#196) 2020-10-06 13:13:52 -04:00
internal add warning log level 2020-11-10 15:09:41 -05:00
schema enhance dpkg support by parsing md5sum and copyright file sources 2020-11-11 11:06:34 -05:00
syft add source to packages found by rpmdb cataloger 2020-11-12 09:27:08 -05:00
test tests: update all tests to pass the IDLike value 2020-11-10 12:40:50 -05:00
ui Add documentation around catalogers, UI elements, and the event bus (#143) 2020-08-12 11:04:39 -04:00
.bouncer.yaml Add package URL support to the CycloneDX presenter (#164) 2020-08-30 21:40:19 -04:00
.gitignore Update zip archive handling to match globs as expected (#244) 2020-10-28 16:50:40 -04:00
.golangci.yaml Improve overall documentation (#148) 2020-08-13 16:34:32 -04:00
.goreleaser.yaml restore the checksum file during release 2020-11-11 15:11:51 -05:00
CONTRIBUTING.md docs: add contributing guidelines 2020-08-10 14:15:07 -04:00
go.mod split out rpmdb file processing to helper + lint fixes 2020-11-06 10:44:27 -05:00
go.sum split out rpmdb file processing to helper + lint fixes 2020-11-06 10:44:27 -05:00
gon.hcl Add zip to gon outputs 2020-11-11 12:30:29 -05:00
install.sh Avoid Finder window flash during install 2020-11-11 12:38:11 -05: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 restore the checksum file during release 2020-11-11 15:11:51 -05:00
README.md Update README for secure macOS releases 2020-11-06 13:40:31 -05:00
RELEASE.md add release process docs (#153) 2020-08-24 14:38:31 -04:00

syft

Static Analysis + Unit + Integration Acceptance 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)
  • Supports Docker and OCI image formats

If you encounter an issue, please let us know using the issue tracker.

Getting started

To generate an SBOM for a Docker or OCI 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 container image archive (from the result of `docker image save ...`, `podman save ...`, or `skopeo copy` commands)
syft path/to/image.tar

# catalog a directory
syft path/to/dir

The output format for Syft is configurable as well:

syft <image> -o <format>

Where the formats available are:

  • json: Use this to get as much information out of Syft as possible!
  • text: A row-oriented, human-and-machine-friendly output.
  • cyclonedx: A XML report conforming to the CycloneDX 1.2 specification.
  • table: A columnar summary (default).

Installation

Recommended (macOS and Linux)

# 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 -- -b <SOME_BIN_PATH> <RELEASE_VERSION>

Homebrew (macOS)

brew tap anchore/syft
brew install 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:

  • Establish a stable interchange format w/Grype