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 Type
    Method
    Description
    void
    Invoked by Burp when an application WebSocket has been created.
  • Method Details

    • handleWebSocketCreated

      void handleWebSocketCreated(WebSocketCreated webSocketCreated)
      Invoked by Burp when an application WebSocket has been created.
      Parameters:
      webSocketCreated - WebSocketCreated containing information about the application websocket that is being created.