Hello, I am trying to dissect a data format that consists of an ASCII-encoded hexadecimal sting. As an example, some data I might receive is Thanks! asked 02 Jun '14, 07:47 burwell |
2 Answers:
Figured it out. I wrote a function that converts the ASCII characters to hex and used this array to create a new answered 04 Jun '14, 06:55 burwell |
Not sure what you mean by "perform dissection operations", but in the "Packet Bytes" pane, the ASCII characters are shown in the column to the right of the HEX data. If you are looking for a display filter to only show packets with 0012, then you can do the "contains" display filter. For example: frame contains "0012" or, if it is specifically in TCP data: tcp contains "0012" Hope this helps. Travis answered 02 Jun '14, 12:11 Rooster_50 |