API Guide v2

allCve

Return all vulnerabilities identified during the latest sessionid.

QUERY

allCve(count: Int, nextToken: String): PaginationAllCve! 

ARGUMENTS

count: Int
nextToken: String

OBJECTS

PaginationAllCve

FIELDS

items: [listCve!]!
nextToken: String

SUB-OBJECTS

listCve

SUB-FIELDS

cveid: ID!
cve: cve

Sample Query

Request:

query allCve {
  allCve(count: 1) {
    items {
      cveid
      cve {
        cvssv3_basescore
        cvssv3_baseseverity
        cvssv2_basescore
        cvssv2_severity
        cve_description {
          description
        }
      }
    }
    nextToken
  }
}

Response:

{
  "data": {
    "allCve": {
      "items": [
        {
          "cveid": "CVE-2002-2436",
          "cve": {
            "cvssv3_basescore": null,
            "cvssv3_baseseverity": null,
            "cvssv2_basescore": 4.3,
            "cvssv2_severity": "MEDIUM",
            "cve_description": {
              "description": "The Cascading Style Sheets (CSS) implementation in Mozilla Firefox before 4.0, Thunderbird before 3.3, and SeaMonkey before 2.1 does not properly handle the :visited pseudo-class, which allows remote attackers to obtain sensitive information about visited web pages via a crafted HTML document, a related issue to CVE-2010-2264."
            }
          }
        }
      ],
      "nextToken": "XXXXXXX"
    }
  }
}

Support

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