Object
IssueCounts
Exposes information about the number of issues found, sorted their severity level.
Fields
total():
Int!
The total number of issues found.
high():
CountsByConfidence!
The number of high-severity issues found, along with Burp Scanner's confidence level.
medium():
CountsByConfidence!
The number of medium-severity issues found, along with Burp Scanner's confidence level.
low():
CountsByConfidence!
The number of low-severity issues found, along with Burp Scanner's confidence level.
info():
CountsByConfidence!
The number of issues found that are displayed for information only, along with Burp Scanner's confidence level.
Example
Query
query GetIssueCounts ($scanId: ID!, $auditItemId: ID!) {
scan(id: $scanId) {
audit_item(id: $auditItemId) {
issue_counts {
total
high {
total
certain
firm
tentative
}
medium {
total
certain
firm
tentative
}
low {
total
certain
firm
tentative
}
info {
total
certain
firm
tentative
}
}
}
}
}
Variables
{
"scanId": "2",
"auditItemId": "4"
}
Result
{
"data": {
"scan": {
"audit_item": {
"issue_counts": {
"total": null,
"high": {
"total": null,
"certain": null,
"firm": null,
"tentative": null
},
"medium": {
"total": null,
"certain": null,
"firm": null,
"tentative": null
},
"low": {
"total": null,
"certain": null,
"firm": null,
"tentative": null
},
"info": {
"total": null,
"certain": null,
"firm": null,
"tentative": null
}
}
}
}
}
}