Replies: 1 comment 1 reply
-
I'm disinclined to do this because defining a
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, the
Vulnerability
struct is defined as follows:Problem
The
Name
field is intended to store the unique CVE identifier (e.g.,CVE-2022-36190
). However, depending on the updater, the actual mapping can differ:Ubuntu Updater
Name
is mapped tometadata>title
.This title often contains more than just the CVE ID — it’s closer to a descriptive title.
Example (
metadata>title
):This includes both the CVE ID and a brief context.
RHEL (VEX, etc.) Updater
Name
is mapped todocument.tracking.id
, which is purely the CVE ID (ideal forName
).document.title
, which contains the descriptive title, is discarded.Example (
document.title
):Proposal
To better capture human-readable vulnerability descriptions, I propose:
Title
field to theVulnerability
struct.Updater-specific mapping:
document.title
→Vulnerability.Title
.metadata>title
→Vulnerability.Title
, but extract the CVE ID from it and set that toName
.Benefits
Name
) and a short human-readable description (Title
).Name
for Ubuntu-sourced vulnerabilities.Beta Was this translation helpful? Give feedback.
All reactions