Package burp.api.montoya.proxy.websocket
Interface ProxyWebSocketCreationHandler
public interface ProxyWebSocketCreationHandler
Extensions can implement this interface and then call
The handler will be notified of new WebSockets being created by the Proxy tool.
Proxy.registerWebSocketCreationHandler(burp.api.montoya.proxy.websocket.ProxyWebSocketCreationHandler)
to register a WebSocket handler.The handler will be notified of new WebSockets being created by the Proxy tool.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
handleWebSocketCreation
(ProxyWebSocketCreation webSocketCreation) Invoked by Burp when a WebSocket is being created by the Proxy tool.
Note that the client side of the connection will not be upgraded until after this method completes.
-
Method Details
-
handleWebSocketCreation
Invoked by Burp when a WebSocket is being created by the Proxy tool.
Note that the client side of the connection will not be upgraded until after this method completes.- Parameters:
webSocketCreation
-ProxyWebSocketCreation
containing information about the proxy websocket that is being created
-