wireshark Flashcards
how to find ip address both way source and destination
ip.addr= xx.xx.xx.xx
ip.src == xx.xx.xx.xx
ip.dst=xx.xx.xx.xx
how to find subnet
ip == xx.xx.xx.0/24
what source and destination network
source is outgoing traffic
destination is incoming traffic
how to find required port and in both ways
tcp.port== xx or udp.port ==xx
tcp.srcport==x or udp.srcport ==xx
tcp.dstport==x or udp.dstport==xx
type of Application Level Protocol Filters
HTTP,HTTPS,DNS,DHCP,SMTP,POP3,IMAP,SNMP,Telent,SSH,RDP,SIP,BGP,LDAP,NFS,SMB,ICMP,MQTT,Kerberos,bootp,rdp,smb or smb2,websocket
HTTP
http
Capture HTTP Requests
http.request.method == “XXX”
we can use POST,GET,PUT,DELETE
Capture Specific HTTP Response Codes
http.response.code ==XXX
how to find hash (sha256,sha1and etc) value of the capture file?
statistics->capture file proprties
how to search for specified string in packet examples(shash)
edit -> find packet
how to find files within capture packet
file -> export objects (option : http,smp,tftp,DICOM,imf)
apply it as a filter in Packet List Pane
select packet -> double click -> apply as filiter
Statistics –> Resolved Addresses
hosts,ports,capture file comment information
Statistic –> Conversations
ethernet, IPv4, IPv6, TCP and UDP.(show conversations event within capture pcap file)
Conversations focus on interactions between them.
Statistics –> Endpoints
Ethernet, IPv4, IPv6, TCP and UDP only endpoints device traffic
Endpoints focus on single devices
statistics ->ipv4 statistics
all ip addressess
destinations and ports
IP protocol type
source and destinations addressess traffic info
statistics -> dns
all DNS packets from the capture file
DNS service’s overall usage, including rcode, opcode, class, query type, service and query stats
statistics -> http
packet counter (count http request,response code)
requests (request by host )
load distribution ()
request sequences
Search a value inside packets explane with question find all apache servers
contains
examples :http.server contains “Apache”
Search a pattern of a regular expression. and examples Find all .php and .html pages.
matches
http.host matches “.(php|html)”
Search a value or field inside of a specific scope and examples :Find all packets that use ports 80, 443 or 8080.
in
tcp.port in {80 443 8080}
upper and lower
for uppercase use upper
lowercase use lower