You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is suggested to add an optional field that provides the opportunity to convey the information, when a vulnerability was first exploited in a specific product. A JSON structure could look like this:
"known_exploitations": {
"title": "List of known exploitations",
"description": "Contains a list of known exploitations",
"type": "array",
"minItems": 1,
"uniqueItems": true,
"items": {
"title": "Flag",
"description": "Contains information on when this vulnerability was first known to be exploited in the product.",
"type": "object",
"required": [
"date",
"exploitation_date"
],
"properties": {
"date": {
"title": "Date of the information",
"description": "Contains the date when the information was last updated.",
"type": "string",
"format": "date-time"
},
"exploitation_date": {
"title": "Date of the exploitation",
"description": "Contains the date when the exploitation happened",
"type": "string",
"format": "date-time"
},
"group_ids": {
"$ref": "#/$defs/product_groups_t"
},
"product_ids": {
"$ref": "#/$defs/products_t"
}
}
}
},
The text was updated successfully, but these errors were encountered:
This is split out from #782:
It is suggested to add an optional field that provides the opportunity to convey the information, when a vulnerability was first exploited in a specific product. A JSON structure could look like this:
The text was updated successfully, but these errors were encountered: