"While Blazor server uses MessagePack, the traffic is specifically
formatted according to Blazor’s own Hub Protocol specification.
Therefore, generic MessagePack parsers like the Burp Suite MessagePack
extension available from the
BApp Store will not work with Blazor traffic. Take the following BlazorPack message for example. If we use the MessagePack extension on this message, the result is just
25 and the rest of the message is ignored. This is because
\x00 - \x7f represent positive integers in the
MessagePack specification. The extension sees the first
\x19, converts it to the decimal value of
25, and fails to parse the rest of the message. We’ll need a customized MessagePack parser to properly read these messages."
The msgpack library wont work with Blazor messages.