Package burp.api.montoya.websocket
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 TypeMethodDescriptionvoid
handleWebSocketCreated
(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
-WebSocketCreated
containing information about the application websocket that is being created.
-