-
Notifications
You must be signed in to change notification settings - Fork 0
/
cve_tag.go
20 lines (18 loc) · 936 Bytes
/
cve_tag.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package nvd
// cveTag describes a set of optional pre-defined values which describe some
// meta-topics associated with CVEs. See individual descriptions below.
// https://nvd.nist.gov/vuln/vulnerability-detail-pages
type cveTag string
const (
// cveTagDisputed indicates at least one party has asserted this discovery
// constitutes a vulnerability and at least one party has asserted this
// discovery does NOT constitute a vulnerability
cveTagDisputed cveTag = "disputed"
// cveTagUnsupportedWhenAssigned indicates the product/product-version
// impacted by the CVE was already considered end of life when the CVE
// discovery was made.
cveTagUnsupportedWhenAssigned cveTag = "unsupported-when-assigned"
// cveTagExclusivelyHostedService indicates the product offers a self AND
// SaaS hosted solution and that only the hosted solution is impacted.
cveTagExclusivelyHostedService cveTag = "exclusively-hosted-service"
)