Last active
January 16, 2025 14:36
-
-
Save djoreilly/4f7c1b55ace61e6b7ce2b94afc11d594 to your computer and use it in GitHub Desktop.
Add CVEs to govulncheck report
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# govulncheck ./... | go-vuln-cve.py | |
import json | |
import re | |
import sys | |
from urllib.request import urlopen | |
GO_PAT=re.compile('^Vulnerability.*(GO-[0-9]{4}-[0-9]+)') | |
GO_TO_CVES = {} | |
vulns_json = urlopen("https://vuln.go.dev/index/vulns.json").read() | |
vulns = json.loads(vulns_json) | |
for vuln in vulns: | |
cves = [] | |
for alias in vuln.get('aliases') or []: | |
if alias.startswith('CVE-'): | |
cves.append(alias) | |
GO_TO_CVES[vuln['id']] = ", ".join(cves) | |
for line in sys.stdin: | |
line = line.strip() | |
match = GO_PAT.search(line) | |
if match: | |
line += " " + GO_TO_CVES[match.group(1)] | |
print(line) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment