v2

latestOpenAPI 3.1.0CC-BY-SA 2.02026-07-2617789528.6 KB
🧩 CVE

Get a list of CVE details

Get CVE details, from a list passed as parameter

post/cve/list

Request body

cveIdsstring[]
onlyScoreboolean

Only send score of the cve, and not the whole detailed list

minScorenumber

Only send CVE with a score higher than the value

maxScorenumber

Only send CVE with a score lower than the value

publishedDatestring date-time

Only send CVE with a publication date more recent than the value

Example request

{
  "cveIds": [
    "CVE-2019-5953"
  ],
  "onlyScore": true,
  "minScore": 7.5,
  "maxScore": 8.5
}

Response

CVE list

result'success' | 'error' required

Result of the request

action'getCVEList' required

The id of the action

Example response

{
  "data": {
    "CVEs": [
      {
        "id": "CVE-2019-5953",
        "publishedDate": "2019-05-17 18:29:00+02",
        "lastModifiedDate": "2019-07-03 01:15:00+02",
        "description": "Buffer overflow in GNU Wget 1.20.1 and earlier allows remote attackers to cause a denial-of-service (DoS) or may execute an arbitrary code via unspecified vectors.",
        "cweIds": [
          "CWE-119"
        ],
        "cvssv3": {
          "baseScore": 9.8,
          "vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
        }
      }
    ]
  }
}