Package burp.api.montoya.proxy
Interface ProxyWebSocketCreationHandler
-
public interface ProxyWebSocketCreationHandlerExtensions can implement this interface and then callProxy.registerWebSocketCreationHandler(burp.api.montoya.proxy.ProxyWebSocketCreationHandler)to register a WebSocket handler. The handler will be notified of new WebSockets created by the Proxy tool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleWebSocketCreated(ProxyWebSocket webSocket, HttpRequest upgradeRequest)This method is invoked by Burp when a WebSocket has been created by the Proxy tool.
-
-
-
Method Detail
-
handleWebSocketCreated
void handleWebSocketCreated(ProxyWebSocket webSocket, HttpRequest upgradeRequest)
This method is invoked by Burp when a WebSocket has been created by the Proxy tool.- Parameters:
webSocket- The ProxyWebSocket that was created.upgradeRequest- The HTTP upgrade request that initiated the WebSocket creation.
-
-