Return all vulnerabilities identified during the latest sessionid.
allCve(count: Int, nextToken: String): PaginationAllCve!
count: Int
nextToken: String
PaginationAllCve
items: [listCve!]!
nextToken: String
listCve
cveid: ID!
cve: cve
query allCve {
allCve(count: 1) {
items {
cveid
cve {
cvssv3_basescore
cvssv3_baseseverity
cvssv2_basescore
cvssv2_severity
cve_description {
description
}
}
}
nextToken
}
}
{
"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"
}
}
}
if you have questions or issues using the API, please contact us as support@fatstacks.tech