Interface AuditInsertionPointProvider
-
public interface AuditInsertionPointProviderExtensions can implement this interface and then callScanner.registerInsertionPointProvider(AuditInsertionPointProvider)to register a provider for custom audit insertion points.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ExtensionGeneratedAuditInsertionPoint>provideInsertionPoints(HttpRequestResponse baseHttpRequestResponse)The Scanner invokes this method when a request is actively audited.
-
-
-
Method Detail
-
provideInsertionPoints
java.util.List<ExtensionGeneratedAuditInsertionPoint> provideInsertionPoints(HttpRequestResponse baseHttpRequestResponse)
The Scanner invokes this method when a request is actively audited. The provider should provide a list of custom insertion points that will be used in the audit. 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:
baseHttpRequestResponse- The baseHttpRequestResponsethat will be actively audited.- Returns:
- A list of
ExtensionGeneratedAuditInsertionPointobjects that should be used in the audit, ornullif no custom insertion points are applicable for this request.
-
-