The unparsed info looks like this (repeating format with different pkt, len and data values for each pkt):
[!] SERVER->CLIENT pkt 0x0001 [len 0x0005]
OFFSET 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | 0123456789ABCDEF
--------------------------------------------------------------------------
000010 01 01 01 01 01 .....
And I want to parse it into a .csv like:
01,01,01,01
This is just an example as some fields vary in size. I'd like to set it to only parse certain data based on the "pkt 0x____" info with each "pkt 0x____" I set it to parse in its own .csv file. I'd also like to set the size of the fields as some .csv could be 01,010101,01
Could anyone help?
[!] SERVER->CLIENT pkt 0x0001 [len 0x0005]
OFFSET 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | 0123456789ABCDEF
--------------------------------------------------------------------------
000010 01 01 01 01 01 .....
And I want to parse it into a .csv like:
01,01,01,01
This is just an example as some fields vary in size. I'd like to set it to only parse certain data based on the "pkt 0x____" info with each "pkt 0x____" I set it to parse in its own .csv file. I'd also like to set the size of the fields as some .csv could be 01,010101,01
Could anyone help?