Package burp.api.montoya.scanner.audit
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 TypeMethodDescriptionvoid
handleNewAuditIssue
(AuditIssue auditIssue) This method is invoked when a new issue is added to Burp Scanner's results.
-
Method Details
-
handleNewAuditIssue
This method is invoked when a new issue is added to Burp Scanner's results.- Parameters:
auditIssue
- AnAuditIssue
object that the extension can query to obtain details about the new issue.
-