-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWIRESHARK.txt
69 lines (60 loc) · 1.29 KB
/
WIRESHARK.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Wireshark:
Filters – relationships operators
eq, == equal
ne, != not equal
gt, > greater
lt, < lower
ge, >= greater or equal
le, <= lower or equal
Filters – logic operators
and, && logical AND
or, || logical OR
not, ! logical NOT
Filters - protocols
arp, dns, tcp, udp, ip, ipv6, irc, idp, ipx, http, pop, smtp, ftp, gnutella, image-jfif, kerberos, l2tp,
netlogon, smb...
Filters – protocol fields (eth)
The Wireshark – filters and statistics
Strona 4
eth.addr ==
eth.dst ==
eth.len ==
eth.src ==
eth.trailer ==
eth.type ==
Filters – protocol fields (IP)
ip.dst eq www.mit.edu
ip.src == 192.168.1.1
ip.addr == 129.111.0.0/16
ip.fragment ==
ip.id ==
ip.len ==
ip.ttl ==
Filters – protocol fields (TCP)
tcp.port == 80
tcp.dstport ==
tcp.srcport ==
tcp.ack == numer potwierdzenia
tcp.flags == flaga 8-bit
tcp.flags.reset {ack, syn, fin, }
tcp.len == ???
tcp.window_size ==
Filters – protocol fields (UDP)
udp.checksum
udp.checksum_bad
udp.dstport
udp.length
udp.port
udp.srcport
Filters – protocol fields (HTTP)
http.cookie ==
http.host ==
Filters – protocol fields (echo)
echo.data ==
echo.request
echo.response
Examples:
Traffic of telnet service for particular host
tcp.port==23 and host==10.0.0.5
Traffic of telnet service for all host except selected one
tcp.port==23 and not host==10.0.0.5