Hi I want to save 2000 streams in separate txt files but for my work I need each of ascii files involes full information about all packets that made the stream like follow tcp in wireshark! I ran this script:
but this script give me just a little information like that:
I want to save all of information about all packets in the stream in one file. tnx asked 30 Aug '13, 23:43 Soroor |
2 Answers:
What makes you think there is more information available for that stream, 962 in this case? What more does Wireshark show if you filter using answered 31 Aug '13, 07:15 cmaynard ♦♦ |
I'm not sure, but I believe you want to write single TCP conversations/streams into separate files, possibly in pcap format. Well, there are several ways to do that. Please see the answers for the following questions and the tools mentioned there.
See also the tools here If I misunderstand your questions, please add more details. Regards answered 31 Aug '13, 14:35 Kurt Knochner ♦ |
by running this script, information for all of streams are 2 lines "node 0 and node 1"(for stream 0 to 2000) ! for example for stream 0:
like stream 962 that I have mentioned before!
in wireshark with running tcp.stream eq 0 I can see many more information like length,flags,TTL and etc for all packets in that specific stream. is there any script to do this in tshark? cause I need all of this information for programming on my trace in separate stream files. tnx for your attention.