Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a first known exploitation date #851

Open
tschmidtb51 opened this issue Dec 18, 2024 · 1 comment
Open

Add a first known exploitation date #851

tschmidtb51 opened this issue Dec 18, 2024 · 1 comment

Comments

@tschmidtb51
Copy link
Contributor

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:

          "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"
                }
              }
            }
          },
@tschmidtb51
Copy link
Contributor Author

It could also be integrated into the flags but then loose the updated date and reuse the flags date in an unintended way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant