Package burp.api.montoya.scanner.audit
Interface AuditIssueHandler
-
public interface AuditIssueHandlerExtensions can implement this interface and then callScanner.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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleNewAuditIssue(AuditIssue auditIssue)This method is invoked when a new issue is added to Burp Scanner's results.
-
-
-
Method Detail
-
handleNewAuditIssue
void handleNewAuditIssue(AuditIssue auditIssue)
This method is invoked when a new issue is added to Burp Scanner's results.- Parameters:
auditIssue- AnAuditIssueobject that the extension can query to obtain details about the new issue.
-
-