Common Wireshark display filters for isolating traffic during pentests.
Wireshark’s display filter bar is where most of the time savings live. Here are the filters I reach for most often when triaging a capture.
ip.src == 192.168.1.1 # Show only packets originating from this IPip.dst == 192.168.1.1 # Show only packets destined for this IPtcp.port == 22 # Show only traffic on TCP port 22udp.port == 67 # Show only traffic on UDP port 67http.request.method == GET # Show only HTTP GET requestshttp.request.method == POST # Show only HTTP POST requests



