Package burp
Interface IProxyListener
-
public interface IProxyListenerExtensions can implement this interface and then callIBurpExtenderCallbacks.registerProxyListener()to register a Proxy listener. The listener will be notified of requests and responses being processed by the Proxy tool. Extensions can perform custom analysis or modification of these messages, and control in-UI message interception, by registering a proxy listener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocessProxyMessage(boolean messageIsRequest, IInterceptedProxyMessage message)This method is invoked when an HTTP message is being processed by the Proxy.
-
-
-
Method Detail
-
processProxyMessage
void processProxyMessage(boolean messageIsRequest, IInterceptedProxyMessage message)This method is invoked when an HTTP message is being processed by the Proxy.- Parameters:
messageIsRequest- Indicates whether the HTTP message is a request or a response.message- AnIInterceptedProxyMessageobject that extensions can use to query and update details of the message, and control whether the message should be intercepted and displayed to the user for manual review or modification.
-
-