TCP flow extraction

前端 未结 5 761
长发绾君心
长发绾君心 2021-01-02 23:02

I need to extract TCP Flows with their content from dump file and then save their flow into other file each flow separately

5条回答
  •  一向
    一向 (楼主)
    2021-01-02 23:33

    tcpflow -r my_dump_file.pcap -o output_dir/
    

    It will extract each tcp flow, separately, into a file under output_dir. Each flow in its own file.

    Here's the manpage with more options

提交回复
热议问题