API Guide v2

getCve

Return all meta-data associated to a specific vulnerability.

QUERY

getCve(cveid: ID!): cve

ARGUMENTS

cveid: ID! 

OBJECTS

Sample Query

Request:

query getCve {
  getCve(cveid: "CVE-2017-11240") {
    cveid,
    cvssv3_basescore,
    cvssv3_baseseverity,
    cvssv2_basescore,
    cvssv2_severity,
    cve_description {
      description
    }
  }
}

Response:

{
  "data": {
    "getCve": {
      "cveid": "CVE-2017-11240",
      "cvssv3_basescore": 9.8,
      "cvssv3_baseseverity": "CRITICAL",
      "cvssv2_basescore": 10.0,
      "cvssv2_severity": "HIGH",
      "cve_description": {
        "description": "Adobe Acrobat and Reader versions 2017.012.20098 and earlier, 2017.011.30066 and earlier, 2015.006.30355 and earlier, 11.0.22 and earlier have an exploitable out-of-bounds read vulnerability. Successful exploitation could lead to arbitrary code execution in the context of the current user."
      }
    }
  }
}

Support

if you have questions or issues using the API, please contact us as support@fatstacks.tech