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:

117,700

Downloads of v 0.99.0:

47

Last Update:

02 Sep 2025

Package Maintainer(s):

Software Author(s):

  • Anchore Inc

Tags:

Grype

  • 1
  • 2
  • 3

0.99.0 | Updated: 02 Sep 2025

Downloads:

117,700

Downloads of v 0.99.0:

47

Maintainer(s):

Software Author(s):

  • Anchore Inc

Grype 0.99.0

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

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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

>

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

>

To uninstall Grype, 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 grype -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 grype -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 grype
  win_chocolatey:
    name: grype
    version: '0.99.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'grype' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.99.0'
end

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


cChocoPackageInstaller grype
{
    Name     = "grype"
    Version  = "0.99.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'grype':
  ensure   => '0.99.0',
  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 02 Sep 2025.

Description

Grype

Description

A vulnerability scanner for container images and filesystems. Easily install the binary to try it out. Works with Syft, the powerful SBOM (software bill of materials) tool for container images and filesystems. https://github.com/anchore/grype

Features

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

Usage

Direct

choco install grype -y

YAML (Foreman, puppetlabs/chocolatey module)

grype:
  ensure: latest
  provider: chocolatey

or

grype:
  ensure: latest

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

$packageName        = 'grype'
$version            = '0.99.0'
$url64              = "https://github.com/anchore/grype/releases/download/v"+$version+"/grype_"+$version+"_windows_amd64.zip"
$checksum64         = '2f012d11b3bfe69e1bb3177624dbce84fb917bc1530af2d07ccfd19d8a110540'
$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
Grype 0.98.0 825 Sunday, August 17, 2025 Approved
Grype 0.97.2 179 Wednesday, August 13, 2025 Approved
Grype 0.97.1 120 Tuesday, August 12, 2025 Approved
Grype 0.97.0 365 Thursday, July 31, 2025 Approved
Grype 0.96.1 195 Saturday, July 26, 2025 Approved
Grype 0.96.0 238 Wednesday, July 16, 2025 Approved
Grype 0.95.0 315 Monday, July 7, 2025 Approved
Grype 0.94.0 514 Monday, June 16, 2025 Approved
Grype 0.93.0 128 Thursday, June 12, 2025 Approved
Grype 0.92.2 462 Wednesday, May 21, 2025 Approved
Grype 0.92.1 198 Saturday, May 17, 2025 Approved
Grype 0.92.0 163 Thursday, May 15, 2025 Approved
Grype 0.91.2 379 Saturday, April 26, 2025 Approved
Grype 0.91.1 23 Saturday, April 26, 2025 Approved
Grype 0.91.0 477 Wednesday, April 2, 2025 Approved
Grype 0.90.0 295 Thursday, March 20, 2025 Approved
Grype 0.89.1 177 Sunday, March 16, 2025 Approved
Grype 0.89.0 163 Monday, March 10, 2025 Approved
Grype 0.88.0 53 Monday, March 10, 2025 Approved
Grype 0.87.0 766 Monday, January 27, 2025 Approved
Grype 0.86.1 685 Saturday, December 14, 2024 Approved
Grype 0.86.0 152 Tuesday, December 10, 2024 Approved
Grype 0.85.0 399 Friday, November 22, 2024 Approved
Grype 0.84.0 383 Wednesday, November 6, 2024 Approved
Grype 0.83.0 196 Tuesday, October 29, 2024 Approved
Grype 0.82.2 65 Saturday, October 26, 2024 Approved
Grype 0.82.1 270 Saturday, October 19, 2024 Approved
Grype 0.82.0 124 Sunday, October 13, 2024 Approved
Grype 0.81.0 120 Thursday, October 10, 2024 Approved
Grype 0.80.2 268 Saturday, September 28, 2024 Approved
Grype 0.80.1 332 Thursday, September 12, 2024 Approved
Grype 0.80.0 278 Saturday, August 24, 2024 Approved
Grype 0.79.6 244 Tuesday, August 13, 2024 Approved
Grype 0.79.5 72 Monday, August 12, 2024 Approved
Grype 0.79.4 227 Thursday, August 1, 2024 Approved
Grype 0.79.3 280 Monday, July 15, 2024 Approved
Grype 0.79.2 311 Wednesday, July 3, 2024 Approved
Grype 0.79.1 1937 Tuesday, June 18, 2024 Approved
Grype 0.79.0 1146 Saturday, June 15, 2024 Approved
Grype 0.78.0 3722 Friday, May 31, 2024 Approved
Grype 0.77.4 4754 Sunday, May 12, 2024 Approved
Grype 0.77.3 564 Thursday, May 9, 2024 Approved
Grype 0.77.2 334 Tuesday, May 7, 2024 Approved
Grype 0.77.1 241 Monday, May 6, 2024 Approved
Grype 0.77.0 2240 Saturday, April 20, 2024 Approved
Grype 0.76.0 46 Saturday, April 20, 2024 Approved
Grype 0.75.0 1485 Saturday, April 13, 2024 Approved
Grype 0.74.7 7803 Saturday, March 2, 2024 Approved
Grype 0.74.6 2088 Saturday, February 17, 2024 Approved
Grype 0.74.5 111 Friday, February 16, 2024 Approved
Grype 0.74.4 928 Tuesday, February 6, 2024 Approved
Grype 0.74.3 446 Thursday, February 1, 2024 Approved
Grype 0.74.2 2662 Saturday, January 20, 2024 Approved
Grype 0.74.1 347 Thursday, January 18, 2024 Approved
Grype 0.74.0 673 Friday, January 12, 2024 Approved
Grype 0.73.5 1174 Monday, January 8, 2024 Approved
Grype 0.73.4 2752 Thursday, December 21, 2023 Approved
Grype 0.73.3 9818 Saturday, December 2, 2023 Approved
Grype 0.73.2 126 Friday, December 1, 2023 Approved
Grype 0.73.1 4360 Monday, November 13, 2023 Approved
Grype 0.73.0 123 Friday, November 10, 2023 Approved
Grype 0.72.0 3449 Wednesday, October 25, 2023 Approved
Grype 0.71.0 2294 Tuesday, October 17, 2023 Approved
Grype 0.70.0 291 Monday, October 16, 2023 Approved
Grype 0.69.1 2415 Tuesday, October 3, 2023 Approved
Grype 0.69.0 74 Tuesday, October 3, 2023 Approved
Grype 0.68.1 1528 Monday, September 25, 2023 Approved
Grype 0.68.0 789 Thursday, September 21, 2023 Approved
Grype 0.67.0 546 Friday, September 15, 2023 Approved
Grype 0.66.0 5115 Friday, September 1, 2023 Approved
Grype 0.65.2 2112 Thursday, August 24, 2023 Approved
Grype 0.65.1 4049 Friday, August 11, 2023 Approved
Grype 0.65.0 2252 Tuesday, August 1, 2023 Approved
Grype 0.64.2 2330 Saturday, July 22, 2023 Approved
Grype 0.64.1 1197 Wednesday, July 19, 2023 Approved
Grype 0.64.0 323 Tuesday, July 18, 2023 Approved
Grype 0.63.0 2227 Sunday, July 9, 2023 Approved
Grype 0.62.3 72 Sunday, July 9, 2023 Approved
Grype 0.62.2 7968 Tuesday, June 6, 2023 Approved
Grype 0.62.1 330 Sunday, June 4, 2023 Approved
Grype 0.62.0 77 Saturday, June 3, 2023 Approved
Grype 0.61.1 79 Saturday, June 3, 2023 Approved
Grype 0.61.0 496 Friday, June 2, 2023 Approved
Grype 0.60.0 15338 Wednesday, March 29, 2023 Approved
Grype 0.59.1 102 Monday, March 20, 2023 Approved
Grype 0.59.0 128 Monday, March 6, 2023 Approved
Grype 0.58.0 81 Friday, March 3, 2023 Approved
Grype 0.57.1 77 Friday, March 3, 2023 Approved
Grype 0.57.0 69 Friday, March 3, 2023 Approved
Grype 0.56.0 75 Thursday, March 2, 2023 Approved
Grype 0.55.0 62 Thursday, March 2, 2023 Approved
Grype 0.54.0 74 Wednesday, March 1, 2023 Approved
Grype 0.53.1 55 Wednesday, March 1, 2023 Approved
Grype 0.53.0 83 Tuesday, February 28, 2023 Approved
Grype 0.52.0 60 Tuesday, February 28, 2023 Approved
Grype 0.51.0 65 Tuesday, February 28, 2023 Approved
Grype 0.50.2 330 Monday, November 21, 2022 Approved
Grype 0.50.1 98 Wednesday, October 26, 2022 Approved
Grype 0.50.0 81 Tuesday, October 25, 2022 Approved
Grype 0.49.0 92 Saturday, September 10, 2022 Approved
Grype 0.46.0 83 Wednesday, August 17, 2022 Approved
Grype 0.43.0 77 Saturday, July 23, 2022 Approved
Grype 0.41.0 106 Thursday, July 7, 2022 Approved
Grype 0.40.1 96 Saturday, July 2, 2022 Approved
Grype 0.38.0 87 Sunday, June 5, 2022 Approved

This package has no dependencies.

Discussion for the Grype Package

Ground Rules:

  • This discussion is only about Grype and the Grype 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 Grype, 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