I have the following from a cisco packet capture as a large text file.
I see that there needs to be spaces between every hex set of characters like this for it to be recognized by wireshark.
I tested using text2pcap but it wont convert it correctly. The file is huge. What do you recommend? This question is marked "community wiki". asked 21 Aug '14, 12:28 jerryroy1 edited 21 Aug '14, 12:29 |
2 Answers:
You'll probably have to write a small script to insert the space characters, or change the text2pcap code for your needs. It doesn't look complicated, should not be more than half an hour of coding (but I have to admit I'm not famous for getting code effort estimates right :-)). answered 22 Aug '14, 11:12 Jasper ♦♦ |
I'm sure this can be made more efficient by all of you scripting gurus out there (you know who you are), but here's one solution that seems to work by using
The answered 25 Aug '14, 13:43 cmaynard ♦♦ edited 25 Aug '14, 19:27 |