Enrich CycloneDX SBOMs with vulnerability data from Snyk and package metadata from ecosyste.ms using Parlay, then upload the enriched SBOM to Vulnetix.
CLI toolCycloneDXSPDX
Install & scan
$ go install github.com/snyk/parlay@latest # or download binary from GitHub releases: # https://github.com/snyk/parlay/releases/latest $ cat bom.json | parlay ecosystems enrich - | parlay snyk enrich - | jq '.' > enriched-bom.json
Run Parlay in CI
Scan on every push and upload the results to Vulnetix:
- name: Install Parlay
run: go install github.com/snyk/parlay@latest
- name: Enrich SBOM
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
run: cat bom.json | parlay ecosystems enrich - | parlay snyk enrich - > enriched-bom.json
- name: Upload to Vulnetix
run: vulnetix upload --file enriched-bom.json
Centralise Parlay results in Vulnetix
Upload Parlay CycloneDX, SPDX output to the Vulnetix platform to deduplicate findings, prioritise them with EPSS, CISA KEV and Coalition ESS exploit intelligence, and track remediation across every scanner in a single queue.