You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During differential fuzzing with github.com/pandatix/go-cvss, I discovered that your implementation does not emit valid CVSS v2 vectors.
Indeed, after parsing it, it only emit the temporal metrics that are different of ND (Not Defined).
In order to be compliant, you must emit all group metrics even if they are equal to ND, according to the first.org specification Table 13 that shows all metrics of a group are required.
Notice this is not the case with CVSS v3 as first.org specification Table 15 states temporal and environmental metrics are not mandatory when equal to X (Not Defined).
During differential fuzzing with
github.com/pandatix/go-cvss
, I discovered that your implementation does not emit valid CVSS v2 vectors.Indeed, after parsing it, it only emit the temporal metrics that are different of
ND
(Not Defined).In order to be compliant, you must emit all group metrics even if they are equal to
ND
, according to the first.org specification Table 13 that shows all metrics of a group are required.Notice this is not the case with CVSS v3 as first.org specification Table 15 states temporal and environmental metrics are not mandatory when equal to
X
(Not Defined).The following Go code illustrates this issue.
produces ->
The text was updated successfully, but these errors were encountered: