Sha256: 3b83755c7bcdd4712686827e5c2e260281a1e3df823bef4f27bc1c80a05ece68
Contents?: true
Size: 1018 Bytes
Versions: 8
Compression:
Stored size: 1018 Bytes
Contents
package burp; /* * @(#)IScannerListener.java * * Copyright PortSwigger Ltd. All rights reserved. * * This code may be used to extend the functionality of Burp Suite Free Edition * and Burp Suite Professional, provided that this usage does not violate the * license terms for those products. */ /** * Extensions can implement this interface and then call * <code>IBurpExtenderCallbacks.registerScannerListener()</code> 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. */ public interface IScannerListener { /** * This method is invoked when a new issue is added to Burp Scanner's * results. * * @param issue An * <code>IScanIssue</code> object that the extension can query to obtain * details about the new issue. */ void newScanIssue(IScanIssue issue); }
Version data entries
8 entries across 8 versions & 1 rubygems