2021-10-11 21:06:27 +00:00
< p align = "center" >
2021-11-02 19:00:56 +00:00
< img src = "https://user-images.githubusercontent.com/5199289/136844524-1527b09f-c5cb-4aa9-be54-5aa92a6086c1.png" width = "271" alt = "Cute pink owl syft logo" >
2021-10-11 21:06:27 +00:00
< / p >
2020-07-24 00:54:04 +00:00
2024-05-20 17:46:32 +00:00
# Syft
2020-08-10 20:46:12 +00:00
2024-05-20 17:46:32 +00:00
**A CLI tool and Go library for generating a Software Bill of Materials (SBOM) from container images and filesystems. Exceptional for vulnerability detection when used with a scanner like [Grype ](https://github.com/anchore/grype ).**
2021-09-24 15:42:06 +00:00
2024-05-20 17:46:32 +00:00
< p align = "center" >
< a href = "https://github.com/anchore/syft/actions/workflows/validations.yaml" target = "_blank" > < img alt = "Validations" src = "https://github.com/anchore/syft/actions/workflows/validations.yaml/badge.svg" > < / a >
< a href = "https://goreportcard.com/report/github.com/anchore/syft" target = "_blank" > < img alt = "Go Report Card" src = "https://goreportcard.com/badge/github.com/anchore/syft" > < / a >
< a href = "https://github.com/anchore/syft/releases/latest" target = "_blank" > < img alt = "GitHub release" src = "https://img.shields.io/github/release/anchore/syft.svg" > < / a >
< a href = "https://github.com/anchore/syft" target = "_blank" > < img alt = "GitHub go.mod Go version" src = "https://img.shields.io/github/go-mod/go-version/anchore/syft.svg" > < / a >
< a href " " target = "_blank" > < img alt = "License: Apache-2.0" src = "https://img.shields.io/badge/License-Apache%202.0-blue.svg" > < / a >
< a href = "https://anchore.com/slack" target = "_blank" > < img alt = "Slack" src = "https://img.shields.io/badge/Slack-Join-blue?logo=slack" > < / a >
< / p >
2021-12-06 17:18:34 +00:00
2024-05-20 17:46:32 +00:00
![syft-demo ](https://user-images.githubusercontent.com/590471/90277200-2a253000-de33-11ea-893f-32c219eea11a.gif )
2022-08-04 21:13:28 +00:00
2024-05-20 17:46:32 +00:00
## Introduction
2021-12-06 17:18:34 +00:00
2024-05-20 17:46:32 +00:00
Syft is a powerful and easy-to-use open-source tool for generating Software Bill of Materials (SBOMs) for container images and filesystems. It provides detailed visibility into the packages and dependencies in your software, helping you manage vulnerabilities, license compliance, and software supply chain security.
Syft development is sponsored by [Anchore ](https://anchore.com/ ), and is released under the [Apache-2.0 License ](https://github.com/anchore/syft?tab=Apache-2.0-1-ov-file ). For commercial support options with Syft or Grype, please [contact Anchore ](https://get.anchore.com/contact/ ).
2020-08-04 19:22:34 +00:00
2021-10-15 16:13:28 +00:00
## Features
2022-03-25 15:36:43 +00:00
- Generates SBOMs for container images, filesystems, archives, and more to discover packages and libraries
2022-09-07 18:43:38 +00:00
- Supports OCI, Docker and [Singularity ](https://github.com/sylabs/singularity ) image formats
2022-03-25 15:36:43 +00:00
- Linux distribution identification
- Works seamlessly with [Grype ](https://github.com/anchore/grype ) (a fast, modern vulnerability scanner)
- Able to create signed SBOM attestations using the [in-toto specification ](https://github.com/in-toto/attestation/blob/main/spec/README.md )
2022-05-10 00:28:33 +00:00
- Convert between SBOM formats, such as CycloneDX, SPDX, and Syft's own format.
2022-03-25 15:36:43 +00:00
2021-10-04 13:29:27 +00:00
## Installation
2024-05-20 17:46:32 +00:00
Syft binaries are provided for Linux, macOS and Windows.
2022-02-09 19:33:26 +00:00
2021-10-04 13:29:27 +00:00
### Recommended
2024-05-20 17:46:32 +00:00
> ```bash
> curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
> ```
2021-10-04 13:29:27 +00:00
2024-06-10 15:29:53 +00:00
Install script options:
- `-b` : Specify a custom installation directory (defaults to `./bin` )
- `-d` : More verbose logging levels (`-d` for debug, `-dd` for trace)
- `-v` : Verify the signature of the downloaded artifact before installation (requires [`cosign` ](https://github.com/sigstore/cosign ) to be installed)
2022-06-08 21:39:22 +00:00
2024-05-20 17:46:32 +00:00
### Homebrew
```bash
brew install syft
2022-06-08 21:39:22 +00:00
```
2023-07-03 17:50:01 +00:00
### Scoop
```powershell
scoop install syft
```
2024-05-20 17:46:32 +00:00
### Chocolatey
The chocolatey distribution of Syft is community-maintained and not distributed by the Anchore team
```powershell
choco install syft -y
2021-10-04 13:29:27 +00:00
```
2022-02-09 19:33:26 +00:00
### Nix
2024-05-09 17:49:37 +00:00
**Note**: Nix packaging of Syft is [community maintained ](https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/admin/syft/default.nix ). Syft is available in the [stable channel ](https://wiki.nixos.org/wiki/Nix_channels#The_official_channels ) since NixOS `22.05` .
2022-02-09 19:33:26 +00:00
```bash
nix-env -i syft
```
2022-03-25 15:36:43 +00:00
... or, just try it out in an ephemeral nix shell:
2022-02-09 19:33:26 +00:00
```bash
nix-shell -p syft
```
2021-10-04 13:29:27 +00:00
2020-08-04 19:22:34 +00:00
## Getting started
2022-08-04 21:14:23 +00:00
### SBOM
2020-08-04 19:22:34 +00:00
2022-03-25 15:36:43 +00:00
To generate an SBOM for a container image:
2024-01-12 22:39:13 +00:00
```bash
2022-03-25 15:36:43 +00:00
syft < image >
2021-03-23 17:00:25 +00:00
```
2022-03-25 15:36:43 +00:00
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` :
2020-08-04 19:22:34 +00:00
2024-01-12 22:39:13 +00:00
```bash
2022-03-25 15:36:43 +00:00
syft < image > --scope all-layers
2020-08-04 19:22:34 +00:00
```
2021-10-04 13:29:27 +00:00
### Output formats
2024-05-20 17:46:32 +00:00
The output format for Syft is configurable as well using the `-o` (or `--output` ) option:
2021-10-04 13:29:27 +00:00
2020-08-04 19:22:34 +00:00
```
2022-03-25 15:36:43 +00:00
syft < image > -o < format >
2020-08-04 19:22:34 +00:00
```
2021-11-02 19:00:56 +00:00
Where the `formats` available are:
2023-10-30 21:25:30 +00:00
- `syft-json` : Use this to get as much information out of Syft as possible!
- `syft-text` : A row-oriented, human-and-machine-friendly output.
2024-06-21 16:32:59 +00:00
- `cyclonedx-xml` : A XML report conforming to the [CycloneDX 1.6 specification ](https://cyclonedx.org/specification/overview/ ).
- `cyclonedx-xml@1.5` : A XML report conforming to the [CycloneDX 1.5 specification ](https://cyclonedx.org/specification/overview/ ).
- `cyclonedx-json` : A JSON report conforming to the [CycloneDX 1.6 specification ](https://cyclonedx.org/specification/overview/ ).
- `cyclonedx-json@1.5` : A JSON report conforming to the [CycloneDX 1.5 specification ](https://cyclonedx.org/specification/overview/ ).
2023-03-20 14:10:35 +00:00
- `spdx-tag-value` : A tag-value formatted report conforming to the [SPDX 2.3 specification ](https://spdx.github.io/spdx-spec/v2.3/ ).
- `spdx-tag-value@2.2` : A tag-value formatted report conforming to the [SPDX 2.2 specification ](https://spdx.github.io/spdx-spec/v2.2.2/ ).
- `spdx-json` : A JSON report conforming to the [SPDX 2.3 JSON Schema ](https://github.com/spdx/spdx-spec/blob/v2.3/schemas/spdx-schema.json ).
- `spdx-json@2.2` : A JSON report conforming to the [SPDX 2.2 JSON Schema ](https://github.com/spdx/spdx-spec/blob/v2.2/schemas/spdx-schema.json ).
2023-10-30 21:25:30 +00:00
- `github-json` : A JSON report conforming to GitHub's dependency snapshot format.
- `syft-table` : A columnar summary (default).
2022-06-17 18:04:31 +00:00
- `template` : Lets the user specify the output format. See ["Using templates" ](#using-templates ) below.
2024-06-21 16:32:59 +00:00
Note that flags using the @< version > can be used for earlier versions of each specification as well.
2024-05-20 17:46:32 +00:00
### Supported Ecosystems
2022-10-29 20:18:53 +00:00
2024-05-20 17:46:32 +00:00
- Alpine (apk)
- C (conan)
- C++ (conan)
- Dart (pubs)
- Debian (dpkg)
- Dotnet (deps.json)
- Objective-C (cocoapods)
- Elixir (mix)
- Erlang (rebar3)
- Go (go.mod, Go binaries)
- Haskell (cabal, stack)
- Java (jar, ear, war, par, sar, nar, native-image)
- JavaScript (npm, yarn)
- Jenkins Plugins (jpi, hpi)
- Linux kernel archives (vmlinz)
- Linux kernel modules (ko)
- Nix (outputs in /nix/store)
- PHP (composer)
- Python (wheel, egg, poetry, requirements.txt)
- Red Hat (rpm)
- Ruby (gem)
- Rust (cargo.lock)
- Swift (cocoapods, swift-package-manager)
- Wordpress plugins
2022-10-29 20:18:53 +00:00
2024-05-20 17:46:32 +00:00
## Documentation
Our [wiki ](https://github.com/anchore/syft/wiki ) contains further details on the following topics:
* [Supported Sources ](https://github.com/anchore/syft/wiki/supported-sources )
* [File Selection ](https://github.com/anchore/syft/wiki/file-selection )
* [Excluding file paths ](https://github.com/anchore/syft/wiki/excluding-file-paths )
* [Output formats ](https://github.com/anchore/syft/wiki/output-formats )
* [Package Cataloger Selection ](https://github.com/anchore/syft/wiki/package-cataloger-selection )
* [Concepts ](https://github.com/anchore/syft/wiki/package-cataloger-selection#concepts )
* [Examples ](https://github.com/anchore/syft/wiki/package-cataloger-selection#examples )
* [Using templates ](https://github.com/anchore/syft/wiki/using-templates )
* [Multiple outputs ](https://github.com/anchore/syft/wiki/multiple-outputs )
* [Private Registry Authentication ](https://github.com/anchore/syft/wiki/private-registry-authentication )
* [Local Docker Credentials ](https://github.com/anchore/syft/wiki/private-registry-authentication#local-docker )
* [Docker Credentials in Kubernetes ](https://github.com/anchore/syft/wiki/private-registry-authentication#docker-credentials-in-kubernetes )
* [Attestation (experimental) ](https://github.com/anchore/syft/wiki/attestation )
* [Keyless Support ](https://github.com/anchore/syft/wiki/attestation#keyless-support )
* [Local private key support ](https://github.com/anchore/syft/wiki/attestation#local-private-key-support )
* [Adding an SBOM to an image as an attestation using Syft ](https://github.com/anchore/syft/wiki/attestation#adding-an-sbom-to-an-image-as-an-attestation-using-syft )
* [Configuration ](https://github.com/anchore/syft/wiki/configuration )
## Syft Team Meetings
The Syft Team hold regular community meetings online. All are welcome to join to bring topics for discussion.
- Check the [calendar ](https://calendar.google.com/calendar/u/0/r?cid=Y182OTM4dGt0MjRtajI0NnNzOThiaGtnM29qNEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t ) for the next meeting date.
- Add items to the [agenda ](https://docs.google.com/document/d/1ZtSAa6fj2a6KRWviTn3WoJm09edvrNUp4Iz_dOjjyY8/edit?usp=sharing ) (join [this group ](https://groups.google.com/g/anchore-oss-community ) for write access to the [agenda ](https://docs.google.com/document/d/1ZtSAa6fj2a6KRWviTn3WoJm09edvrNUp4Iz_dOjjyY8/edit?usp=sharing ))
- See you there!