I have a situation where I need to reverse engineer a TCP request. Using wireshark I copy the request (Binary serialized byte array) as a string into VS. I need to deserialize the string to see what information is being passed.
This is what my string looks like:
0000 d4 81 d7 dd 44 37 00 01 45 03 ec ef 08 00 45 00 ....D7..E.....E.
0010 00 5f 91 b4 40 00 40 06 c2 a6 0a d4 ee 47 0a d4 ._..@.@......G..
0020 e2 4e 04 01 e4 9d 75 98 96 de cb 2a 29 25 50 18 .N....u....*)%P.
0030 27 10 fc f1 00 00 43 50 43 52 00 01 19 00 00 00 '.....CPCR......
0040 37 00 00 00 1e 00 00 00 05 01 05 01 3c 00 00 32 7...........<..2
0050 00 02 ff ff 01 00 4d 54 20 52 61 63 6b 00 00 00 ......MT Rack...
0060 01 04 03 02 41 05 01 00 00 00 00 00 00 ....A........
How do I go about de-serializing it to see the contents?