vrt 0.3.2 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/data/1.3.1/deprecated-node-mapping.json +77 -0
- data/lib/data/1.3.1/mappings/cvss_v3.json +722 -0
- data/lib/data/1.3.1/mappings/cvss_v3.schema.json +59 -0
- data/lib/data/1.3.1/vrt.schema.json +63 -0
- data/lib/data/1.3.1/vulnerability-rating-taxonomy.json +1607 -0
- data/lib/vrt/version.rb +1 -1
- metadata +7 -2
@@ -0,0 +1,59 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"title": "VRT to CVSS v3 Mapping",
|
4
|
+
"description": "Mapping from the Vulnerability Rating Taxonomy to CVSS v3",
|
5
|
+
"definitions": {
|
6
|
+
"MappingMetadata": {
|
7
|
+
"type": "object",
|
8
|
+
"properties": {
|
9
|
+
"default": { "$ref": "#/definitions/CVSSv3" }
|
10
|
+
},
|
11
|
+
"required": ["default"]
|
12
|
+
},
|
13
|
+
"VRTid": { "type": "string", "pattern": "^[a-z_][a-z_0-9]*$" },
|
14
|
+
"CVSSv3": { "type": "string", "pattern": "^AV:[NALP]/AC:[LH]/PR:[NLH]/UI:[NR]/S:[UC]/C:[NLH]/I:[NLH]/A:[NLH]$" },
|
15
|
+
"Mapping": {
|
16
|
+
"type": "object",
|
17
|
+
"properties": {
|
18
|
+
"id": { "$ref": "#/definitions/VRTid" },
|
19
|
+
"cvss_v3" : { "$ref": "#/definitions/CVSSv3" }
|
20
|
+
},
|
21
|
+
"required": ["id", "cvss_v3"],
|
22
|
+
"additionalProperties": false
|
23
|
+
},
|
24
|
+
"MappingParent": {
|
25
|
+
"type": "object",
|
26
|
+
"properties": {
|
27
|
+
"id": { "$ref": "#/definitions/VRTid" },
|
28
|
+
"children": {
|
29
|
+
"type": "array",
|
30
|
+
"items" : {
|
31
|
+
"anyOf": [
|
32
|
+
{ "$ref": "#/definitions/MappingParent" },
|
33
|
+
{ "$ref": "#/definitions/Mapping" }
|
34
|
+
]
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"cvss_v3" : { "$ref": "#/definitions/CVSSv3" }
|
38
|
+
},
|
39
|
+
"required": ["id", "children"],
|
40
|
+
"additionalProperties": false
|
41
|
+
}
|
42
|
+
},
|
43
|
+
"type": "object",
|
44
|
+
"required": ["metadata", "content"],
|
45
|
+
"properties": {
|
46
|
+
"metadata": {
|
47
|
+
"$ref": "#/definitions/MappingMetadata"
|
48
|
+
},
|
49
|
+
"content": {
|
50
|
+
"type": "array",
|
51
|
+
"items" : {
|
52
|
+
"anyOf": [
|
53
|
+
{ "$ref": "#/definitions/MappingParent" },
|
54
|
+
{ "$ref": "#/definitions/Mapping" }
|
55
|
+
]
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"title": "Vulnerability Rating Taxonomy",
|
4
|
+
"description": "A Taxonomy of potential vulnerabilities with suggested technical priority rating",
|
5
|
+
"definitions": {
|
6
|
+
"VRTmetadata": {
|
7
|
+
"type": "object",
|
8
|
+
"properties": {
|
9
|
+
"release_date": { "type": "string", "format": "date-time" }
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"VRT": {
|
13
|
+
"type": "object",
|
14
|
+
"properties": {
|
15
|
+
"id": { "type": "string", "pattern": "^[a-z_][a-z_0-9]*$" },
|
16
|
+
"type": { "type": "string", "enum": [ "category", "subcategory", "variant" ] },
|
17
|
+
"name": { "type": "string", "pattern": "^[ a-zA-Z0-9-+()\/,.<]*$" },
|
18
|
+
"priority": {
|
19
|
+
"anyOf": [
|
20
|
+
{ "type": "number", "minimum": 1, "maximum": 5 },
|
21
|
+
{ "type": "null" }
|
22
|
+
]
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"required": ["id", "name", "type", "priority"]
|
26
|
+
},
|
27
|
+
"VRTparent": {
|
28
|
+
"type": "object",
|
29
|
+
"properties": {
|
30
|
+
"id": { "type": "string", "pattern": "^[a-z_][a-z_0-9]*$" },
|
31
|
+
"name": { "type": "string", "pattern": "^[ a-zA-Z0-9-+()\/,.<]*$" },
|
32
|
+
"type": { "type": "string", "enum": [ "category", "subcategory" ] },
|
33
|
+
"children": {
|
34
|
+
"type": "array",
|
35
|
+
"items" : {
|
36
|
+
"anyOf": [
|
37
|
+
{ "$ref": "#/definitions/VRTparent" },
|
38
|
+
{ "$ref": "#/definitions/VRT" }
|
39
|
+
]
|
40
|
+
},
|
41
|
+
"minItems": 1
|
42
|
+
}
|
43
|
+
},
|
44
|
+
"required": ["id", "name", "type", "children"]
|
45
|
+
}
|
46
|
+
},
|
47
|
+
"type": "object",
|
48
|
+
"required": ["metadata", "content"],
|
49
|
+
"properties": {
|
50
|
+
"metadata": {
|
51
|
+
"$ref": "#/definitions/VRTmetadata"
|
52
|
+
},
|
53
|
+
"content": {
|
54
|
+
"type": "array",
|
55
|
+
"items" : {
|
56
|
+
"anyOf": [
|
57
|
+
{ "$ref": "#/definitions/VRTparent" },
|
58
|
+
{ "$ref": "#/definitions/VRT" }
|
59
|
+
]
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|