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
{{ message }}
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.
During differential fuzzing with github.com/pandatix/go-cvss, I discovered that your implementation emits CVSS v2 vectors that are invalid.
Indeed, you are outputing the CVSS v2 vector in ascendent order of metrics.
Nevertheless, the first.org specification states at Section 2.4 that a vector has a "predetermined order", documented in Table 13.
In order to be compliant, you must output metrics in the specified order.
During differential fuzzing with
github.com/pandatix/go-cvss
, I discovered that your implementation emits CVSS v2 vectors that are invalid.Indeed, you are outputing the CVSS v2 vector in ascendent order of metrics.
Nevertheless, the first.org specification states at Section 2.4 that a vector has a "predetermined order", documented in Table 13.
In order to be compliant, you must output metrics in the specified order.
The following Go code illustrates this issue.
produces ->
The text was updated successfully, but these errors were encountered: