hello, I have a pcap file and I am going to separate flow base packet ( and save them on file optionally) then separate request and response packet ( and save them on file) I use Linux. Is there any app or method to do this ? thanks This question is marked "community wiki". asked 15 Jul '14, 03:08 mhch |
2 Answers:
You can use tcpflow on Linux or tcpick Or another tools from the following list On Windows there is SplitCap And finally, you can also use tshark
Regards answered 15 Jul '14, 03:16 Kurt Knochner ♦ |
I wrote a script with bash and used tcpflow in my script this is my script : set -vx read -p "where is your pcap file ? " pcap tcpflow -a -o /tmp/outdir -r $pcap ls /tmp/outdir>/tmp/list while read line do P1= answered 27 Jul '14, 01:39 mhch |
I used tcpflow and separated flows but yet I have problem by response/request separation Can you help me ? thanks
request/response of which protocol?
Thanks Kurt Knochner I have a pcap file that include every protocol like ftp http https and so on. I going to separate every flows and then separate every responses and requests.