Hi, We run the Tshark command from command prompt for particular frame number, In this situation for large pcap files it will take more time to get the packet details.How to minimize the time for tshark. Ex: tshark.exe -2 -r 1.pcap -Y "frame.number==13725" -T pdml > 1.pdml Regards, Swathi. asked 14 Jun '16, 07:08 swathi jakkam edited 14 Jun '16, 10:41 Bill Meier ♦♦ |
One Answer:
Have a look at editcap
Then use tshark on this file
Warning: This also causes none of the context of the original capture being available when dissecting this single frame. Therefore results may differ. Still editcap may be helpful, eg. if you are able to cut capture files in half or smaller. answered 14 Jun '16, 07:27 Jaap ♦ edited 14 Jun '16, 10:42 Bill Meier ♦♦ |
Thanks for reply.the above commands are working for normal pcap file. But I have another doubt, How to apply the ssl key file (-o ssl.keylog_file) to editcap.exe command.
Regards, Swathi.