Interface AuditIssueHandler


public interface AuditIssueHandler
Extensions can implement this interface and then call Scanner.registerAuditIssueHandler(AuditIssueHandler) to register an audit issue handler. The handler will be notified of new issues that are reported by the Scanner tool. Extensions can perform custom analysis or logging of audit issues by registering an audit issue handler.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is invoked when a new issue is added to Burp Scanner's results.
  • Method Details

    • handleNewAuditIssue

      void handleNewAuditIssue(AuditIssue auditIssue)
      This method is invoked when a new issue is added to Burp Scanner's results.
      Parameters:
      auditIssue - An AuditIssue object that the extension can query to obtain details about the new issue.