Network Security

Wireshark Filters

2 sections13 commands

Display Filters

8 entries
  • ip.addr == 10.0.0.1Traffic to/from IP
  • tcp.port == 443TCP port 443
  • httpAll HTTP traffic
  • dnsAll DNS traffic
  • tcp.flags.syn == 1 && tcp.flags.ack == 0SYN packets only
  • frame contains "password"Frames containing string
  • http.request.method == POSTHTTP POST requests
  • tcp.analysis.retransmissionTCP retransmissions

Capture Filters

5 entries
  • host 10.0.0.1Capture from specific host
  • port 80Capture port 80
  • net 192.168.1.0/24Capture from subnet
  • not port 22Exclude SSH traffic
  • tcpTCP traffic only