diff --git a/README.md b/README.md
index c1ec1c09f1..e191b53e73 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Current Version of CVE Record Format
-Major changes to cve-schema repo architecture!! if you have integrations that rely on the cve-schema repo structure, please review the changes here. The latest version of the CVE JSON Record Format is 5.1.0. A single schema file with bundled dependencies is available [here](https://github.com/CVEProject/cve-schema/blob/master/schema/docs/CVE_Record_Format_bundled.json).
+Update to cve-schema to provide better support for CPE!! if you have integrations that rely on the cve-schema repo structure, please review the changes here. The latest version of the CVE JSON Record Format is 5.1.1. A single schema file with bundled dependencies is available [here](https://github.com/CVEProject/cve-schema/blob/master/schema/docs/CVE_Record_Format_bundled.json).
Note: The CVE Record Format now supports Authorized Data Publisher (ADP) containers there is one active ADP currently. The CVE Program uses a separate ADP container to provide additional CVE information (e.g., references) for some records. Access this README.md page [here](
https://github.com/CVEProject/cvelistV5/blob/main/README.md)
@@ -20,7 +20,7 @@ This CVE Record Format is defined using JSON Schema. Learn more about JSON Schem
### Latest
-The latest version of the CVE Record Format is 5.1.0. It is specified in the JSON schema at https://github.com/CVEProject/cve-schema/blob/master/schema/CVE_Record_Format.json
+The latest version of the CVE Record Format is 5.1.1. It is specified in the JSON schema at https://github.com/CVEProject/cve-schema/blob/master/schema/CVE_Record_Format.json
A single schema file with bundled dependencies is at https://github.com/CVEProject/cve-schema/blob/master/schema/docs/CVE_Record_Format_bundled.json
@@ -34,9 +34,9 @@ More details about Product and Version Encodings in the CVE Record Format are at
### Examples
-A basic example of a full record in the 5.1.0 format with minimally required fields is available at https://github.com/cveproject/cve-schema/blob/master/schema/docs/full-record-basic-example.json
+A basic example of a full record in the 5.1.1 format with minimally required fields is available at https://github.com/cveproject/cve-schema/blob/master/schema/docs/full-record-basic-example.json
-An advanced example of a full record in the 5.1.0 format is available at https://github.com/cveproject/cve-schema/blob/master/schema/docs/full-record-advanced-example.json
+An advanced example of a full record in the 5.1.1 format is available at https://github.com/cveproject/cve-schema/blob/master/schema/docs/full-record-advanced-example.json
A basic example of a cnaContainer, to be used with CVE Services, is available at https://github.com/cveproject/cve-schema/blob/master/schema/docs/cnaContainer-basic-example.json
diff --git a/schema/CVE_Record_Format.json b/schema/CVE_Record_Format.json
index f74450c32c..aaf5f5adb7 100644
--- a/schema/CVE_Record_Format.json
+++ b/schema/CVE_Record_Format.json
@@ -53,6 +53,20 @@
"type": "string",
"pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$"
},
+ "cpe22and23": {
+ "type": "string",
+ "description":"Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
+ "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
+ "cpe23": {
+ "type": "string",
+ "description":"Common Platform Enumeration (CPE) Name in 2.3 format",
+ "pattern": "(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
"orgId": {
"description": "A UUID for an organization participating in the CVE program. This UUID can be used to lookup the organization record in the user registry service.",
"$ref": "#/definitions/uuidType"
@@ -196,15 +210,12 @@
},
"cpes": {
"type": "array",
- "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here.",
+ "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here. NOTE: Consider using the newer cpeApplicability block for defining CPE data using the CPE Applicability Language which includes more options for defining CPE Names.",
"uniqueItems": true,
"items": {
"title": "CPE Name",
- "type": "string",
"description":"Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
- "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
- "minLength": 1,
- "maxLength": 2048
+ "$ref": "#/definitions/cpe22and23"
}
},
"modules": {
@@ -364,7 +375,7 @@
"description": "The version of the CVE schema used for validating this record. Used to support multiple versions of this format.",
"type": "string",
"pattern": "^5\\.(0|[1-9][0-9]*)(\\.(0|[1-9][0-9]*))?$",
- "default": "5.1.0"
+ "default": "5.1.1"
},
"cveMetadataPublished": {
"description": "This is meta data about the CVE ID such as the CVE ID, who requested it, who assigned it, when it was requested, the current state (PUBLISHED, REJECTED, etc.) and so on. These fields are controlled by the CVE Services.",
@@ -487,6 +498,87 @@
"required": ["orgId"],
"additionalProperties": false
},
+ "cpeApplicabilityElement": {
+ "description": "Affected products defined using an implementation of the CPE Applicability Language, mostly copied/forked from the NIST NVD CVE API v2.0 schema (optional). An operator property allows AND or OR logic between CPEs or combinations of CPEs. The negate and vulnerable Boolean properties allow CPEs to be inverted and/or defined as vulnerable or not. Multiple version fields are provided for capturing ranges of products when defining a CPE Match String Range. NOTE: When defining a cpeApplicability block, it is recommended that it align with (as much as possible) the product data provided within the affected block.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "nodes": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_node"
+ }
+ }
+ },
+ "required": [
+ "nodes"
+ ]
+ },
+ "cpe_node": {
+ "description": "Defines a CPE configuration node in an applicability statement.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "cpeMatch": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_match"
+ }
+ }
+ },
+ "required": [
+ "operator",
+ "cpeMatch"
+ ]
+ },
+ "cpe_match": {
+ "description": "CPE match string or range",
+ "type": "object",
+ "properties": {
+ "vulnerable": {
+ "type": "boolean"
+ },
+ "criteria": {
+ "$ref": "#/definitions/cpe23"
+ },
+ "matchCriteriaId": {
+ "$ref": "#/definitions/uuidType"
+ },
+ "versionStartExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionStartIncluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndIncluding": {
+ "$ref": "#/definitions/version"
+ }
+ },
+ "required": [
+ "vulnerable",
+ "criteria"
+ ],
+ "additionalProperties": false
+ },
"cnaPublishedContainer": {
"description": "An object containing the vulnerability information provided by a CVE Numbering Authority (CNA) for a published CVE ID. There can only be one CNA container per CVE record since there can only be one assigning CNA. The CNA container must include the required information defined in the CVE Rules, which includes a product, version, problem type, prose description, and a reference.",
"type": "object",
@@ -514,6 +606,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
@@ -620,6 +718,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
diff --git a/schema/docs/CVE_Record_Format_bundled.json b/schema/docs/CVE_Record_Format_bundled.json
index 4b8f98b4cf..5fff73a013 100644
--- a/schema/docs/CVE_Record_Format_bundled.json
+++ b/schema/docs/CVE_Record_Format_bundled.json
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
- "$id": "https://cveproject.github.io/cve-schema/schema/docs/CVE_Record_Format_bundled.json",
+ "$id": "https://cveproject.github.io/cve-schema/schema/CVE_Record_Format.json",
"title": "CVE JSON record format",
"description": "cve-schema specifies the CVE JSON record format. This is the blueprint for a rich set of JSON data that can be submitted by CVE Numbering Authorities (CNAs) and Authorized Data Publishers (ADPs) to describe a CVE Record. Some examples of CVE Record data include CVE ID number, affected product(s), affected version(s), and public references. While those specific items are required when assigning a CVE, there are many other optional data in the schema that can be used to enrich CVE Records for community benefit. Learn more about the CVE program at [the official website](https://cve.mitre.org). This CVE JSON record format is defined using JSON Schema. Learn more about JSON Schema [here](https://json-schema.org/).",
"definitions": {
@@ -79,6 +79,20 @@
"type": "string",
"pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$"
},
+ "cpe22and23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
+ "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
+ "cpe23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in 2.3 format",
+ "pattern": "(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
"orgId": {
"description": "A UUID for an organization participating in the CVE program. This UUID can be used to lookup the organization record in the user registry service.",
"$ref": "#/definitions/uuidType"
@@ -244,15 +258,12 @@
},
"cpes": {
"type": "array",
- "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here.",
+ "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here. NOTE: Consider using the newer cpeApplicability block for defining CPE data using the CPE Applicability Language which includes more options for defining CPE Names.",
"uniqueItems": true,
"items": {
"title": "CPE Name",
- "type": "string",
"description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
- "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
- "minLength": 1,
- "maxLength": 2048
+ "$ref": "#/definitions/cpe22and23"
}
},
"modules": {
@@ -445,7 +456,7 @@
"description": "The version of the CVE schema used for validating this record. Used to support multiple versions of this format.",
"type": "string",
"pattern": "^5\\.(0|[1-9][0-9]*)(\\.(0|[1-9][0-9]*))?$",
- "default": "5.1.0"
+ "default": "5.1.1"
},
"cveMetadataPublished": {
"description": "This is meta data about the CVE ID such as the CVE ID, who requested it, who assigned it, when it was requested, the current state (PUBLISHED, REJECTED, etc.) and so on. These fields are controlled by the CVE Services.",
@@ -573,6 +584,87 @@
],
"additionalProperties": false
},
+ "cpeApplicabilityElement": {
+ "description": "Affected products defined using an implementation of the CPE Applicability Language, mostly copied/forked from the NIST NVD CVE API v2.0 schema (optional). An operator property allows AND or OR logic between CPEs or combinations of CPEs. The negate and vulnerable Boolean properties allow CPEs to be inverted and/or defined as vulnerable or not. Multiple version fields are provided for capturing ranges of products when defining a CPE Match String Range. NOTE: When defining a cpeApplicability block, it is recommended that it align with (as much as possible) the product data provided within the affected block.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "nodes": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_node"
+ }
+ }
+ },
+ "required": [
+ "nodes"
+ ]
+ },
+ "cpe_node": {
+ "description": "Defines a CPE configuration node in an applicability statement.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "cpeMatch": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_match"
+ }
+ }
+ },
+ "required": [
+ "operator",
+ "cpeMatch"
+ ]
+ },
+ "cpe_match": {
+ "description": "CPE match string or range",
+ "type": "object",
+ "properties": {
+ "vulnerable": {
+ "type": "boolean"
+ },
+ "criteria": {
+ "$ref": "#/definitions/cpe23"
+ },
+ "matchCriteriaId": {
+ "$ref": "#/definitions/uuidType"
+ },
+ "versionStartExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionStartIncluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndIncluding": {
+ "$ref": "#/definitions/version"
+ }
+ },
+ "required": [
+ "vulnerable",
+ "criteria"
+ ],
+ "additionalProperties": false
+ },
"cnaPublishedContainer": {
"description": "An object containing the vulnerability information provided by a CVE Numbering Authority (CNA) for a published CVE ID. There can only be one CNA container per CVE record since there can only be one assigning CNA. The CNA container must include the required information defined in the CVE Rules, which includes a product, version, problem type, prose description, and a reference.",
"type": "object",
@@ -600,6 +692,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
@@ -706,6 +804,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
diff --git a/schema/docs/CVE_Record_Format_bundled_adpContainer.json b/schema/docs/CVE_Record_Format_bundled_adpContainer.json
index c225c381d4..4a3b111577 100644
--- a/schema/docs/CVE_Record_Format_bundled_adpContainer.json
+++ b/schema/docs/CVE_Record_Format_bundled_adpContainer.json
@@ -1,8 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://cveproject.github.io/cve-schema/schema/docs/CVE_Record_Format_bundled_adpContainer.json",
- "title": "CVE JSON adpContainer sub schema",
- "description": "CVE JSON adpContainer format",
+ "title": "CVE Record Format adpContainer sub schema",
+ "description": "CVE Record Format adpContainer format",
"definitions": {
"uriType": {
"description": "A universal resource identifier (URI), according to [RFC 3986](https://tools.ietf.org/html/rfc3986).",
@@ -79,6 +79,20 @@
"type": "string",
"pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$"
},
+ "cpe22and23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
+ "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
+ "cpe23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in 2.3 format",
+ "pattern": "(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
"orgId": {
"description": "A UUID for an organization participating in the CVE program. This UUID can be used to lookup the organization record in the user registry service.",
"$ref": "#/definitions/uuidType"
@@ -244,15 +258,12 @@
},
"cpes": {
"type": "array",
- "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here.",
+ "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here. NOTE: Consider using the newer cpeApplicability block for defining CPE data using the CPE Applicability Language which includes more options for defining CPE Names.",
"uniqueItems": true,
"items": {
"title": "CPE Name",
- "type": "string",
"description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
- "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
- "minLength": 1,
- "maxLength": 2048
+ "$ref": "#/definitions/cpe22and23"
}
},
"modules": {
@@ -445,7 +456,7 @@
"description": "The version of the CVE schema used for validating this record. Used to support multiple versions of this format.",
"type": "string",
"pattern": "^5\\.(0|[1-9][0-9]*)(\\.(0|[1-9][0-9]*))?$",
- "default": "5.1.0"
+ "default": "5.1.1"
},
"cveMetadataPublished": {
"description": "This is meta data about the CVE ID such as the CVE ID, who requested it, who assigned it, when it was requested, the current state (PUBLISHED, REJECTED, etc.) and so on. These fields are controlled by the CVE Services.",
@@ -573,6 +584,87 @@
],
"additionalProperties": false
},
+ "cpeApplicabilityElement": {
+ "description": "Affected products defined using an implementation of the CPE Applicability Language, mostly copied/forked from the NIST NVD CVE API v2.0 schema (optional). An operator property allows AND or OR logic between CPEs or combinations of CPEs. The negate and vulnerable Boolean properties allow CPEs to be inverted and/or defined as vulnerable or not. Multiple version fields are provided for capturing ranges of products when defining a CPE Match String Range. NOTE: When defining a cpeApplicability block, it is recommended that it align with (as much as possible) the product data provided within the affected block.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "nodes": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_node"
+ }
+ }
+ },
+ "required": [
+ "nodes"
+ ]
+ },
+ "cpe_node": {
+ "description": "Defines a CPE configuration node in an applicability statement.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "cpeMatch": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_match"
+ }
+ }
+ },
+ "required": [
+ "operator",
+ "cpeMatch"
+ ]
+ },
+ "cpe_match": {
+ "description": "CPE match string or range",
+ "type": "object",
+ "properties": {
+ "vulnerable": {
+ "type": "boolean"
+ },
+ "criteria": {
+ "$ref": "#/definitions/cpe23"
+ },
+ "matchCriteriaId": {
+ "$ref": "#/definitions/uuidType"
+ },
+ "versionStartExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionStartIncluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndIncluding": {
+ "$ref": "#/definitions/version"
+ }
+ },
+ "required": [
+ "vulnerable",
+ "criteria"
+ ],
+ "additionalProperties": false
+ },
"cnaPublishedContainer": {
"description": "An object containing the vulnerability information provided by a CVE Numbering Authority (CNA) for a published CVE ID. There can only be one CNA container per CVE record since there can only be one assigning CNA. The CNA container must include the required information defined in the CVE Rules, which includes a product, version, problem type, prose description, and a reference.",
"type": "object",
@@ -600,6 +692,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
@@ -706,6 +804,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
diff --git a/schema/docs/CVE_Record_Format_bundled_cnaPublishedContainer.json b/schema/docs/CVE_Record_Format_bundled_cnaPublishedContainer.json
index db7dffd02c..6606fcb123 100644
--- a/schema/docs/CVE_Record_Format_bundled_cnaPublishedContainer.json
+++ b/schema/docs/CVE_Record_Format_bundled_cnaPublishedContainer.json
@@ -1,8 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://cveproject.github.io/cve-schema/schema/docs/CVE_Record_Format_bundled_cnaPublishedContainer.json",
- "title": "CVE JSON cnaPublishedContainer sub schema",
- "description": "CVE JSON cnaPublishedContainer format",
+ "title": "CVE Record Format cnaPublishedContainer sub schema",
+ "description": "CVE Record Format cnaPublishedContainer format",
"definitions": {
"uriType": {
"description": "A universal resource identifier (URI), according to [RFC 3986](https://tools.ietf.org/html/rfc3986).",
@@ -79,6 +79,20 @@
"type": "string",
"pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$"
},
+ "cpe22and23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
+ "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
+ "cpe23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in 2.3 format",
+ "pattern": "(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
"orgId": {
"description": "A UUID for an organization participating in the CVE program. This UUID can be used to lookup the organization record in the user registry service.",
"$ref": "#/definitions/uuidType"
@@ -244,15 +258,12 @@
},
"cpes": {
"type": "array",
- "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here.",
+ "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here. NOTE: Consider using the newer cpeApplicability block for defining CPE data using the CPE Applicability Language which includes more options for defining CPE Names.",
"uniqueItems": true,
"items": {
"title": "CPE Name",
- "type": "string",
"description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
- "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
- "minLength": 1,
- "maxLength": 2048
+ "$ref": "#/definitions/cpe22and23"
}
},
"modules": {
@@ -445,7 +456,7 @@
"description": "The version of the CVE schema used for validating this record. Used to support multiple versions of this format.",
"type": "string",
"pattern": "^5\\.(0|[1-9][0-9]*)(\\.(0|[1-9][0-9]*))?$",
- "default": "5.1.0"
+ "default": "5.1.1"
},
"cveMetadataPublished": {
"description": "This is meta data about the CVE ID such as the CVE ID, who requested it, who assigned it, when it was requested, the current state (PUBLISHED, REJECTED, etc.) and so on. These fields are controlled by the CVE Services.",
@@ -573,6 +584,87 @@
],
"additionalProperties": false
},
+ "cpeApplicabilityElement": {
+ "description": "Affected products defined using an implementation of the CPE Applicability Language, mostly copied/forked from the NIST NVD CVE API v2.0 schema (optional). An operator property allows AND or OR logic between CPEs or combinations of CPEs. The negate and vulnerable Boolean properties allow CPEs to be inverted and/or defined as vulnerable or not. Multiple version fields are provided for capturing ranges of products when defining a CPE Match String Range. NOTE: When defining a cpeApplicability block, it is recommended that it align with (as much as possible) the product data provided within the affected block.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "nodes": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_node"
+ }
+ }
+ },
+ "required": [
+ "nodes"
+ ]
+ },
+ "cpe_node": {
+ "description": "Defines a CPE configuration node in an applicability statement.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "cpeMatch": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_match"
+ }
+ }
+ },
+ "required": [
+ "operator",
+ "cpeMatch"
+ ]
+ },
+ "cpe_match": {
+ "description": "CPE match string or range",
+ "type": "object",
+ "properties": {
+ "vulnerable": {
+ "type": "boolean"
+ },
+ "criteria": {
+ "$ref": "#/definitions/cpe23"
+ },
+ "matchCriteriaId": {
+ "$ref": "#/definitions/uuidType"
+ },
+ "versionStartExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionStartIncluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndIncluding": {
+ "$ref": "#/definitions/version"
+ }
+ },
+ "required": [
+ "vulnerable",
+ "criteria"
+ ],
+ "additionalProperties": false
+ },
"cnaPublishedContainer": {
"description": "An object containing the vulnerability information provided by a CVE Numbering Authority (CNA) for a published CVE ID. There can only be one CNA container per CVE record since there can only be one assigning CNA. The CNA container must include the required information defined in the CVE Rules, which includes a product, version, problem type, prose description, and a reference.",
"type": "object",
@@ -600,6 +692,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
@@ -706,6 +804,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
diff --git a/schema/docs/CVE_Record_Format_bundled_cnaRejectedContainer.json b/schema/docs/CVE_Record_Format_bundled_cnaRejectedContainer.json
index 7a404c3af0..bfb1d9e476 100644
--- a/schema/docs/CVE_Record_Format_bundled_cnaRejectedContainer.json
+++ b/schema/docs/CVE_Record_Format_bundled_cnaRejectedContainer.json
@@ -1,8 +1,8 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://cveproject.github.io/cve-schema/schema/docs/CVE_Record_Format_bundled_cnaRejectedContainer.json",
- "title": "CVE JSON cnaRejectedContainer sub schema",
- "description": "CVE JSON cnaRejectedContainer format",
+ "title": "CVE Record Format cnaRejectedContainer sub schema",
+ "description": "CVE Record Format cnaRejectedContainer format",
"definitions": {
"uriType": {
"description": "A universal resource identifier (URI), according to [RFC 3986](https://tools.ietf.org/html/rfc3986).",
@@ -79,6 +79,20 @@
"type": "string",
"pattern": "^CVE-[0-9]{4}-[0-9]{4,19}$"
},
+ "cpe22and23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
+ "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
+ "cpe23": {
+ "type": "string",
+ "description": "Common Platform Enumeration (CPE) Name in 2.3 format",
+ "pattern": "(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
+ "minLength": 1,
+ "maxLength": 2048
+ },
"orgId": {
"description": "A UUID for an organization participating in the CVE program. This UUID can be used to lookup the organization record in the user registry service.",
"$ref": "#/definitions/uuidType"
@@ -244,15 +258,12 @@
},
"cpes": {
"type": "array",
- "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here.",
+ "description": "Affected products defined by CPE. This is an array of CPE values (vulnerable and not), we use an array so that we can make multiple statements about the same version and they are separate (if we used a JSON object we'd essentially be keying on the CPE name and they would have to overlap). Also, this allows things like cveDataVersion or cveDescription to be applied directly to the product entry. This also allows more complex statements such as \"Product X between versions 10.2 and 10.8\" to be put in a machine-readable format. As well since multiple statements can be used multiple branches of the same product can be defined here. NOTE: Consider using the newer cpeApplicability block for defining CPE data using the CPE Applicability Language which includes more options for defining CPE Names.",
"uniqueItems": true,
"items": {
"title": "CPE Name",
- "type": "string",
"description": "Common Platform Enumeration (CPE) Name in either 2.2 or 2.3 format",
- "pattern": "([c][pP][eE]:/[AHOaho]?(:[A-Za-z0-9._\\-~%]*){0,6})|(cpe:2\\.3:[aho*\\-](:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){5}(:(([a-zA-Z]{2,3}(-([a-zA-Z]{2}|[0-9]{3}))?)|[*\\-]))(:(((\\?*|\\*?)([a-zA-Z0-9\\-._]|(\\\\[\\\\*?!\"#$%&'()+,/:;<=>@\\[\\]\\^`{|}~]))+(\\?*|\\*?))|[*\\-])){4})",
- "minLength": 1,
- "maxLength": 2048
+ "$ref": "#/definitions/cpe22and23"
}
},
"modules": {
@@ -445,7 +456,7 @@
"description": "The version of the CVE schema used for validating this record. Used to support multiple versions of this format.",
"type": "string",
"pattern": "^5\\.(0|[1-9][0-9]*)(\\.(0|[1-9][0-9]*))?$",
- "default": "5.1.0"
+ "default": "5.1.1"
},
"cveMetadataPublished": {
"description": "This is meta data about the CVE ID such as the CVE ID, who requested it, who assigned it, when it was requested, the current state (PUBLISHED, REJECTED, etc.) and so on. These fields are controlled by the CVE Services.",
@@ -573,6 +584,87 @@
],
"additionalProperties": false
},
+ "cpeApplicabilityElement": {
+ "description": "Affected products defined using an implementation of the CPE Applicability Language, mostly copied/forked from the NIST NVD CVE API v2.0 schema (optional). An operator property allows AND or OR logic between CPEs or combinations of CPEs. The negate and vulnerable Boolean properties allow CPEs to be inverted and/or defined as vulnerable or not. Multiple version fields are provided for capturing ranges of products when defining a CPE Match String Range. NOTE: When defining a cpeApplicability block, it is recommended that it align with (as much as possible) the product data provided within the affected block.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "nodes": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_node"
+ }
+ }
+ },
+ "required": [
+ "nodes"
+ ]
+ },
+ "cpe_node": {
+ "description": "Defines a CPE configuration node in an applicability statement.",
+ "properties": {
+ "operator": {
+ "type": "string",
+ "enum": [
+ "AND",
+ "OR"
+ ]
+ },
+ "negate": {
+ "type": "boolean"
+ },
+ "cpeMatch": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpe_match"
+ }
+ }
+ },
+ "required": [
+ "operator",
+ "cpeMatch"
+ ]
+ },
+ "cpe_match": {
+ "description": "CPE match string or range",
+ "type": "object",
+ "properties": {
+ "vulnerable": {
+ "type": "boolean"
+ },
+ "criteria": {
+ "$ref": "#/definitions/cpe23"
+ },
+ "matchCriteriaId": {
+ "$ref": "#/definitions/uuidType"
+ },
+ "versionStartExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionStartIncluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndExcluding": {
+ "$ref": "#/definitions/version"
+ },
+ "versionEndIncluding": {
+ "$ref": "#/definitions/version"
+ }
+ },
+ "required": [
+ "vulnerable",
+ "criteria"
+ ],
+ "additionalProperties": false
+ },
"cnaPublishedContainer": {
"description": "An object containing the vulnerability information provided by a CVE Numbering Authority (CNA) for a published CVE ID. There can only be one CNA container per CVE record since there can only be one assigning CNA. The CNA container must include the required information defined in the CVE Rules, which includes a product, version, problem type, prose description, and a reference.",
"type": "object",
@@ -600,6 +692,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
@@ -706,6 +804,12 @@
"affected": {
"$ref": "#/definitions/affected"
},
+ "cpeApplicability": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/cpeApplicabilityElement"
+ }
+ },
"problemTypes": {
"$ref": "#/definitions/problemTypes"
},
diff --git a/schema/docs/cnaContainer-advanced-example.json b/schema/docs/cnaContainer-advanced-example.json
index c255d81b33..bbafe4b2fb 100644
--- a/schema/docs/cnaContainer-advanced-example.json
+++ b/schema/docs/cnaContainer-advanced-example.json
@@ -84,26 +84,69 @@
"defaultStatus": "unaffected"
}
],
+ "cpeApplicability": [
+ {
+ "operator": "AND",
+ "nodes": [
+ {
+ "operator": "OR",
+ "negate": false,
+ "cpeMatch": [
+ {
+ "vulnerable": true,
+ "criteria": "cpe:2.3:a:example_org:example_enterprise:*:*:*:*:*:*:*:*",
+ "versionStartIncluding": "1.0.0",
+ "versionEndExcluding": "1.0.6"
+ },
+ {
+ "vulnerable": true,
+ "criteria": "cpe:2.3:a:example_org:example_enterprise:*:*:*:*:*:*:*:*",
+ "versionStartIncluding": "2.1.6",
+ "versionEndExcluding": "2.1.9"
+ }
+ ]
+ },
+ {
+ "operator": "OR",
+ "negate": false,
+ "cpeMatch": [
+ {
+ "vulnerable": false,
+ "criteria": "cpe:2.3:o:microsoft:windows:*:*:*:*:*:*:*:*"
+ },
+ {
+ "vulnerable": false,
+ "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*"
+ },
+ {
+ "vulnerable": false,
+ "criteria": "cpe:2.3:h:some_company:xt-4500:*:*:*:*:*:*:*:*"
+ }
+ ]
+ }
+ ]
+ }
+ ],
"descriptions": [
{
"lang": "en",
- "value": "OS Command Injection vulnerability parseFilename function of example.php in the Web Management Interface of Example.org Example Enterprise on Windows, macOS, and XT-4500 allows remote unauthenticated attackers to escalate privileges. This issue affects: 1.0 versions before 1.0.6, 2.1 versions from 2.16 until 2.1.9.",
+ "value": "OS Command Injection vulnerability parseFilename function of example.php in the Web Management Interface of Example.org Example Enterprise on Windows, macOS, and XT-4500 allows remote unauthenticated attackers to escalate privileges. This issue affects: 1.0 versions before 1.0.6, 2.1 versions from 2.1.6 until 2.1.9.",
"supportingMedia": [
{
"type": "text/html",
"base64": false,
- "value": "OS Command Injection vulnerability parseFilename function of example.php in the Web Management Interface of Example.org Example Enterprise on Windows, macOS, and XT-4500 allows remote unauthenticated attackers to escalate privileges.
This issue affects: