Is there a tool like tcpflow for windows?
I need to sniff tcp’s data only (without the headers) .
I would prefer to use command line tool, so I can grep the output for example.
Is there a tool like tcpflow for windows? I need to sniff tcp’s data
Share
You may always use Wireshark (or tshark.exe from the command line) to capture data and then post-process them afterwards without considering the headers.
Sample output:
Update:
If you need to capture packets on the local machine (loopback device), you should use the excellent
RawCaptool to capture a pcap file, then use Wireshark on the captured file as usual.