Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid CVSS v2 vector #23

Closed
pandatix opened this issue Jan 30, 2023 · 1 comment
Closed

Invalid CVSS v2 vector #23

pandatix opened this issue Jan 30, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@pandatix
Copy link

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.

package main

import (
	"fmt"
	"log"

	"github.com/goark/go-cvss/v2/base"
)

func main() {
	raw := "AV:L/AC:M/Au:S/C:N/I:N/A:P/CDP:N/TD:ND/CR:M/IR:ND/AR:ND"
	vec, err := base.Decode(raw)
	if err != nil {
		log.Fatal(err)
	}

	out := vec.String()
	fmt.Printf("out: %v\n", out)
}

produces ->

out: AV:L/AC:M/Au:S/C:N/I:N/A:P/CDP:N/CR:M
@spiegel-im-spiegel spiegel-im-spiegel added the bug Something isn't working label Jan 31, 2023
spiegel-im-spiegel added a commit that referenced this issue Jan 31, 2023
Fixd Metrics.Encode method when value of metric is "ND" (issue #23)
@spiegel-im-spiegel
Copy link
Member

Release v1.4.6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants