vrt 0.12.5 → 0.12.6
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.13/deprecated-node-mapping.json +236 -0
- data/lib/data/1.13/mappings/cvss_v3/cvss_v3.json +1368 -0
- data/lib/data/1.13/mappings/cvss_v3/cvss_v3.schema.json +59 -0
- data/lib/data/1.13/mappings/cwe/cwe.json +756 -0
- data/lib/data/1.13/mappings/cwe/cwe.schema.json +63 -0
- data/lib/data/1.13/mappings/remediation_advice/remediation_advice.json +1938 -0
- data/lib/data/1.13/mappings/remediation_advice/remediation_advice.schema.json +75 -0
- data/lib/data/1.13/third-party-mappings/remediation_training/secure-code-warrior-links.json +421 -0
- data/lib/data/1.13/vrt.schema.json +63 -0
- data/lib/data/1.13/vulnerability-rating-taxonomy.json +2623 -0
- data/lib/vrt/version.rb +1 -1
- metadata +17 -7
@@ -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_]*$" },
|
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
|
+
}
|