πŸ›Issue Properties

Issue properties define how detected vulnerabilities are reported in Burp Suite. Each profile configures the issue name, severity, confidence, and detailed description.

πŸ“‹ Issue Fields

πŸ“ Issue Name (IssueName)

The title of the vulnerability as it appears in Burp Suite's issue list.

{
  "IssueName": "Reflected Cross-Site Scripting (XSS)"
}

πŸ’‘ Best practices:

  • βœ… Use descriptive names that identify the vulnerability type

  • πŸ› Include the CVE number for known vulnerabilities (e.g., CVE-2021-44228 Log4j RCE)

  • πŸ“ Keep names concise but informative

⚠️ Issue Severity (IssueSeverity)

The severity level of the vulnerability:

Value
Description
When to Use

πŸ”΄ High

Critical vulnerability

RCE, SQLi, authentication bypass, data breach

🟠 Medium

Significant vulnerability

XSS, CSRF, open redirect, SSRF

🟑 Low

Minor vulnerability

CORS misconfiguration, information disclosure

πŸ”΅ Information

Informational finding

Technology detection, missing headers, interesting parameters

βšͺ False positive

Known false positive

Mark findings that are not actual vulnerabilities

🎯 Issue Confidence (IssueConfidence)

The confidence level of the detection:

Value
Description
When to Use

βœ… Certain

Verified vulnerability

Response clearly confirms the vulnerability (e.g., payload reflected exactly)

🟒 Firm

Likely vulnerability

Strong indicators but not 100% confirmed

🟑 Tentative

Possible vulnerability

Weak indicators, requires manual verification

πŸ“„ Issue Detail (IssueDetail)

The detailed description of the finding. Supports HTML formatting and dynamic placeholders.

πŸ”§ Placeholders

Placeholder
Replaced With

<payload>

πŸ’‰ The actual payload that was sent

<grep>

πŸ” The grep pattern that matched

πŸ“ Example

At runtime, this renders as:

πŸ“š Detailed Example with Background

πŸ“– Issue Background (IssueBackground)

General background information about the vulnerability type. This appears in the "Issue background" section of Burp's issue details.

πŸ”§ Remediation Detail (RemediationDetail)

Specific remediation guidance for the detected vulnerability.

πŸ“– Remediation Background (RemediationBackground)

General remediation background information about the vulnerability class.

πŸ“š Complete Example

πŸ–₯️ How Issues Appear in Burp Suite

When a match is found, Burp Bounty Pro creates an issue that appears in:

  1. πŸ“Š Burp Bounty Pro Dashboard β€” The Issues table in the Dashboard tab

  2. πŸ“‹ Burp Suite Dashboard β€” The global Issue activity panel

  3. πŸ—ΊοΈ Target Site Map β€” As annotations on affected URLs

Each issue includes:

  • ⚠️ The configured severity and confidence

  • πŸ“‘ The full request/response pair

  • πŸ”΄ Highlighted payload and grep matches (markers shown in red)

  • πŸ“„ The issue detail with placeholder values replaced

Last updated