API Guide v2

allKb

Return all patches identified during the latest sessionid.

QUERY

allKb(count: Int, nextToken: String): PaginationAllKb! 

ARGUMENTS

count: Int
nextToken: String

OBJECTS

PaginationAllKb

FIELDS

items: [listKb!]!
nextToken: String

SUB-OBJECTS

listKb

SUB-FIELDS

cpe23: String
cpe: cpe
cveid: String
cve: cve
cve_kb: [kb]

Sample Query

Request:

query allKb {
  allKb(count: 1) {
    items {
      cpe23
      cveid
      cve_kb {
        kb
        kb_type
        kb_grpby
        kb_cpe {
          cpe23
          cpe_title {
            vendorname
            familyname
            productname
            majorversionname
            minorversionname
            versionname
            updatename
            editionname
            title
          }
        }
      }
    }
    nextToken
  }
}

Response:

{
  "data": {
    "allKb": {
      "items": [
        {
          "cpe23": "cpe:2.3:a:adobe_systems:acrobat:11.0.18:*:pro:*:*:*:*:*",
          "cveid": "CVE-2017-11240",
          "cve_kb": [
            {
              "kb": "cpe:2.3:a:adobe_systems:acrobat:19.010.20069:*:pro:*:*:*:*:*",
              "kb_type": "cpe",
              "kb_grpby": "allversion",
              "kb_cpe": {
                "cpe23": "cpe:2.3:a:adobe_systems:acrobat:19.010.20069:*:pro:*:*:*:*:*",
                "cpe_title": {
                  "vendorname": "Adobe Systems",
                  "familyname": "Acrobat",
                  "productname": "Acrobat",
                  "majorversionname": "DC (Continuous)",
                  "minorversionname": "19.010",
                  "versionname": "19.010.20069",
                  "updatename": null,
                  "editionname": "Pro",
                  "title": "Adobe Systems Acrobat DC (Continuous) (19.010) [19.010.20069] Pro"
                }
              }
            }
          ]
        }
      ],
      "nextToken": "XXXXXXX"
    }
  }
}

Support

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