Wireshark - LogeshVel/learning_resources GitHub Wiki

Wireshark Filters

Membership filter

ip.addr == 8.8.8.8 or ip.addr == 9.9.9.9

ip.addr in {8.8.8.8, 9.9.9.9}

image

is equals to

image

image

Range in membership

Ex: if we need the packets that has the tcp ports from 47640 to 47650 (47640-47650)

tcp.port in {47640..47650}

image

contains

contains is case sensitive

image

matches

macthes is case insensitive

image

Packets that contains the string .org or .com

So here they haven't specified any particular protocols to look for example they haven't asked about tcp or udp or something. So we started from the ethernet frame itself.

image