HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

tcpick — Packet sniffing and network traffic analysis tool. It can capture and display TCP connections and da

Submitted by: @import:tldr-pages··
0
Viewed 0 times
sniffingcommandtrafficandnetworkclitcpickpacket
linux

Problem

How to use the tcpick command: Packet sniffing and network traffic analysis tool. It can capture and display TCP connections and data. It can also monitor network traffic on an interface, host, or port. More information: <https://manned.org/tcpick>.

Solution

tcpick — Packet sniffing and network traffic analysis tool. It can capture and display TCP connections and data. It can also monitor network traffic on an interface, host, or port. More information: <https://manned.org/tcpick>.

Capture traffic on a specific interface, port, and host:
sudo tcpick {{[-i|--interface]}} {{interface}} {{[-C|--colors]}} -h {{host}} -p {{port}}


Capture traffic on port 80 (HTTP) of a specific host:
sudo tcpick {{[-i|--interface]}} {{eth0}} {{[-C|--colors]}} -h {{192.168.1.100}} -p {{80}}


Display help:
tcpick --help

Code Snippets

Capture traffic on a specific interface, port, and host

sudo tcpick {{[-i|--interface]}} {{interface}} {{[-C|--colors]}} -h {{host}} -p {{port}}

Capture traffic on port 80 (HTTP) of a specific host

sudo tcpick {{[-i|--interface]}} {{eth0}} {{[-C|--colors]}} -h {{192.168.1.100}} -p {{80}}

Display help

tcpick --help

Context

tldr-pages: linux/tcpick

Revisions (0)

No revisions yet.