Skip to content

Instantly share code, notes, and snippets.

@HariSekhon
Last active September 22, 2024 17:18
Show Gist options
  • Save HariSekhon/bf31567494e7bf2127ec3f901909b5de to your computer and use it in GitHub Desktop.
Save HariSekhon/bf31567494e7bf2127ec3f901909b5de to your computer and use it in GitHub Desktop.
grype.md from HariSekhon/Knowledge-Base repo: https://github.com/HariSekhon/Knowledge-Base

Grype

https://github.com/anchore/grype

Security scanning CLI tool for vulnerabilities, leaked secrets and misconfigurations.

Scans:

  • Files for secrets and configuration errors
  • Docker images for CVE package vulnerabilities

Install

On Mac, using Homebrew:

brew install grype

Or download the latest binary from GitHub or any specific version using DevOps-Bash-tools script:

install_grype.sh  # "$version"

which installs to /usr/local/bin/grype, or $HOME/bin/grype if you don't have write permission to /usr/local/bin.

Run

Filesystem Scan

Filesystem scan and exit with code 1 for any HIGH OR CRITICAL level issues:

grype dir:"$dir" --verbose --fail-on 'high'

Docker Image Scan

Scan container images:

grype '$docker_image' --verbose --scope all-layers --fail-on 'high'

Scan the docker image for a given running container:

grype image "$(docker inspect --format='{{.Image}}' "$container_id_or_name">)" --verbose --scope all-layers --fail-on 'high'

Jenkins CI/CD

Jenkins CI/CD functions for running Grype are available here:

HariSekhon/Jenkins - vars/grype.groovy

HariSekhon/Jenkins - vars/grypeFS.groovy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment