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

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

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