Package burp.api.montoya.proxy
Interface ProxyWebSocketFinalInterceptBinaryMessage
-
public interface ProxyWebSocketFinalInterceptBinaryMessageExtensions can implement this interface when returning a binary message fromProxyWebSocketHandler.handleBinaryMessageToBeIssued(ByteArray, Direction).
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description FinalInterceptActionaction()static ProxyWebSocketFinalInterceptBinaryMessagecontinueWithBinaryMessage(ByteArray payload)This is a helper method to build a binary WebSocket message to continue through Burp.static ProxyWebSocketFinalInterceptBinaryMessagedropBinaryMessage()This is a helper method to build a binary WebSocket message to be dropped.ByteArraypayload()
-
-
-
Method Detail
-
action
FinalInterceptAction action()
- Returns:
- The action associated with this message.
-
payload
ByteArray payload()
- Returns:
- The payload of this message.
-
continueWithBinaryMessage
static ProxyWebSocketFinalInterceptBinaryMessage continueWithBinaryMessage(ByteArray payload)
This is a helper method to build a binary WebSocket message to continue through Burp.- Parameters:
payload- The binary message payload.- Returns:
- The message.
-
dropBinaryMessage
static ProxyWebSocketFinalInterceptBinaryMessage dropBinaryMessage()
This is a helper method to build a binary WebSocket message to be dropped.- Returns:
- The message to be dropped.
-
-