CVE Remediation for Chainguard Libraries
An overview of the CVE remediation feature for Chainguard Libraries.
Product Docs
Open Source
Compliance
Education
Chainguard’s chainver
tool enables verification that your Java and Python dependencies come from Chainguard Libraries, providing critical visibility into your software supply chain security. By verifying binary artifacts across your projects and repositories, you can ensure dependencies are sourced from Chainguard’s hardened build environment rather than potentially compromised public repositories, identify opportunities to improve security posture, and maintain compliance with supply chain security policies.
Chainguard provides the command line tool chainver
to enable this
verification with the following features:
The following requirements must be met:
chainctl
installed and available on the PATH
.cosign
installed and available on the PATH
.Download the latest release - version 0.3.8
Use the following script to automatically determine the latest available version and download the ZIP archive.
# Get the latest version
export LATEST=$(curl -s "https://storage.googleapis.com/us.artifacts.prod-enforce-fabc.appspot.com/?prefix=chainver/" | \
grep -oE 'chainver/[0-9]+\.[0-9]+\.[0-9]+/' | \
sed 's|chainver/||g' | sed 's|/$||g' | \
sort -V | tail -1)
# Download the release zip file
curl -LO "https://dl.enforce.dev/chainver/${LATEST}/chainver-v${LATEST}.zip"
Extract the ZIP archive and find archives for different operating systems and
processor architectures in the created chainver-package/archives
directory:
chainver_0.3.8_Linux_x86_64.tar.gz
chainver_0.3.8_Darwin_arm64.tar.gz
chainver_0.3.8_Darwin_x86_64.tar.gz
chainver_0.3.8_Linux_arm64.tar.gz
chainver_0.3.8_Windows_x86_64.zip
Extract the package, in the example for MacOS and ARM processor, and copy it to
a directory that is on the PATH
:
$ tar xfvz chainver_0.3.8_Darwin_arm64.tar.gz
x LICENSE
x README.md
x chainver
Verify running chainver
and inspect the version:
$ chainver version
ChainVer version 0.3.8 (3277bb5)
built with go1.24.0 on darwin/arm64
Detailed installation and user instructions are included with the provided
distribution in the chainver-package/README.md
file and with the chainver help
command.
An overview of the CVE remediation feature for Chainguard Libraries.
Interview with Dustin Kirkland about the benefits Chainguard Libraries provide to developers
Interview with Dustin Kirkland explaining how Chainguard Libraries integrate seamlessly into existing developer …
Learning Lab for June 2025 on Chainguard Libraries for Python and Supply Chain Security
Learnning Lab in May 2025 with Manfred Moser
Last updated: 2025-07-23 15:09