Vulnerability States
Every vulnerability entry has a state that reflects where it sits in the triage lifecycle.
State is not written into the YAML directly — it is derived from the entry’s verdict and resolution fields each time a report is generated.
The states
| State | Derivation | Meaning |
|---|---|---|
|
no |
The finding has been registered but triage has not concluded. |
|
|
Triage is complete and the vulnerability impacts the project. The entry awaits a fix. |
|
|
A resolution has been recorded for the entry. The maintainer’s triage work is complete. |
|
|
Triage concluded that no remediation will be applied. Either the project is not affected, or the risk was assessed and accepted. |
Derivation precedence
The rules are evaluated in this order:
-
If no
verdictis recorded, state isunder investigation. -
Otherwise, if a
resolutionis recorded, state isresolved(regardless of verdict). -
Otherwise, state is derived from the
verdict:affectedyieldsopen;not affectedandrisk acceptableyielddismissed.
Terminal states
resolved and dismissed are both terminal.
The distinction is intentional: resolved means a resolution was recorded (a fix, or a hygiene update on a not affected entry), dismissed means the entry was closed without any resolution because none was warranted.
A not affected entry that later records a hygiene update moves from dismissed to resolved and appears in the Fixed In column.
Perspective
State describes the maintainer’s view: has the triage team finished its work on this entry? It does not describe whether a currently running release contains the fix.
An entry can be resolved while the release carrying the fix is still unpublished.
Release-scoped questions are answered by other means:
-
Use the
--releasefilter onvulnlog reportto list vulnerabilities present in a specific release. -
See the
Fixed Incolumn (the entry’sresolution.infield) for the release that contains the fix.
Typical progression
-
New entry. No
verdict. State isunder investigation. -
Triage complete.
verdictset.-
Verdict
affected: state isopen, awaiting a fix. -
Verdict
not affected: state isdismissed. No further action is required. -
Verdict
risk acceptable: state isdismissed. The risk is accepted without remediation.
-
-
Closure.
resolutionrecorded. State isresolvedregardless of verdict. The verdict is retained.
State in the HTML report
The HTML report produced by vulnlog report is the project owners view (the view from and for the project maintainer team) of the triage backlog across all tracked releases.
Entries in every state appear in the same table so the maintainer can see the complete picture.
| Column | Content |
|---|---|
|
|
|
Releases in which the vulnerability was reported. |
|
Release in which the |
See vulnlog report for command usage and filters.