Interface WebSocketCreatedHandler
public interface WebSocketCreatedHandler
Extensions can implement this interface and then call
WebSockets.registerWebSocketCreatedHandler(burp.api.montoya.websocket.WebSocketCreatedHandler) to register a WebSocket handler.
The handler will be notified of new WebSockets created by any Burp tool.-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleWebSocketCreated(WebSocketCreated webSocketCreated) Invoked by Burp when an application WebSocket has been created.
-
Method Details
-
handleWebSocketCreated
Invoked by Burp when an application WebSocket has been created.- Parameters:
webSocketCreated-WebSocketCreatedcontaining information about the application websocket that is being created.
-