xref: /openbsd/usr.bin/file/magdir/sniffer (revision 40fb8c25)
1*40fb8c25Ssthen#	$OpenBSD: sniffer,v 1.6 2016/04/28 12:26:40 sthen Exp $
2ab0f8c09Smillert
3ab0f8c09Smillert#------------------------------------------------------------------------------
436c0c0feStedu# sniffer:  file(1) magic for packet capture files
5ab0f8c09Smillert#
636c0c0feStedu# From: guy@alum.mit.edu (Guy Harris)
7ab0f8c09Smillert#
836c0c0feStedu
936c0c0feStedu#
1036c0c0feStedu# Microsoft Network Monitor 1.x capture files.
11ab0f8c09Smillert#
12ab0f8c09Smillert0	string		RTSS		NetMon capture file
1336c0c0feStedu>5	byte		x		- version %d
1436c0c0feStedu>4	byte		x		\b.%d
1536c0c0feStedu>6	leshort		0		(Unknown)
1636c0c0feStedu>6	leshort		1		(Ethernet)
1736c0c0feStedu>6	leshort		2		(Token Ring)
1836c0c0feStedu>6	leshort		3		(FDDI)
1936c0c0feStedu>6	leshort		4		(ATM)
20*40fb8c25Ssthen>6	leshort		>4		(type %d)
2136c0c0feStedu
2236c0c0feStedu#
2336c0c0feStedu# Microsoft Network Monitor 2.x capture files.
2436c0c0feStedu#
2536c0c0feStedu0	string		GMBU		NetMon capture file
2636c0c0feStedu>5	byte		x		- version %d
2736c0c0feStedu>4	byte		x		\b.%d
2836c0c0feStedu>6	leshort		0		(Unknown)
2936c0c0feStedu>6	leshort		1		(Ethernet)
3036c0c0feStedu>6	leshort		2		(Token Ring)
3136c0c0feStedu>6	leshort		3		(FDDI)
3236c0c0feStedu>6	leshort		4		(ATM)
33*40fb8c25Ssthen>6	leshort		5		(IP-over-IEEE 1394)
34*40fb8c25Ssthen>6	leshort		6		(802.11)
35*40fb8c25Ssthen>6	leshort		7		(Raw IP)
36*40fb8c25Ssthen>6	leshort		8		(Raw IP)
37*40fb8c25Ssthen>6	leshort		9		(Raw IP)
38*40fb8c25Ssthen>6	leshort		>9		(type %d)
3936c0c0feStedu
40ab0f8c09Smillert#
41ab0f8c09Smillert# Network General Sniffer capture files.
4236c0c0feStedu# Sorry, make that "Network Associates Sniffer capture files."
43380b5c7dSchl# Sorry, make that "Network General old DOS Sniffer capture files."
44*40fb8c25Ssthen# Sorry, make that "NetScout Sniffer capture files."
45ab0f8c09Smillert#
46ab0f8c09Smillert0	string		TRSNIFF\ data\ \ \ \ \032	Sniffer capture file
4736c0c0feStedu>33	byte		2		(compressed)
48ab0f8c09Smillert>23	leshort		x		- version %d
49ab0f8c09Smillert>25	leshort		x		\b.%d
5036c0c0feStedu>32	byte		0		(Token Ring)
5136c0c0feStedu>32	byte		1		(Ethernet)
5236c0c0feStedu>32	byte		2		(ARCNET)
5336c0c0feStedu>32	byte		3		(StarLAN)
5436c0c0feStedu>32	byte		4		(PC Network broadband)
5536c0c0feStedu>32	byte		5		(LocalTalk)
5636c0c0feStedu>32	byte		6		(Znet)
5736c0c0feStedu>32	byte		7		(Internetwork Analyzer)
5836c0c0feStedu>32	byte		9		(FDDI)
5936c0c0feStedu>32	byte		10		(ATM)
6036c0c0feStedu
6136c0c0feStedu#
6236c0c0feStedu# Cinco Networks NetXRay capture files.
6336c0c0feStedu# Sorry, make that "Network General Sniffer Basic capture files."
6436c0c0feStedu# Sorry, make that "Network Associates Sniffer Basic capture files."
6536c0c0feStedu# Sorry, make that "Network Associates Sniffer Basic, and Windows
6636c0c0feStedu# Sniffer Pro", capture files."
67380b5c7dSchl# Sorry, make that "Network General Sniffer capture files."
6836c0c0feStedu#
6936c0c0feStedu0	string		XCP\0		NetXRay capture file
7036c0c0feStedu>4	string		>\0		- version %s
7136c0c0feStedu>44	leshort		0		(Ethernet)
7236c0c0feStedu>44	leshort		1		(Token Ring)
7336c0c0feStedu>44	leshort		2		(FDDI)
7436c0c0feStedu>44	leshort		3		(WAN)
7536c0c0feStedu>44	leshort		8		(ATM)
7636c0c0feStedu>44	leshort		9		(802.11)
7736c0c0feStedu
78ab0f8c09Smillert#
79ab0f8c09Smillert# "libpcap" capture files.
80ab0f8c09Smillert# (We call them "tcpdump capture file(s)" for now, as "tcpdump" is
8136c0c0feStedu# the main program that uses that format, but there are other programs
8236c0c0feStedu# that use "libpcap", or that use the same capture file format.)
83ab0f8c09Smillert#
84ab0f8c09Smillert0	ubelong		0xa1b2c3d4	tcpdump capture file (big-endian)
85ab0f8c09Smillert>4	beshort		x		- version %d
86ab0f8c09Smillert>6	beshort		x		\b.%d
87ab0f8c09Smillert>20	belong		0		(No link-layer encapsulation
88ab0f8c09Smillert>20	belong		1		(Ethernet
89ab0f8c09Smillert>20	belong		2		(3Mb Ethernet
90ab0f8c09Smillert>20	belong		3		(AX.25
9136c0c0feStedu>20	belong		4		(ProNET
9236c0c0feStedu>20	belong		5		(CHAOS
9336c0c0feStedu>20	belong		6		(Token Ring
9436c0c0feStedu>20	belong		7		(BSD ARCNET
95ab0f8c09Smillert>20	belong		8		(SLIP
96ab0f8c09Smillert>20	belong		9		(PPP
97ab0f8c09Smillert>20	belong		10		(FDDI
98ab0f8c09Smillert>20	belong		11		(RFC 1483 ATM
99380b5c7dSchl>20	belong		12		(raw IP
100380b5c7dSchl>20	belong		13		(BSD/OS SLIP
101380b5c7dSchl>20	belong		14		(BSD/OS PPP
102380b5c7dSchl>20	belong		19		(Linux ATM Classical IP
10336c0c0feStedu>20	belong		50		(PPP or Cisco HDLC
10436c0c0feStedu>20	belong		51		(PPP-over-Ethernet
105380b5c7dSchl>20	belong		99		(Symantec Enterprise Firewall
10636c0c0feStedu>20	belong		100		(RFC 1483 ATM
10736c0c0feStedu>20	belong		101		(raw IP
10836c0c0feStedu>20	belong		102		(BSD/OS SLIP
10936c0c0feStedu>20	belong		103		(BSD/OS PPP
11036c0c0feStedu>20	belong		104		(BSD/OS Cisco HDLC
11136c0c0feStedu>20	belong		105		(802.11
11236c0c0feStedu>20	belong		106		(Linux Classical IP over ATM
11336c0c0feStedu>20	belong		107		(Frame Relay
11436c0c0feStedu>20	belong		108		(OpenBSD loopback
11536c0c0feStedu>20	belong		109		(OpenBSD IPsec encrypted
11636c0c0feStedu>20	belong		112		(Cisco HDLC
11736c0c0feStedu>20	belong		113		(Linux "cooked"
11836c0c0feStedu>20	belong		114		(LocalTalk
11936c0c0feStedu>20	belong		117		(OpenBSD PFLOG
12036c0c0feStedu>20	belong		119		(802.11 with Prism header
121380b5c7dSchl>20	belong		122		(RFC 2625 IP over Fibre Channel
12236c0c0feStedu>20	belong		123		(SunATM
12336c0c0feStedu>20	belong		127		(802.11 with radiotap header
12436c0c0feStedu>20	belong		129		(Linux ARCNET
125380b5c7dSchl>20	belong		138		(Apple IP over IEEE 1394
126*40fb8c25Ssthen>20	belong		139		(MTP2 with pseudo-header
12736c0c0feStedu>20	belong		140		(MTP2
12836c0c0feStedu>20	belong		141		(MTP3
129*40fb8c25Ssthen>20	belong		142		(SCCP
13036c0c0feStedu>20	belong		143		(DOCSIS
13136c0c0feStedu>20	belong		144		(IrDA
132380b5c7dSchl>20	belong		147		(Private use 0
133380b5c7dSchl>20	belong		148		(Private use 1
134380b5c7dSchl>20	belong		149		(Private use 2
135380b5c7dSchl>20	belong		150		(Private use 3
136380b5c7dSchl>20	belong		151		(Private use 4
137380b5c7dSchl>20	belong		152		(Private use 5
138380b5c7dSchl>20	belong		153		(Private use 6
139380b5c7dSchl>20	belong		154		(Private use 7
140380b5c7dSchl>20	belong		155		(Private use 8
141380b5c7dSchl>20	belong		156		(Private use 9
142380b5c7dSchl>20	belong		157		(Private use 10
143380b5c7dSchl>20	belong		158		(Private use 11
144380b5c7dSchl>20	belong		159		(Private use 12
145380b5c7dSchl>20	belong		160		(Private use 13
146380b5c7dSchl>20	belong		161		(Private use 14
147380b5c7dSchl>20	belong		162		(Private use 15
148380b5c7dSchl>20	belong		163		(802.11 with AVS header
149*40fb8c25Ssthen>20	belong		165		(BACnet MS/TP
150*40fb8c25Ssthen>20	belong		166		(PPPD
151*40fb8c25Ssthen>20	belong		169		(GPRS LLC
152*40fb8c25Ssthen>20	belong		177		(Linux LAPD
153*40fb8c25Ssthen>20	belong		187		(Bluetooth HCI H4
154*40fb8c25Ssthen>20	belong		189		(Linux USB
155*40fb8c25Ssthen>20	belong		192		(PPI
156*40fb8c25Ssthen>20	belong		195		(802.15.4
157*40fb8c25Ssthen>20	belong		196		(SITA
158*40fb8c25Ssthen>20	belong		197		(Endace ERF
159*40fb8c25Ssthen>20	belong		201		(Bluetooth HCI H4 with pseudo-header
160*40fb8c25Ssthen>20	belong		202		(AX.25 with KISS header
161*40fb8c25Ssthen>20	belong		203		(LAPD
162*40fb8c25Ssthen>20	belong		204		(PPP with direction pseudo-header
163*40fb8c25Ssthen>20	belong		205		(Cisco HDLC with direction pseudo-header
164*40fb8c25Ssthen>20	belong		206		(Frame Relay with direction pseudo-header
165*40fb8c25Ssthen>20	belong		209		(Linux IPMB
166*40fb8c25Ssthen>20	belong		215		(802.15.4 with non-ASK PHY header
167*40fb8c25Ssthen>20	belong		220		(Memory-mapped Linux USB
168*40fb8c25Ssthen>20	belong		224		(Fibre Channel FC-2
169*40fb8c25Ssthen>20	belong		225		(Fibre Channel FC-2 with frame delimiters
170*40fb8c25Ssthen>20	belong		226		(Solaris IPNET
171*40fb8c25Ssthen>20	belong		227		(SocketCAN
172*40fb8c25Ssthen>20	belong		228		(Raw IPv4
173*40fb8c25Ssthen>20	belong		229		(Raw IPv6
174*40fb8c25Ssthen>20	belong		230		(802.15.4 without FCS
175*40fb8c25Ssthen>20	belong		231		(D-Bus messages
176*40fb8c25Ssthen>20	belong		235		(DVB-CI
177*40fb8c25Ssthen>20	belong		236		(MUX27010
178*40fb8c25Ssthen>20	belong		237		(STANAG 5066 D_PDUs
179*40fb8c25Ssthen>20	belong		239		(Linux netlink NFLOG messages
180*40fb8c25Ssthen>20	belong		240		(Hilscher netAnalyzer
181*40fb8c25Ssthen>20	belong		241		(Hilscher netAnalyzer with delimiters
182*40fb8c25Ssthen>20	belong		242		(IP-over-Infiniband
183*40fb8c25Ssthen>20	belong		243		(MPEG-2 Transport Stream packets
184*40fb8c25Ssthen>20	belong		244		(ng4t ng40
185*40fb8c25Ssthen>20	belong		245		(NFC LLCP
186*40fb8c25Ssthen>20	belong		247		(Infiniband
187*40fb8c25Ssthen>20	belong		248		(SCTP
188ab0f8c09Smillert>16	belong		x		\b, capture length %d)
189ab0f8c09Smillert0	ulelong		0xa1b2c3d4	tcpdump capture file (little-endian)
190ab0f8c09Smillert>4	leshort		x		- version %d
191ab0f8c09Smillert>6	leshort		x		\b.%d
192ab0f8c09Smillert>20	lelong		0		(No link-layer encapsulation
193ab0f8c09Smillert>20	lelong		1		(Ethernet
194ab0f8c09Smillert>20	lelong		2		(3Mb Ethernet
195ab0f8c09Smillert>20	lelong		3		(AX.25
19636c0c0feStedu>20	lelong		4		(ProNET
19736c0c0feStedu>20	lelong		5		(CHAOS
19836c0c0feStedu>20	lelong		6		(Token Ring
19936c0c0feStedu>20	lelong		7		(ARCNET
200ab0f8c09Smillert>20	lelong		8		(SLIP
201ab0f8c09Smillert>20	lelong		9		(PPP
202ab0f8c09Smillert>20	lelong		10		(FDDI
203ab0f8c09Smillert>20	lelong		11		(RFC 1483 ATM
204380b5c7dSchl>20	lelong		12		(raw IP
205380b5c7dSchl>20	lelong		13		(BSD/OS SLIP
206380b5c7dSchl>20	lelong		14		(BSD/OS PPP
207380b5c7dSchl>20	lelong		19		(Linux ATM Classical IP
20836c0c0feStedu>20	lelong		50		(PPP or Cisco HDLC
20936c0c0feStedu>20	lelong		51		(PPP-over-Ethernet
210380b5c7dSchl>20	lelong		99		(Symantec Enterprise Firewall
21136c0c0feStedu>20	lelong		100		(RFC 1483 ATM
21236c0c0feStedu>20	lelong		101		(raw IP
21336c0c0feStedu>20	lelong		102		(BSD/OS SLIP
21436c0c0feStedu>20	lelong		103		(BSD/OS PPP
21536c0c0feStedu>20	lelong		104		(BSD/OS Cisco HDLC
21636c0c0feStedu>20	lelong		105		(802.11
21736c0c0feStedu>20	lelong		106		(Linux Classical IP over ATM
21836c0c0feStedu>20	lelong		107		(Frame Relay
21936c0c0feStedu>20	lelong		108		(OpenBSD loopback
220380b5c7dSchl>20	lelong		109		(OpenBSD IPsec encrypted
22136c0c0feStedu>20	lelong		112		(Cisco HDLC
22236c0c0feStedu>20	lelong		113		(Linux "cooked"
22336c0c0feStedu>20	lelong		114		(LocalTalk
22436c0c0feStedu>20	lelong		117		(OpenBSD PFLOG
22536c0c0feStedu>20	lelong		119		(802.11 with Prism header
226380b5c7dSchl>20	lelong		122		(RFC 2625 IP over Fibre Channel
22736c0c0feStedu>20	lelong		123		(SunATM
22836c0c0feStedu>20	lelong		127		(802.11 with radiotap header
22936c0c0feStedu>20	lelong		129		(Linux ARCNET
230380b5c7dSchl>20	lelong		138		(Apple IP over IEEE 1394
231*40fb8c25Ssthen>20	lelong		139		(MTP2 with pseudo-header
23236c0c0feStedu>20	lelong		140		(MTP2
23336c0c0feStedu>20	lelong		141		(MTP3
234*40fb8c25Ssthen>20	lelong		142		(SCCP
23536c0c0feStedu>20	lelong		143		(DOCSIS
23636c0c0feStedu>20	lelong		144		(IrDA
237380b5c7dSchl>20	lelong		147		(Private use 0
238380b5c7dSchl>20	lelong		148		(Private use 1
239380b5c7dSchl>20	lelong		149		(Private use 2
240380b5c7dSchl>20	lelong		150		(Private use 3
241380b5c7dSchl>20	lelong		151		(Private use 4
242380b5c7dSchl>20	lelong		152		(Private use 5
243380b5c7dSchl>20	lelong		153		(Private use 6
244380b5c7dSchl>20	lelong		154		(Private use 7
245380b5c7dSchl>20	lelong		155		(Private use 8
246380b5c7dSchl>20	lelong		156		(Private use 9
247380b5c7dSchl>20	lelong		157		(Private use 10
248380b5c7dSchl>20	lelong		158		(Private use 11
249380b5c7dSchl>20	lelong		159		(Private use 12
250380b5c7dSchl>20	lelong		160		(Private use 13
251380b5c7dSchl>20	lelong		161		(Private use 14
252380b5c7dSchl>20	lelong		162		(Private use 15
253380b5c7dSchl>20	lelong		163		(802.11 with AVS header
254*40fb8c25Ssthen>20	lelong		165		(BACnet MS/TP
255*40fb8c25Ssthen>20	lelong		166		(PPPD
256*40fb8c25Ssthen>20	lelong		169		(GPRS LLC
257*40fb8c25Ssthen>20	lelong		177		(Linux LAPD
258*40fb8c25Ssthen>20	lelong		187		(Bluetooth HCI H4
259*40fb8c25Ssthen>20	lelong		189		(Linux USB
260*40fb8c25Ssthen>20	lelong		192		(PPI
261*40fb8c25Ssthen>20	lelong		195		(802.15.4
262*40fb8c25Ssthen>20	lelong		196		(SITA
263*40fb8c25Ssthen>20	lelong		197		(Endace ERF
264*40fb8c25Ssthen>20	lelong		201		(Bluetooth HCI H4 with pseudo-header
265*40fb8c25Ssthen>20	lelong		202		(AX.25 with KISS header
266*40fb8c25Ssthen>20	lelong		203		(LAPD
267*40fb8c25Ssthen>20	lelong		204		(PPP with direction pseudo-header
268*40fb8c25Ssthen>20	lelong		205		(Cisco HDLC with direction pseudo-header
269*40fb8c25Ssthen>20	lelong		206		(Frame Relay with direction pseudo-header
270*40fb8c25Ssthen>20	lelong		209		(Linux IPMB
271*40fb8c25Ssthen>20	lelong		215		(802.15.4 with non-ASK PHY header
272*40fb8c25Ssthen>20	lelong		220		(Memory-mapped Linux USB
273*40fb8c25Ssthen>20	lelong		224		(Fibre Channel FC-2
274*40fb8c25Ssthen>20	lelong		225		(Fibre Channel FC-2 with frame delimiters
275*40fb8c25Ssthen>20	lelong		226		(Solaris IPNET
276*40fb8c25Ssthen>20	lelong		227		(SocketCAN
277*40fb8c25Ssthen>20	lelong		228		(Raw IPv4
278*40fb8c25Ssthen>20	lelong		229		(Raw IPv6
279*40fb8c25Ssthen>20	lelong		230		(802.15.4 without FCS
280*40fb8c25Ssthen>20	lelong		231		(D-Bus messages
281*40fb8c25Ssthen>20	lelong		235		(DVB-CI
282*40fb8c25Ssthen>20	lelong		236		(MUX27010
283*40fb8c25Ssthen>20	lelong		237		(STANAG 5066 D_PDUs
284*40fb8c25Ssthen>20	lelong		239		(Linux netlink NFLOG messages
285*40fb8c25Ssthen>20	lelong		240		(Hilscher netAnalyzer
286*40fb8c25Ssthen>20	lelong		241		(Hilscher netAnalyzer with delimiters
287*40fb8c25Ssthen>20	lelong		242		(IP-over-Infiniband
288*40fb8c25Ssthen>20	lelong		243		(MPEG-2 Transport Stream packets
289*40fb8c25Ssthen>20	lelong		244		(ng4t ng40
290*40fb8c25Ssthen>20	lelong		245		(NFC LLCP
291*40fb8c25Ssthen>20	lelong		247		(Infiniband
292*40fb8c25Ssthen>20	lelong		248		(SCTP
293ab0f8c09Smillert>16	lelong		x		\b, capture length %d)
29436c0c0feStedu
29536c0c0feStedu#
29636c0c0feStedu# "libpcap"-with-Alexey-Kuznetsov's-patches capture files.
29736c0c0feStedu# (We call them "tcpdump capture file(s)" for now, as "tcpdump" is
29836c0c0feStedu# the main program that uses that format, but there are other programs
29936c0c0feStedu# that use "libpcap", or that use the same capture file format.)
30036c0c0feStedu#
30136c0c0feStedu0	ubelong		0xa1b2cd34	extended tcpdump capture file (big-endian)
30236c0c0feStedu>4	beshort		x		- version %d
30336c0c0feStedu>6	beshort		x		\b.%d
30436c0c0feStedu>20	belong		0		(No link-layer encapsulation
30536c0c0feStedu>20	belong		1		(Ethernet
30636c0c0feStedu>20	belong		2		(3Mb Ethernet
30736c0c0feStedu>20	belong		3		(AX.25
30836c0c0feStedu>20	belong		4		(ProNET
30936c0c0feStedu>20	belong		5		(CHAOS
31036c0c0feStedu>20	belong		6		(Token Ring
31136c0c0feStedu>20	belong		7		(ARCNET
31236c0c0feStedu>20	belong		8		(SLIP
31336c0c0feStedu>20	belong		9		(PPP
31436c0c0feStedu>20	belong		10		(FDDI
31536c0c0feStedu>20	belong		11		(RFC 1483 ATM
31636c0c0feStedu>20	belong		12		(raw IP
31736c0c0feStedu>20	belong		13		(BSD/OS SLIP
31836c0c0feStedu>20	belong		14		(BSD/OS PPP
31936c0c0feStedu>16	belong		x		\b, capture length %d)
32036c0c0feStedu0	ulelong		0xa1b2cd34	extended tcpdump capture file (little-endian)
32136c0c0feStedu>4	leshort		x		- version %d
32236c0c0feStedu>6	leshort		x		\b.%d
32336c0c0feStedu>20	lelong		0		(No link-layer encapsulation
32436c0c0feStedu>20	lelong		1		(Ethernet
32536c0c0feStedu>20	lelong		2		(3Mb Ethernet
32636c0c0feStedu>20	lelong		3		(AX.25
32736c0c0feStedu>20	lelong		4		(ProNET
32836c0c0feStedu>20	lelong		5		(CHAOS
32936c0c0feStedu>20	lelong		6		(Token Ring
33036c0c0feStedu>20	lelong		7		(ARCNET
33136c0c0feStedu>20	lelong		8		(SLIP
33236c0c0feStedu>20	lelong		9		(PPP
33336c0c0feStedu>20	lelong		10		(FDDI
33436c0c0feStedu>20	lelong		11		(RFC 1483 ATM
33536c0c0feStedu>20	lelong		12		(raw IP
33636c0c0feStedu>20	lelong		13		(BSD/OS SLIP
33736c0c0feStedu>20	lelong		14		(BSD/OS PPP
33836c0c0feStedu>16	lelong		x		\b, capture length %d)
33936c0c0feStedu
34036c0c0feStedu#
341*40fb8c25Ssthen# "pcap-ng" capture files.
342*40fb8c25Ssthen# http://www.winpcap.org/ntar/draft/PCAP-DumpFileFormat.html
343*40fb8c25Ssthen# Pcap-ng files can contain multiple sections. Printing the endianness,
344*40fb8c25Ssthen# snaplen, or other information from the first SHB may be misleading.
345*40fb8c25Ssthen#
346*40fb8c25Ssthen0	ubelong		0x0a0d0d0a
347*40fb8c25Ssthen>8	ubelong		0x1a2b3c4d	pcap-ng capture file
348*40fb8c25Ssthen>>12	beshort		x		- version %d
349*40fb8c25Ssthen>>14	beshort		x		\b.%d
350*40fb8c25Ssthen0	ulelong		0x0a0d0d0a
351*40fb8c25Ssthen>8	ulelong		0x1a2b3c4d	pcap-ng capture file
352*40fb8c25Ssthen>>12	leshort		x		- version %d
353*40fb8c25Ssthen>>14	leshort		x		\b.%d
354*40fb8c25Ssthen
355*40fb8c25Ssthen#
35636c0c0feStedu# AIX "iptrace" capture files.
35736c0c0feStedu#
35836c0c0feStedu0	string		iptrace\ 1.0	"iptrace" capture file
35936c0c0feStedu0	string		iptrace\ 2.0	"iptrace" capture file
36036c0c0feStedu
36136c0c0feStedu#
36236c0c0feStedu# Novell LANalyzer capture files.
36336c0c0feStedu#
36436c0c0feStedu0	leshort		0x1001		LANalyzer capture file
36536c0c0feStedu0	leshort		0x1007		LANalyzer capture file
36636c0c0feStedu
36736c0c0feStedu#
36836c0c0feStedu# HP-UX "nettl" capture files.
36936c0c0feStedu#
37036c0c0feStedu0	string		\x54\x52\x00\x64\x00	"nettl" capture file
37136c0c0feStedu
37236c0c0feStedu#
37336c0c0feStedu# RADCOM WAN/LAN Analyzer capture files.
37436c0c0feStedu#
37536c0c0feStedu0	string		\x42\xd2\x00\x34\x12\x66\x22\x88	RADCOM WAN/LAN Analyzer capture file
37636c0c0feStedu
37736c0c0feStedu#
37836c0c0feStedu# NetStumbler log files.  Not really packets, per se, but about as
37936c0c0feStedu# close as you can get.  These are log files from NetStumbler, a
38036c0c0feStedu# Windows program, that scans for 802.11b networks.
38136c0c0feStedu#
38236c0c0feStedu0	string		NetS		NetStumbler log file
38336c0c0feStedu>8	lelong		x		\b, %d stations found
384380b5c7dSchl
385380b5c7dSchl#
386*40fb8c25Ssthen# *Peek "version 9" capture files.
387380b5c7dSchl#
388*40fb8c25Ssthen0	string		\177ver		EtherPeek/AiroPeek/OmniPeek capture file
389380b5c7dSchl
390380b5c7dSchl#
391380b5c7dSchl# Visual Networks traffic capture files.
392380b5c7dSchl#
393380b5c7dSchl0	string		\x05VNF		Visual Networks traffic capture file
394380b5c7dSchl
395380b5c7dSchl#
396380b5c7dSchl# Network Instruments Observer capture files.
397380b5c7dSchl#
398380b5c7dSchl0	string		ObserverPktBuffe	Network Instruments Observer capture file
399380b5c7dSchl
400380b5c7dSchl#
401380b5c7dSchl# Files from Accellent Group's 5View products.
402380b5c7dSchl#
403380b5c7dSchl0	string		\xaa\xaa\xaa\xaa	5View capture file
404