LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

tcpflow

TCP flow recorder

TLDR

Capture and display traffic on interface and port
$ tcpflow -c -i [eth0] port [80]
copy
Read flows from a pcap file
$ tcpflow -r [path/to/capture.pcap] -o [output_dir]
copy
Capture with colored console output (blue=client, red=server)
$ tcpflow -c -g -i [eth0]
copy
Limit capture to max bytes per flow
$ tcpflow -b [10000] -i [eth0] port [443]
copy
Strip non-printable characters in console output
$ tcpflow -c -s -i [eth0]
copy

SYNOPSIS

tcpflow [OPTIONS] [EXPRESSION]

DESCRIPTION

tcpflow captures TCP traffic and reconstructs data streams for debugging and analysis. Unlike packet sniffers that show individual packets, tcpflow reassembles TCP connections into complete data flows.Each TCP flow is saved to a separate file named by source and destination addresses/ports, making it easy to analyze individual connections.

PARAMETERS

-c

Console print with source/dest header (don't create files)
-C
Console print without header (don't create files)
-i INTERFACE
Capture on specified network interface
-r FILE
Read from pcap file instead of live capture
-o DIR
Output directory for flow files
-b MAXBYTES_
Capture no more than max_bytes per flow
-e SCANNER
Enable specific scanner
-s
Strip non-printable characters (replace with '.')
-g
Colorized console output (blue=client, red=server)
-D
Console output in hex
-d LEVEL
Debug level (0=silent, 1=default)
-f MAXFDS_
Maximum number of file descriptors to use
-p
Do not put interface into promiscuous mode
-q
Quiet mode, suppress warnings
-P
No purge of closed connections from hash table

CAVEATS

Requires root privileges or appropriate capabilities. Uses libpcap filter expressions. Only captures TCP traffic, not UDP or other protocols. Large captures can consume significant disk space.

HISTORY

tcpflow was created by Jeremy Elson and is designed for forensic analysis and debugging of network applications by reconstructing TCP sessions.

SEE ALSO

tcpdump(8), wireshark(1), tcpick(8), nmap(1)

Copied to clipboard
Kai