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.

Fields

total(): Int!
The total number of issues found.
firm(): Int!
The number of issues found with a firm confidence level.
tentative(): Int!
The number of issues found with a tentative confidence level.
certain(): Int!
The number of issues found with a certain confidence level.

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
          }
        }
      }
    }
  }
}