tcpdump

Intercepting and filtering traffic

To intercept traffic of a specific IP address and from my interface tun0 (OSCP VPN)

sudo tcpdump host 192.168.226.110 -i tun0

tcpdump main commands see this blog: https://danielmiessler.com/study/tcpdump/

ICMP

The command below will sniff the traffic only for ICMP packets

sudo tcpdump host 192.168.226.110 -i tun0 icmp

802.11x

tcpdump -i wlan0 -v -w capture-wifi-WPAEnterprise

Last updated