Object
CountsByConfidence
Exposes information about the number of issues found of each confidence level. Burp Scanner's confidence is based on the inherent reliability of the techniques used to identify each type of error.
Example
Query
query GetHighConfidenceIssueCounts ($scanId: ID!, $auditItemId: ID!) {
scan(id: $scanId) {
audit_item(id: $auditItemId) {
issue_counts {
high {
total
certain
firm
tentative
}
}
}
}
}
Variables
{
"scanId": "2",
"auditItemId": "4"
}
Result
{
"data": {
"scan": {
"audit_item": {
"issue_counts": {
"high": {
"total": null,
"certain": null,
"firm": null,
"tentative": null
}
}
}
}
}
}