Package burp
Interface IScannerInsertionPointProvider
-
public interface IScannerInsertionPointProviderExtensions can implement this interface and then callIBurpExtenderCallbacks.registerScannerInsertionPointProvider()to register a factory for custom Scanner insertion points.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IScannerInsertionPoint>getInsertionPoints(IHttpRequestResponse baseRequestResponse)When a request is actively scanned, the Scanner will invoke this method, and the provider should provide a list of custom insertion points that will be used in the scan.
-
-
-
Method Detail
-
getInsertionPoints
java.util.List<IScannerInsertionPoint> getInsertionPoints(IHttpRequestResponse baseRequestResponse)
When a request is actively scanned, the Scanner will invoke this method, and the provider should provide a list of custom insertion points that will be used in the scan. Note: these insertion points are used in addition to those that are derived from Burp Scanner's configuration, and those provided by any other Burp extensions.- Parameters:
baseRequestResponse- The base request that will be actively scanned.- Returns:
- A list of
IScannerInsertionPointobjects that should be used in the scanning, ornullif no custom insertion points are applicable for this request.
-
-