blob: 397b15606a861c8055098177396e54f73494de90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
package cve
// CVE
type CVE struct {
Affects *Affects `json:"affects,omitempty"`
CVEDataMeta *CVEDataMeta `json:"CVE_data_meta"`
DataFormat string `json:"data_format"`
DataType string `json:"data_type"`
DataVersion string `json:"data_version"`
Description *Description `json:"description"`
Problemtype *Problemtype `json:"problemtype"`
References *References `json:"references"`
}
// Affects
type Affects struct {
Vendor *Vendor `json:"vendor"`
}
// CVEDataMeta
type CVEDataMeta struct {
ASSIGNER string `json:"ASSIGNER"`
ID string `json:"ID"`
STATE string `json:"STATE,omitempty"`
}
// Description
type Description struct {
DescriptionData []*LangString `json:"description_data"`
}
// LangString
type LangString struct {
Lang string `json:"lang"`
Value string `json:"value"`
}
// Problemtype
type Problemtype struct {
ProblemtypeData []*ProblemtypeDataItems `json:"problemtype_data"`
}
// ProblemtypeDataItems
type ProblemtypeDataItems struct {
Description []*LangString `json:"description"`
}
// Product
type Product struct {
ProductData []*Product `json:"product_data"`
}
// Reference
type Reference struct {
Name string `json:"name,omitempty"`
Refsource string `json:"refsource,omitempty"`
Tags []string `json:"tags,omitempty"`
Url string `json:"url"`
}
// References
type References struct {
ReferenceData []*Reference `json:"reference_data"`
}
// Vendor
type Vendor struct {
VendorData []*VendorDataItems `json:"vendor_data"`
}
// VendorDataItems
type VendorDataItems struct {
Product *Product `json:"product"`
VendorName string `json:"vendor_name"`
}
// Version
type Version struct {
VersionData []*VersionDataItems `json:"version_data"`
}
// VersionDataItems
type VersionDataItems struct {
VersionAffected string `json:"version_affected,omitempty"`
VersionValue string `json:"version_value"`
}
|