I need to extract TCP Flows with their content from dump file and then save their flow into other file each flow separately, does any one know a tool for processing this?
I really appreciate for any Help
Hanieh Rajabi.
|
I need to extract TCP Flows with their content from dump file and then save their flow into other file each flow separately, does any one know a tool for processing this? I really appreciate for any Help Hanieh Rajabi. | |||
|
feedback
|
|
If you're only doing a few, Wireshark can do this. Steps:
Alternate steps, for HTTP only:
This is with Wireshark 1.2.1 on Linux/GTK. The 'follow TCP stream' option has been moved around between versions, so it may be somewhere else if you have an older version. But its always been called Follow TCP Stream so you should be able to find it. Quick searching also reveals several other options if Wireshark doesn't work for you: ngrep, tcpick, chaosreader, and tcpflow. | ||||
|
feedback
|
|
Wire shark maybe? It can be used to filter sessions and I think you can then save them seperatly. | |||
|
feedback
|
|
You definitely want to use Bro, more specifically, its contents.bro policy. For example, given a trace that contains HTTP requests, running the following ...
... produces files
for each connection, each containing the unidirectional content of the flow. The flow reassembly is highly robust, the process scales to very large files, and everything is customizable to your needs. | |||
|
feedback
|