VOOZH about

URL: https://thenewstack.io/combining-sboms-with-security-info-chainguards-openvex/

⇱ Combining SBOMs With Security Data: Chainguard's OpenVEX - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2023-02-23 07:37:27
Combining SBOMs With Security Data: Chainguard's OpenVEX
Security / Software Development

Combining SBOMs With Security Data: Chainguard’s OpenVEX

Chainguard has added support for Vulnerability Exploitability eXchange (VEX) to Software Bill Of Materials (SBOMs) in an implementation called OpenVEX.
Feb 23rd, 2023 7:37am by Steven J. Vaughan-Nichols
👁 Featued image for: Combining SBOMs With Security Data: Chainguard’s OpenVEX
Image by Unsplash.

Software Bills of Materials tell you what code is in a program. Chainguard’s OpenVEX will tell you what’s wrong and what’s not quite right, but OK in your code.

Chainguard is already a security programming leader, and now it’s taking another step forward by adding support for Vulnerability Exploitability eXchange (VEX) to . This draft implementation is called OpenVEX.

Vexxed?

VEX, you ask? It’s a new Cybersecurity and Infrastructure Security Agency (CISA) working specification. It’s meant to be a machine-readable security advisory. As such, it’s integrated into existing security management tools and broader vulnerability tracking platforms. VEX data is integrated with SBOM data. You can do this by representing VEX data inside an existing SBOM, or within a dedicated VEX SBOM.

Within VEX records, you’ll find the following elements:

  • VEX metadata includes VEX format identifier, identifier string for the VEX document, author, author role, and timestamp.
  • Product details must include an identifier or family identifier. For example, a unique identifier or a combination of supplier name, product name, and version string.
  • Vulnerability details include the vulnerability data, such as its Common Vulnerabilities and Exposures (CVE) and vulnerability description.
  • One of four Product Vulnerability Status notifications:
    •  Not Affected:  No remediation is required regarding this vulnerability.
    • Affected: Actions are recommended to remediate or address this vulnerability.
    • Fixed: These product versions contain a fix for the vulnerability.
    • Under Investigation: It is not yet known whether the vulnerability affects these product versions. An update will be provided in a later release.

VEX gets its vulnerability data from the Common Security Advisory Framework. This is an OASIS reference that describes the creation, update, and interoperable exchange of security advisories as structured data on products, vulnerabilities, and the status of impact and remediation. This information is shared in JSON.

OpenVEX

Chainguard has taken the next logical step and has released an OpenVEX specification and reference toolchain. The company didn’t do it all on its own. It developed it with the support of several industry leaders, including Anchore, HPE, Google, TestifySec, VMware, and The Linux Foundation.

VEX has also been championed by the United States National Telecommunications and Information Administration and supported by the CISA. The goal of VEX is to improve the ability of organizations to identify and mitigate critical security threats.

Complementary Tools

OpenVEX is complementary to SBOM tools, allowing suppliers to communicate precise metadata about the vulnerability status of products directly to consumers and end-users. It was developed in collaboration with CISA’s VEX Working Group and is the first format to meet the VEX minimum requirements.  Chainguard has also put OpenVEX into production in its Wolfi Linux (un)distribution and Chainguard Images product.

The OpenVEX specification enables developers to communicate precise, actionable metadata to improve the signal-to-noise ratio for consumers of their software. OpenVEX makes it easy for software producers to describe their artifacts’ exploitability accurately.

And, just as importantly, OpenVEX makes it easier for software consumers to filter out false positives from vulnerability scanners. This means security professionals spend more time investigating worthwhile security concerns and less time weeding through erroneous findings. OpenVEX encodes false positives and enables consumers to prioritize vulnerability reports much more effectively.

That’s important because, according to Phil Venables, Google Cloud’s chief information security officer,  our increased knowledge of problems can lead to an “uncanny valley” of minor security problems. Lacking context, these minor problems can appear much larger than they are, leading folks to assume their code’s security has gotten worse.

The movement to provide SBOMs will dramatically increase transparency throughout the software supply chain. Forward-thinking organizations have realized that while transparency is great, noise in the vulnerability ecosystem will hamper SBOMs’ adoption and usefulness.

OpenVEX allows developers to generate VEX data for Wolfi packages using the distro’s companion tool, wolfictl. Users can also filter out noise, like false positives, from scanner results with VEX data using vexctl’s filtering feature.

Getting Started

You can start today with OpenVEX using the following steps:

  • You can scaffold new documents using `vexctl create`, which creates new vex documents from the command line.
  • Beginning upstream, you can produce VEX data for Wolfi packages using the distro’s companion tool `wolfictl.` Generate a VEX document for a Wolfi package using `wolfictl vex package -h`, or for an entire SBOM of Wolfi packages using `wolfictl vex sbom -h`.
  • You can assemble VEX data from existing vex sources using `vexctl`’s merge feature.
  • And most importantly, you can filter out noise, like false positives from scanner results, with VEX data using `vexctl`’s filtering

End Result

The end result is that OpenVEX has simplified the remediation process for software vulnerability management. This is still a work in progress. We’ll need to work together to build formats and tooling that can be easily integrated into existing development practices.

OpenVEX is being released and maintained out in the open to encourage collaboration and simplify the remediation process for all stakeholders. Eventually, the combination of SBOM and VEX will lead to building programs faster and more securely than ever.

As Ariadne Conill, Chainguard’s principal software engineer, put it, “managing vulnerability sprawl in software distributions is a significant challenge, as each vulnerability has to be researched by security teams to determine whether they are applicable to the versions present in the software distribution.

“The launch of OpenVEX allows all stakeholders, from the upstream developer to distributions and end users, to collaborate together on vulnerability remediation anywhere software is consumed, simplifying the remediation process for everybody.”

TRENDING STORIES
Steven J. Vaughan-Nichols, aka sjvn, has been writing about technology and the business of technology since CP/M-80 was the cutting-edge PC operating system, 300bps was a fast internet connection, WordStar was the state-of-the-art word processor, and we liked it.
Read more from Steven J. Vaughan-Nichols
SHARE THIS STORY
TRENDING STORIES
The Linux Foundation and VMware Tanzu are sponsors of The New Stack.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.