Wireshark Cheat Sheet
Start
wireshark
# Open with .pcapng file
wireshark example.pcapngSettings
Datetime Format When Packets Sent
Filters
Datetime
frame.time >= "Jan 2, 2023 08:00:00" && frame.time <= "Jan 5, 2023 08:00:00"DNS
dns
udp.port == 53
# Record type
dns.qry.type == 1 # A record
dns.qry.type == 2 # NS record
dns.qry.type == 5 # CNAME record
dns.qry.type == 6 # SOA record
dns.qry.type == 15 # MX record
dns.qry.type == 16 # TXT record
dns.qry.type == 28 # AAAA record
dns.qry.type == 252 # AXFR
# Query name
dns.qry.name matches "example.com"
# Reponse
dns.flags.response == 0 # No responseFTP
HTTP & HTTPS
ICMP
IP Address
Kerberos (KRB4, KRB5)
SMB
SMTP
SSH
Search Packets by Strings
Detailed Information
More Information
Data Exfiltration via DNS
Data Exfiltration via HTTP
Extract Images
WiFi Handshakes
Decrypting SSL/TLS Traffic
Decrypt Kerberos Cipher Data
Crack WiFi Password
Last updated