Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

121,734

Downloads of v 1.26.1:

576

Last Update:

24 May 2025

Package Maintainer(s):

Software Author(s):

  • Anhore Inc

Tags:

syft docker image bom admin

Syft

  • 1
  • 2
  • 3

1.26.1 | Updated: 24 May 2025

Downloads:

121,734

Downloads of v 1.26.1:

576

Maintainer(s):

Software Author(s):

  • Anhore Inc

Syft 1.26.1

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Anhore Inc. The inclusion of Anhore Inc trademark(s), if any, upon this webpage is solely to identify Anhore Inc goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Syft, run the following command from the command line or from PowerShell:

>

To upgrade Syft, run the following command from the command line or from PowerShell:

>

To uninstall Syft, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade syft -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade syft -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install syft
  win_chocolatey:
    name: syft
    version: '1.26.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'syft' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.26.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller syft
{
    Name     = "syft"
    Version  = "1.26.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'syft':
  ensure   => '1.26.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 24 May 2025.

Description

Syft

Description

A CLI tool and Go library for generating a Software Bill of Materials (SBOM) from container images and filesystems https://github.com/anchore/syft

Features

  • Install and uninstall via Chocolatey
  • Supports 64-bit version

Usage

Direct

choco install syft -y

YAML (Foreman, puppetlabs/chocolatey module)

syft:
  ensure: latest
  provider: chocolatey

or

syft:
  ensure: latest

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageName        = 'syft'
$version            = '1.26.1'
$url64              = "https://github.com/anchore/syft/releases/download/v"+$version+"/syft_"+$version+"_windows_amd64.zip"
$checksum64         = '7af7acb9f81bdddbc343855cb3a42e1d38ae9a1b044bfcd9b975a118d107849e'
$toolsDir           = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = $packageName
  UnzipLocation = $toolsDir
  url64bit      = $url64
  checksumType64= 'sha256'
  checksum64    = $checksum64
}

Install-ChocolateyZipPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Syft 1.26.0 25 Friday, May 23, 2025 Approved
Syft 1.25.1 138 Wednesday, May 21, 2025 Approved
Syft 1.25.0 140 Saturday, May 17, 2025 Approved
Syft 1.24.0 147 Thursday, May 15, 2025 Approved
Syft 1.23.1 512 Sunday, April 27, 2025 Approved
Syft 1.23.0 108 Saturday, April 26, 2025 Approved
Syft 1.22.0 520 Wednesday, April 2, 2025 Approved
Syft 1.21.0 339 Thursday, March 20, 2025 Approved
Syft 1.20.0 457 Saturday, March 1, 2025 Approved
Syft 1.19.0 554 Thursday, January 30, 2025 Approved
Syft 1.18.1 944 Saturday, December 14, 2024 Approved
Syft 1.18.0 105 Wednesday, December 11, 2024 Approved
Syft 1.17.0 442 Friday, November 22, 2024 Approved
Syft 1.16.0 420 Wednesday, November 6, 2024 Approved
Syft 1.15.0 217 Tuesday, October 29, 2024 Approved
Syft 1.14.2 98 Saturday, October 26, 2024 Approved
Syft 1.14.1 298 Sunday, October 20, 2024 Approved
Syft 1.14.0 87 Saturday, October 19, 2024 Approved
Syft 1.13.0 440 Saturday, September 28, 2024 Approved
Syft 1.12.2 412 Thursday, September 12, 2024 Approved
Syft 1.11.1 422 Saturday, August 24, 2024 Approved
Syft 1.11.0 255 Monday, August 12, 2024 Approved
Syft 1.10.0 296 Wednesday, July 31, 2024 Approved
Syft 1.9.0 356 Saturday, July 13, 2024 Approved
Syft 1.8.0 379 Wednesday, June 26, 2024 Approved
Syft 1.7.0 2927 Saturday, June 15, 2024 Approved
Syft 1.6.0 2224 Monday, June 10, 2024 Approved
Syft 1.5.0 971 Wednesday, June 5, 2024 Approved
Syft 1.4.0 5031 Monday, May 13, 2024 Approved
Syft 1.3.0 1036 Thursday, May 9, 2024 Approved
Syft 1.2.0 4097 Sunday, April 14, 2024 Approved
Syft 1.1.1 49 Sunday, April 14, 2024 Approved
Syft 1.1.0 3602 Tuesday, March 26, 2024 Approved
Syft 1.0.1 70 Monday, March 25, 2024 Approved
Syft 1.0.0 4413 Saturday, March 2, 2024 Approved
Syft 0.105.1 46 Saturday, March 2, 2024 Approved
Syft 0.105.0 2098 Saturday, February 17, 2024 Approved
Syft 0.104.0 83 Friday, February 16, 2024 Approved
Syft 0.103.1 1004 Tuesday, February 6, 2024 Approved
Syft 0.102.0 428 Thursday, February 1, 2024 Approved
Syft 0.101.1 2753 Saturday, January 20, 2024 Approved
Syft 0.101.0 356 Thursday, January 18, 2024 Approved
Syft 0.100.0 547 Monday, January 15, 2024 Approved
Syft 0.99.0 208 Friday, January 12, 2024 Approved
Syft 0.98.0 1195 Monday, January 8, 2024 Approved
Syft 0.97.1 12535 Saturday, December 2, 2023 Approved
Syft 0.97.0 83 Friday, December 1, 2023 Approved
Syft 0.96.0 80 Friday, December 1, 2023 Approved
Syft 0.95.0 4309 Monday, November 13, 2023 Approved
Syft 0.94.0 262 Friday, November 10, 2023 Approved
Syft 0.93.0 6377 Thursday, October 12, 2023 Approved
Syft 0.92.0 140 Wednesday, October 11, 2023 Approved
Syft 0.91.0 4207 Thursday, September 21, 2023 Approved
Syft 0.90.0 652 Friday, September 15, 2023 Approved
Syft 0.89.0 1367 Monday, September 11, 2023 Approved
Syft 0.88.0 53 Monday, September 11, 2023 Approved
Syft 0.87.1 57 Monday, September 11, 2023 Approved
Syft 0.87.0 2130 Thursday, September 7, 2023 Approved
Syft 0.86.1 210 Wednesday, September 6, 2023 Approved
Syft 0.86.0 811 Tuesday, September 5, 2023 Approved
Syft 0.85.0 13422 Wednesday, July 19, 2023 Approved
Syft 0.84.1 3568 Sunday, July 9, 2023 Approved
Syft 0.84.0 65 Saturday, July 8, 2023 Approved
Syft 0.83.1 76 Saturday, July 8, 2023 Approved
Syft 0.83.0 83 Saturday, July 8, 2023 Approved
Syft 0.82.0 8321 Saturday, June 3, 2023 Approved
Syft 0.81.0 496 Friday, June 2, 2023 Approved
Syft 0.80.0 451 Thursday, June 1, 2023 Approved
Syft 0.79.0 14881 Tuesday, April 25, 2023 Approved
Syft 0.78.0 77 Tuesday, April 25, 2023 Approved
Syft 0.77.0 77 Monday, April 24, 2023 Approved
Syft 0.76.1 156 Thursday, April 6, 2023 Approved
Syft 0.76.0 79 Tuesday, April 4, 2023 Approved
Syft 0.75.0 198 Wednesday, March 15, 2023 Approved
Syft 0.74.1 87 Tuesday, March 14, 2023 Approved
Syft 0.74.0 149 Monday, March 6, 2023 Approved
Syft 0.73.0 91 Wednesday, March 1, 2023 Approved
Syft 0.72.1 90 Friday, February 24, 2023 Approved
Syft 0.72.0 60 Friday, February 24, 2023 Approved
Syft 0.71.0 108 Thursday, February 23, 2023 Approved
Syft 0.70.0 175 Saturday, February 4, 2023 Approved
Syft 0.69.0 95 Wednesday, February 1, 2023 Approved
Syft 0.68.1 79 Thursday, January 26, 2023 Approved
Syft 0.68.0 70 Thursday, January 26, 2023 Approved
Syft 0.66.2 110 Friday, January 20, 2023 Approved
Syft 0.66.1 61 Friday, January 20, 2023 Approved
Syft 0.65.0 210 Tuesday, January 10, 2023 Approved
Syft 0.64.0 106 Tuesday, January 3, 2023 Approved
Syft 0.63.0 119 Thursday, December 15, 2022 Approved
Syft 0.62.3 150 Thursday, December 1, 2022 Approved
Syft 0.62.2 73 Wednesday, November 30, 2022 Approved
Syft 0.62.1 69 Tuesday, November 29, 2022 Approved
Syft 0.62.0 106 Monday, November 21, 2022 Approved
Syft 0.61.0 83 Saturday, November 19, 2022 Approved
Syft 0.60.3 135 Friday, November 4, 2022 Approved
Syft 0.60.2 83 Thursday, November 3, 2022 Approved
Syft 0.60.1 75 Wednesday, November 2, 2022 Approved
Syft 0.59.0 101 Wednesday, October 26, 2022 Approved
Syft 0.58.0 86 Wednesday, October 26, 2022 Approved
Syft 0.57.0 63 Wednesday, October 26, 2022 Approved
Syft 0.56.0 78 Tuesday, October 25, 2022 Approved
Syft 0.55.0 193 Saturday, September 10, 2022 Approved
Syft 0.54.0 131 Thursday, August 18, 2022 Approved
Syft 0.53.4 76 Wednesday, August 17, 2022 Approved
Syft 0.52.0 207 Saturday, July 23, 2022 Approved
Syft 0.51.0 95 Saturday, July 16, 2022 Approved
Syft 0.50.0 105 Thursday, July 7, 2022 Approved
Syft 0.49.0 85 Saturday, July 2, 2022 Approved
Syft 0.46.3 136 Sunday, June 5, 2022 Approved
Syft 0.46.1 86 Sunday, May 22, 2022 Approved
Syft 0.46.0 83 Saturday, May 14, 2022 Approved
Syft 0.45.1 80 Friday, May 6, 2022 Approved
Syft 0.43.2 85 Sunday, April 10, 2022 Approved
Syft 0.43.0 161 Friday, April 1, 2022 Approved
Syft 0.37.10 134 Thursday, February 10, 2022 Approved
Syft 0.36.0 87 Monday, January 31, 2022 Approved
Syft 0.35.0 96 Monday, January 31, 2022 Approved
Syft 0.34.0 79 Wednesday, January 5, 2022 Approved

This package has no dependencies.

Discussion for the Syft Package

Ground Rules:

  • This discussion is only about Syft and the Syft package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Syft, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus