Package burp
Interface IScannerListener
-
public interface IScannerListenerExtensions can implement this interface and then callIBurpExtenderCallbacks.registerScannerListener()to register a Scanner listener. The listener will be notified of new issues that are reported by the Scanner tool. Extensions can perform custom analysis or logging of Scanner issues by registering a Scanner listener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnewScanIssue(IScanIssue issue)This method is invoked when a new issue is added to Burp Scanner's results.
-
-
-
Method Detail
-
newScanIssue
void newScanIssue(IScanIssue issue)
This method is invoked when a new issue is added to Burp Scanner's results.- Parameters:
issue- AnIScanIssueobject that the extension can query to obtain details about the new issue.
-
-