pf.os revision 163621
1126756Smlaier# $FreeBSD: head/etc/pf.os 163621 2006-10-23 05:09:44Z delphij $
2163621Sdelphij# $OpenBSD: pf.os,v 1.21 2006/07/28 21:51:12 david Exp $
3126756Smlaier# passive OS fingerprinting
4126756Smlaier# -------------------------
5126756Smlaier#
6126756Smlaier# SYN signatures. Those signatures work for SYN packets only (duh!).
7126756Smlaier#
8126756Smlaier# (C) Copyright 2000-2003 by Michal Zalewski <lcamtuf@coredump.cx>
9126756Smlaier# (C) Copyright 2003 by Mike Frantzen <frantzen@w4g.org>
10126756Smlaier#
11126756Smlaier#  Permission to use, copy, modify, and distribute this software for any
12126756Smlaier#  purpose with or without fee is hereby granted, provided that the above
13126756Smlaier#  copyright notice and this permission notice appear in all copies.
14126756Smlaier#
15126756Smlaier#  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
16126756Smlaier#  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17126756Smlaier#  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
18126756Smlaier#  ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19126756Smlaier#  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20126756Smlaier#  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21126756Smlaier#  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22126756Smlaier#
23126756Smlaier#
24126756Smlaier# This fingerprint database is adapted from Michal Zalewski's p0f passive
25135183Smlaier# operating system package.  The last database sync was from a Nov 3 2003
26135183Smlaier# p0f.fp.
27126756Smlaier#
28126756Smlaier#
29126756Smlaier# Each line in this file specifies a single fingerprint. Please read the
30126756Smlaier# information below carefully before attempting to append any signatures
31126756Smlaier# reported as UNKNOWN to this file to avoid mistakes.
32126756Smlaier#
33126756Smlaier# We use the following set metrics for fingerprinting:
34126756Smlaier#
35126756Smlaier# - Window size (WSS) - a highly OS dependent setting used for TCP/IP
36126756Smlaier#   performance control (max. amount of data to be sent without ACK).
37126756Smlaier#   Some systems use a fixed value for initial packets. On other
38126756Smlaier#   systems, it is a multiple of MSS or MTU (MSS+40). In some rare
39126756Smlaier#   cases, the value is just arbitrary.
40126756Smlaier#
41126756Smlaier#   NEW SIGNATURE: if p0f reported a special value of 'Snn', the number
42126756Smlaier#   appears to be a multiple of MSS (MSS*nn); a special value of 'Tnn'
43126756Smlaier#   means it is a multiple of MTU ((MSS+40)*nn). Unless you notice the
44126756Smlaier#   value of nn is not fixed (unlikely), just copy the Snn or Tnn token
45126756Smlaier#   literally. If you know this device has a simple stack and a fixed
46126756Smlaier#   MTU, you can however multiply S value by MSS, or T value by MSS+40,
47126756Smlaier#   and put it instead of Snn or Tnn.
48126756Smlaier#
49126756Smlaier#   If WSS otherwise looks like a fixed value (for example a multiple
50126756Smlaier#   of two), or if you can confirm the value is fixed, please quote
51126756Smlaier#   it literally. If there's no apparent pattern in WSS chosen, you
52126756Smlaier#   should consider wildcarding this value.
53126756Smlaier#
54126756Smlaier# - Overall packet size - a function of all IP and TCP options and bugs.
55126756Smlaier#
56126756Smlaier#   NEW SIGNATURE: Copy this value literally.
57126756Smlaier#
58126756Smlaier# - Initial TTL - We check the actual TTL of a received packet. It can't
59126756Smlaier#   be higher than the initial TTL, and also shouldn't be dramatically
60126756Smlaier#   lower (maximum distance is defined as 40 hops).
61126756Smlaier#
62126756Smlaier#   NEW SIGNATURE: *Never* copy TTL from a p0f-reported signature literally.
63126756Smlaier#   You need to determine the initial TTL. The best way to do it is to
64126756Smlaier#   check the documentation for a remote system, or check its settings.
65126756Smlaier#   A fairly good method is to simply round the observed TTL up to
66126756Smlaier#   32, 64, 128, or 255, but it should be noted that some obscure devices
67126756Smlaier#   might not use round TTLs (in particular, some shoddy appliances use
68126756Smlaier#   "original" initial TTL settings). If not sure, you can see how many
69126756Smlaier#   hops you're away from the remote party with traceroute or mtr.
70126756Smlaier#
71126756Smlaier# - Don't fragment flag (DF) - some modern OSes set this to implement PMTU
72126756Smlaier#   discovery. Others do not bother.
73126756Smlaier#
74126756Smlaier#   NEW SIGNATURE: Copy this value literally.
75126756Smlaier#
76126756Smlaier# - Maximum segment size (MSS) - this setting is usually link-dependent. P0f
77126756Smlaier#   uses it to determine link type of the remote host.
78126756Smlaier#
79126756Smlaier#   NEW SIGNATURE: Always wildcard this value, except for rare cases when
80126756Smlaier#   you have an appliance with a fixed value, know the system supports only
81126756Smlaier#   a very limited number of network interface types, or know the system
82126756Smlaier#   is using a value it pulled out of nowhere.  Specific unique MSS
83126756Smlaier#   can be used to tell Google crawlbots from the rest of the population.
84126756Smlaier#
85126756Smlaier# - Window scaling (WSCALE) - this feature is used to scale WSS.
86126756Smlaier#   It extends the size of a TCP/IP window to 32 bits. Some modern
87126756Smlaier#   systems implement this feature.
88126756Smlaier#
89126756Smlaier#   NEW SIGNATURE: Observe several signatures. Initial WSCALE is often set
90126756Smlaier#   to zero or other low value. There's usually no need to wildcard this
91126756Smlaier#   parameter.
92126756Smlaier#
93126756Smlaier# - Timestamp - some systems that implement timestamps set them to
94126756Smlaier#   zero in the initial SYN. This case is detected and handled appropriately.
95126756Smlaier#
96126756Smlaier# - Selective ACK permitted - a flag set by systems that implement
97126756Smlaier#   selective ACK functionality.
98126756Smlaier#
99126756Smlaier# - The sequence of TCP all options (MSS, window scaling, selective ACK
100126756Smlaier#   permitted, timestamp, NOP). Other than the options previously
101126756Smlaier#   discussed, p0f also checks for timestamp option (a silly
102126756Smlaier#   extension to broadcast your uptime ;-), NOP options (used for
103126756Smlaier#   header padding) and sackOK option (selective ACK feature).
104126756Smlaier#
105126756Smlaier#   NEW SIGNATURE: Copy the sequence literally.
106126756Smlaier#
107126756Smlaier# To wildcard any value (except for initial TTL or TCP options), replace
108126756Smlaier# it with '*'. You can also use a modulo operator to match any values
109126756Smlaier# that divide by nnn - '%nnn'.
110126756Smlaier#
111126756Smlaier# Fingerprint entry format:
112126756Smlaier#
113126756Smlaier# wwww:ttt:D:ss:OOO...:OS:Version:Subtype:Details
114126756Smlaier#
115126756Smlaier# wwww     - window size (can be *, %nnn, Snn or Tnn).  The special values
116126756Smlaier#            "S" and "T" which are a multiple of MSS or a multiple of MTU
117126756Smlaier#            respectively.
118126756Smlaier# ttt      - initial TTL
119126756Smlaier# D        - don't fragment bit (0 - not set, 1 - set)
120126756Smlaier# ss       - overall SYN packet size
121126756Smlaier# OOO      - option value and order specification (see below)
122126756Smlaier# OS       - OS genre (Linux, Solaris, Windows)
123126756Smlaier# Version  - OS Version (2.0.27 on x86, etc)
124126756Smlaier# Subtype  - OS subtype or patchlevel (SP3, lo0)
125126756Smlaier# details  - Generic OS details
126126756Smlaier#
127126756Smlaier# If OS genre starts with '*', p0f will not show distance, link type
128126756Smlaier# and timestamp data. It is useful for userland TCP/IP stacks of
129126756Smlaier# network scanners and so on, where many settings are randomized or
130126756Smlaier# bogus.
131126756Smlaier#
132126756Smlaier# If OS genre starts with @, it denotes an approximate hit for a group
133126756Smlaier# of operating systems (signature reporting still enabled in this case).
134126756Smlaier# Use this feature at the end of this file to catch cases for which
135126756Smlaier# you don't have a precise match, but can tell it's Windows or FreeBSD
136126756Smlaier# or whatnot by looking at, say, flag layout alone.
137126756Smlaier#
138126756Smlaier# Option block description is a list of comma or space separated
139126756Smlaier# options in the order they appear in the packet:
140126756Smlaier#
141126756Smlaier# N	   - NOP option
142126756Smlaier# Wnnn	   - window scaling option, value nnn (or * or %nnn)
143126756Smlaier# Mnnn	   - maximum segment size option, value nnn (or * or %nnn)
144126756Smlaier# S	   - selective ACK OK
145135183Smlaier# T	   - timestamp
146135183Smlaier# T0	   - timestamp with a zero value
147126756Smlaier#
148126756Smlaier# To denote no TCP options, use a single '.'.
149126756Smlaier#
150126756Smlaier# Please report any additions to this file, or any inaccuracies or
151126756Smlaier# problems spotted, to the maintainers: lcamtuf@coredump.cx,
152126756Smlaier# frantzen@openbsd.org and bugs@openbsd.org with a tcpdump packet
153126756Smlaier# capture of the relevant SYN packet(s)
154126756Smlaier#
155135183Smlaier# A test and submission page is available at
156135183Smlaier# http://lcamtuf.coredump.cx/p0f-help/
157135183Smlaier#
158135183Smlaier#
159126756Smlaier# WARNING WARNING WARNING
160126756Smlaier# -----------------------
161126756Smlaier#
162126756Smlaier# Do not add a system X as OS Y just because NMAP says so. It is often
163126756Smlaier# the case that X is a NAT firewall. While nmap is talking to the
164126756Smlaier# device itself, p0f is fingerprinting the guy behind the firewall
165126756Smlaier# instead.
166126756Smlaier#
167126756Smlaier# When in doubt, use common sense, don't add something that looks like
168126756Smlaier# a completely different system as Linux or FreeBSD or LinkSys router.
169126756Smlaier# Check DNS name, establish a connection to the remote host and look
170126756Smlaier# at SYN+ACK - does it look similar?
171126756Smlaier#
172126756Smlaier# Some users tweak their TCP/IP settings - enable or disable RFC1323
173126756Smlaier# functionality, enable or disable timestamps or selective ACK,
174126756Smlaier# disable PMTU discovery, change MTU and so on. Always compare a new rule
175126756Smlaier# to other fingerprints for this system, and verify the system isn't
176126756Smlaier# "customized" before adding it. It is OK to add signature variants
177126756Smlaier# caused by a commonly used software (personal firewalls, security
178126756Smlaier# packages, etc), but it makes no sense to try to add every single
179126756Smlaier# possible /proc/sys/net/ipv4 tweak on Linux or so.
180126756Smlaier#
181126756Smlaier# KEEP IN MIND: Some packet firewalls configured to normalize outgoing
182126756Smlaier# traffic (OpenBSD pf with "scrub" enabled, for example) will, well,
183126756Smlaier# normalize packets. Signatures will not correspond to the originating
184126756Smlaier# system (and probably not quite to the firewall either).
185126756Smlaier#
186126756Smlaier# NOTE: Try to keep this file in some reasonable order, from most to
187126756Smlaier# least likely systems. This will speed up operation. Also keep most
188126756Smlaier# generic and broad rules near the end.
189126756Smlaier#
190126756Smlaier
191126756Smlaier##########################
192126756Smlaier# Standard OS signatures #
193126756Smlaier##########################
194126756Smlaier
195126756Smlaier# ----------------- AIX ---------------------
196126756Smlaier
197126756Smlaier# AIX is first because its signatures are close to NetBSD, MacOS X and
198126756Smlaier# Linux 2.0, but it uses a fairly rare MSSes, at least sometimes...
199126756Smlaier# This is a shoddy hack, though.
200126756Smlaier
201135183Smlaier45046:64:0:44:M*:		AIX:4.3::AIX 4.3
202126756Smlaier16384:64:0:44:M512:		AIX:4.3:2-3:AIX 4.3.2 and earlier
203126756Smlaier
204126756Smlaier16384:64:0:60:M512,N,W%2,N,N,T:		AIX:4.3:3:AIX 4.3.3-5.2
205126756Smlaier16384:64:0:60:M512,N,W%2,N,N,T:		AIX:5.1-5.2::AIX 4.3.3-5.2
206126756Smlaier32768:64:0:60:M512,N,W%2,N,N,T:		AIX:4.3:3:AIX 4.3.3-5.2
207126756Smlaier32768:64:0:60:M512,N,W%2,N,N,T:		AIX:5.1-5.2::AIX 4.3.3-5.2
208126756Smlaier65535:64:0:60:M512,N,W%2,N,N,T:		AIX:4.3:3:AIX 4.3.3-5.2
209126756Smlaier65535:64:0:60:M512,N,W%2,N,N,T:		AIX:5.1-5.2::AIX 4.3.3-5.2
210126756Smlaier65535:64:0:64:M*,N,W1,N,N,T,N,N,S:	AIX:5.3:ML1:AIX 5.3 ML1
211126756Smlaier
212126756Smlaier# ----------------- Linux -------------------
213126756Smlaier
214135183Smlaier# S1:64:0:44:M*:A:		Linux:1.2::Linux 1.2.x (XXX quirks support)
215126756Smlaier512:64:0:44:M*:			Linux:2.0:3x:Linux 2.0.3x
216126756Smlaier16384:64:0:44:M*:		Linux:2.0:3x:Linux 2.0.3x
217126756Smlaier
218126756Smlaier# Endian snafu! Nelson says "ha-ha":
219126756Smlaier2:64:0:44:M*:			Linux:2.0:3x:Linux 2.0.3x (MkLinux) on Mac
220126756Smlaier64:64:0:44:M*:			Linux:2.0:3x:Linux 2.0.3x (MkLinux) on Mac
221126756Smlaier
222126756Smlaier
223126756SmlaierS4:64:1:60:M1360,S,T,N,W0:	Linux:google::Linux (Google crawlbot)
224126756Smlaier
225126756SmlaierS2:64:1:60:M*,S,T,N,W0:		Linux:2.4::Linux 2.4 (big boy)
226163621SdelphijS3:64:1:60:M*,S,T,N,W0:		Linux:2.4:.18-21:Linux 2.4.18 and newer
227163621SdelphijS4:64:1:60:M*,S,T,N,W0:		Linux:2.4::Linux 2.4/2.6 <= 2.6.7
228163621SdelphijS4:64:1:60:M*,S,T,N,W0:		Linux:2.6:.1-7:Linux 2.4/2.6 <= 2.6.7
229163621SdelphijS4:64:1:60:M*,S,T,N,W7:		Linux:2.6:8:Linux 2.6.8 and newer (?)
230126756Smlaier
231135183SmlaierS3:64:1:60:M*,S,T,N,W1:		Linux:2.5::Linux 2.5 (sometimes 2.4)
232126756SmlaierS4:64:1:60:M*,S,T,N,W1:		Linux:2.5-2.6::Linux 2.5/2.6
233135183SmlaierS3:64:1:60:M*,S,T,N,W2:		Linux:2.5::Linux 2.5 (sometimes 2.4)
234135183SmlaierS4:64:1:60:M*,S,T,N,W2:		Linux:2.5::Linux 2.5 (sometimes 2.4)
235126756Smlaier
236126756SmlaierS20:64:1:60:M*,S,T,N,W0:	Linux:2.2:20-25:Linux 2.2.20 and newer
237126756SmlaierS22:64:1:60:M*,S,T,N,W0:	Linux:2.2::Linux 2.2
238126756SmlaierS11:64:1:60:M*,S,T,N,W0:	Linux:2.2::Linux 2.2
239126756Smlaier
240126756Smlaier# Popular cluster config scripts disable timestamps and
241126756Smlaier# selective ACK:
242126756SmlaierS4:64:1:48:M1460,N,W0:		Linux:2.4:cluster:Linux 2.4 in cluster
243126756Smlaier
244126756Smlaier# This needs to be investigated. On some systems, WSS
245126756Smlaier# is selected as a multiple of MTU instead of MSS. I got
246126756Smlaier# many submissions for this for many late versions of 2.4:
247126756SmlaierT4:64:1:60:M1412,S,T,N,W0:	Linux:2.4::Linux 2.4 (late, uncommon)
248126756Smlaier
249126756Smlaier# This happens only over loopback, but let's make folks happy:
250126756Smlaier32767:64:1:60:M16396,S,T,N,W0:	Linux:2.4:lo0:Linux 2.4 (local)
251126756SmlaierS8:64:1:60:M3884,S,T,N,W0:	Linux:2.2:lo0:Linux 2.2 (local)
252126756Smlaier
253126756Smlaier# Opera visitors:
254126756Smlaier16384:64:1:60:M*,S,T,N,W0:	Linux:2.2:Opera:Linux 2.2 (Opera?)
255126756Smlaier32767:64:1:60:M*,S,T,N,W0:	Linux:2.4:Opera:Linux 2.4 (Opera?)
256126756Smlaier
257126756Smlaier# Some fairly common mods:
258126756SmlaierS4:64:1:52:M*,N,N,S,N,W0:	Linux:2.4:ts:Linux 2.4 w/o timestamps
259126756SmlaierS22:64:1:52:M*,N,N,S,N,W0:	Linux:2.2:ts:Linux 2.2 w/o timestamps
260126756Smlaier
261126756Smlaier
262126756Smlaier# ----------------- FreeBSD -----------------
263126756Smlaier
264163621Sdelphij16384:64:1:44:M*:		FreeBSD:2.0-2.2::FreeBSD 2.0-4.2
265163621Sdelphij16384:64:1:44:M*:		FreeBSD:3.0-3.5::FreeBSD 2.0-4.2
266163621Sdelphij16384:64:1:44:M*:		FreeBSD:4.0-4.2::FreeBSD 2.0-4.2
267126756Smlaier16384:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.4::FreeBSD 4.4
268126756Smlaier
269126756Smlaier1024:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.4::FreeBSD 4.4
270126756Smlaier
271126756Smlaier57344:64:1:44:M*:		FreeBSD:4.6-4.8:noRFC1323:FreeBSD 4.6-4.8 (no RFC1323)
272163621Sdelphij57344:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.6-4.9::FreeBSD 4.6-4.9
273126756Smlaier
274163621Sdelphij32768:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.8-4.11::FreeBSD 4.8-5.1 (or MacOS X)
275126756Smlaier32768:64:1:60:M*,N,W0,N,N,T:	FreeBSD:5.0-5.1::FreeBSD 4.8-5.1 (or MacOS X)
276163621Sdelphij65535:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.8-4.11::FreeBSD 4.8-5.2 (or MacOS X)
277163621Sdelphij65535:64:1:60:M*,N,W0,N,N,T:	FreeBSD:5.0-5.2::FreeBSD 4.8-5.2 (or MacOS X)
278163621Sdelphij65535:64:1:60:M*,N,W1,N,N,T:	FreeBSD:4.7-4.11::FreeBSD 4.7-5.2
279163621Sdelphij65535:64:1:60:M*,N,W1,N,N,T:	FreeBSD:5.0-5.2::FreeBSD 4.7-5.2
280126756Smlaier
281135183Smlaier# XXX need quirks support
282163621Sdelphij# 65535:64:1:60:M*,N,W0,N,N,T:Z:FreeBSD:5.1-5.4::5.1-current (1)
283163621Sdelphij# 65535:64:1:60:M*,N,W1,N,N,T:Z:FreeBSD:5.1-5.4::5.1-current (2)
284163621Sdelphij# 65535:64:1:60:M*,N,W2,N,N,T:Z:FreeBSD:5.1-5.4::5.1-current (3)
285163621Sdelphij# 65535:64:1:44:M*:Z:FreeBSD:5.2::FreeBSD 5.2 (no RFC1323)
286135183Smlaier
287126756Smlaier# 16384:64:1:60:M*,N,N,N,N,N,N,T:FreeBSD:4.4:noTS:FreeBSD 4.4 (w/o timestamps)
288126756Smlaier
289126756Smlaier# ----------------- NetBSD ------------------
290126756Smlaier
291135183Smlaier16384:64:0:60:M*,N,W0,N,N,T:	NetBSD:1.3::NetBSD 1.3
292126756Smlaier65535:64:0:60:M*,N,W0,N,N,T0:	NetBSD:1.6:opera:NetBSD 1.6 (Opera)
293126756Smlaier16384:64:0:60:M*,N,W0,N,N,T0:	NetBSD:1.6::NetBSD 1.6
294126756Smlaier16384:64:1:60:M*,N,W0,N,N,T0:	NetBSD:1.6:df:NetBSD 1.6 (DF)
295126756Smlaier65535:64:1:60:M*,N,W1,N,N,T0:	NetBSD:1.6::NetBSD 1.6W-current (DF)
296135183Smlaier65535:64:1:60:M*,N,W0,N,N,T0:	NetBSD:1.6::NetBSD 1.6X (DF)
297135183Smlaier32768:64:1:60:M*,N,W0,N,N,T0:	NetBSD:1.6:randomization:NetBSD 1.6ZH-current (w/ ip_id randomization)
298126756Smlaier
299126756Smlaier# ----------------- OpenBSD -----------------
300126756Smlaier
301126756Smlaier16384:64:0:60:M*,N,W0,N,N,T:		OpenBSD:2.6::NetBSD 1.3 (or OpenBSD 2.6)
302163621Sdelphij16384:64:1:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.0-4.0::OpenBSD 3.0-4.0
303163621Sdelphij16384:64:0:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.0-4.0:no-df:OpenBSD 3.0-4.0 (scrub no-df)
304163621Sdelphij57344:64:1:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.3-4.0::OpenBSD 3.3-4.0
305163621Sdelphij57344:64:0:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.3-4.0:no-df:OpenBSD 3.3-4.0 (scrub no-df)
306126756Smlaier
307163621Sdelphij65535:64:1:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.0-4.0:opera:OpenBSD 3.0-4.0 (Opera)
308126756Smlaier
309126756Smlaier# ----------------- Solaris -----------------
310126756Smlaier
311126756SmlaierS17:64:1:64:N,W3,N,N,T0,N,N,S,M*:	Solaris:8:RFC1323:Solaris 8 RFC1323
312126756SmlaierS17:64:1:48:N,N,S,M*:			Solaris:8::Solaris 8
313126756SmlaierS17:255:1:44:M*:			Solaris:2.5-2.7::Solaris 2.5 to 7
314126756Smlaier
315126756SmlaierS6:255:1:44:M*:				Solaris:2.6-2.7::Solaris 2.6 to 7
316126756SmlaierS23:255:1:44:M*:			Solaris:2.5:1:Solaris 2.5.1
317126756SmlaierS34:64:1:48:M*,N,N,S:			Solaris:2.9::Solaris 9
318126756SmlaierS44:255:1:44:M*:			Solaris:2.7::Solaris 7
319126756Smlaier
320135183Smlaier4096:64:0:44:M1460:			SunOS:4.1::SunOS 4.1.x
321135183Smlaier
322163621SdelphijS34:64:1:52:M*,N,W0,N,N,S:		Solaris:10:beta:Solaris 10 (beta)
323163621Sdelphij32850:64:1:64:M*,N,N,T,N,W1,N,N,S:	Solaris:10::Solaris 10 1203
324135183Smlaier
325126756Smlaier# ----------------- IRIX --------------------
326126756Smlaier
327126756Smlaier49152:64:0:44:M*:			IRIX:6.4::IRIX 6.4
328126756Smlaier61440:64:0:44:M*:			IRIX:6.2-6.5::IRIX 6.2-6.5
329126756Smlaier49152:64:0:52:M*,N,W2,N,N,S:		IRIX:6.5:RFC1323:IRIX 6.5 (RFC1323)
330126756Smlaier49152:64:0:52:M*,N,W3,N,N,S:		IRIX:6.5:RFC1323:IRIX 6.5 (RFC1323)
331126756Smlaier
332126756Smlaier61440:64:0:48:M*,N,N,S:			IRIX:6.5:12-21:IRIX 6.5.12 - 6.5.21
333126756Smlaier49152:64:0:48:M*,N,N,S:			IRIX:6.5:15-21:IRIX 6.5.15 - 6.5.21
334126756Smlaier
335163621Sdelphij49152:60:0:64:M*,N,W2,N,N,T,N,N,S:	IRIX:6.5:IP27:IRIX 6.5 IP27
336163621Sdelphij
337163621Sdelphij
338126756Smlaier# ----------------- Tru64 -------------------
339126756Smlaier
340135183Smlaier32768:64:1:48:M*,N,W0:			Tru64:4.0::Tru64 4.0 (or OS/2 Warp 4)
341126756Smlaier32768:64:0:48:M*,N,W0:			Tru64:5.0::Tru64 5.0
342126756Smlaier8192:64:0:44:M1460:			Tru64:5.1:noRFC1323:Tru64 6.1 (no RFC1323) (or QNX 6)
343126756Smlaier61440:64:0:48:M*,N,W0:			Tru64:5.1a:JP4:Tru64 v5.1a JP4 (or OpenVMS 7.x on Compaq 5.x stack)
344126756Smlaier
345126756Smlaier# ----------------- OpenVMS -----------------
346126756Smlaier
347126756Smlaier6144:64:1:60:M*,N,W0,N,N,T:		OpenVMS:7.2::OpenVMS 7.2 (Multinet 4.4 stack)
348126756Smlaier
349126756Smlaier# ----------------- MacOS -------------------
350126756Smlaier
351135183Smlaier# XXX Need EOL tcp opt support
352135183Smlaier# S2:255:1:48:M*,W0,E:.:MacOS:8.6 classic
353135183Smlaier
354135183Smlaier# XXX some of these use EOL too
355126756Smlaier16616:255:1:48:M*,W0:			MacOS:7.3-7.6:OTTCP:MacOS 7.3-8.6 (OTTCP)
356126756Smlaier16616:255:1:48:M*,W0:			MacOS:8.0-8.6:OTTCP:MacOS 7.3-8.6 (OTTCP)
357135183Smlaier16616:255:1:48:M*,N,N,N:		MacOS:8.1-8.6:OTTCP:MacOS 8.1-8.6 (OTTCP)
358135183Smlaier32768:255:1:48:M*,W0,N:			MacOS:9.0-9.2::MacOS 9.0-9.2
359135183Smlaier65535:255:1:48:M*,N,N,N,N:		MacOS:9.1::MacOS 9.1 (OT 2.7.4)
360126756Smlaier
361135183Smlaier
362126756Smlaier# ----------------- Windows -----------------
363126756Smlaier
364135183Smlaier# Windows TCP/IP stack is a mess. For most recent XP, 2000 and
365135183Smlaier# even 98, the pathlevel, not the actual OS version, is more
366135183Smlaier# relevant to the signature. They share the same code, so it would
367135183Smlaier# seem. Luckily for us, almost all Windows 9x boxes have an
368135183Smlaier# awkward MSS of 536, which I use to tell one from another
369135183Smlaier# in most difficult cases.
370126756Smlaier
371135183Smlaier8192:32:1:44:M*:			Windows:3.11::Windows 3.11 (Tucows)
372135183SmlaierS44:64:1:64:M*,N,W0,N,N,T0,N,N,S:	Windows:95::Windows 95
373135183Smlaier8192:128:1:64:M*,N,W0,N,N,T0,N,N,S:	Windows:95:b:Windows 95b
374126756Smlaier
375135183Smlaier# There were so many tweaking tools and so many stack versions for
376135183Smlaier# Windows 98 it is no longer possible to tell them from each other
377135183Smlaier# without some very serious research. Until then, there's an insane
378135183Smlaier# number of signatures, for your amusement:
379126756Smlaier
380135183SmlaierS44:32:1:48:M*,N,N,S:			Windows:98:lowTTL:Windows 98 (low TTL)
381135183Smlaier8192:32:1:48:M*,N,N,S:			Windows:98:lowTTL:Windows 98 (low TTL)
382135183Smlaier%8192:64:1:48:M536,N,N,S:		Windows:98::Windows 98
383135183Smlaier%8192:128:1:48:M536,N,N,S:		Windows:98::Windows 98
384126756SmlaierS4:64:1:48:M*,N,N,S:			Windows:98::Windows 98
385126756SmlaierS6:64:1:48:M*,N,N,S:			Windows:98::Windows 98
386126756SmlaierS12:64:1:48:M*,N,N,S:			Windows:98::Windows 98
387135183SmlaierT30:64:1:64:M1460,N,W0,N,N,T0,N,N,S:	Windows:98::Windows 98
388126756Smlaier32767:64:1:48:M*,N,N,S:			Windows:98::Windows 98
389126756Smlaier37300:64:1:48:M*,N,N,S:			Windows:98::Windows 98
390126756Smlaier46080:64:1:52:M*,N,W3,N,N,S:		Windows:98:RFC1323:Windows 98 (RFC1323)
391135183Smlaier65535:64:1:44:M*:			Windows:98:noSack:Windows 98 (no sack)
392126756SmlaierS16:128:1:48:M*,N,N,S:			Windows:98::Windows 98
393126756SmlaierS16:128:1:64:M*,N,W0,N,N,T0,N,N,S:	Windows:98::Windows 98
394126756SmlaierS26:128:1:48:M*,N,N,S:			Windows:98::Windows 98
395126756SmlaierT30:128:1:48:M*,N,N,S:			Windows:98::Windows 98
396126756Smlaier32767:128:1:52:M*,N,W0,N,N,S:		Windows:98::Windows 98
397126756Smlaier60352:128:1:48:M*,N,N,S:		Windows:98::Windows 98
398126756Smlaier60352:128:1:64:M*,N,W2,N,N,T0,N,N,S:	Windows:98::Windows 98
399126756Smlaier
400135183Smlaier# What's with 1414 on NT?
401135183SmlaierT31:128:1:44:M1414:			Windows:NT:4.0:Windows NT 4.0 SP6a
402126756Smlaier64512:128:1:44:M1414:			Windows:NT:4.0:Windows NT 4.0 SP6a
403126756Smlaier8192:128:1:44:M*:			Windows:NT:4.0:Windows NT 4.0 (older)
404130151Sschweikh
405126756Smlaier# Windows XP and 2000. Most of the signatures that were
406126756Smlaier# either dubious or non-specific (no service pack data)
407126756Smlaier# were deleted and replaced with generics at the end.
408126756Smlaier
409126756Smlaier65535:128:1:48:M*,N,N,S:		Windows:2000:SP4:Windows 2000 SP4, XP SP1
410126756Smlaier65535:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows 2000 SP4, XP SP1
411135183Smlaier%8192:128:1:48:M*,N,N,S:		Windows:2000:SP2+:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222)
412135183Smlaier%8192:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222)
413135183SmlaierS20:128:1:48:M*,N,N,S:			Windows:2000::Windows 2000/XP SP3
414135183SmlaierS20:128:1:48:M*,N,N,S:			Windows:XP:SP3:Windows 2000/XP SP3
415135183SmlaierS45:128:1:48:M*,N,N,S:			Windows:2000:SP4:Windows 2000 SP4, XP SP 1
416135183SmlaierS45:128:1:48:M*,N,N,S:			Windows:XP:SP1:Windows 2000 SP4, XP SP 1
417135183Smlaier40320:128:1:48:M*,N,N,S:		Windows:2000:SP4:Windows 2000 SP4
418126756Smlaier
419135183SmlaierS6:128:1:48:M*,N,N,S:			Windows:2000:SP2:Windows XP, 2000 SP2+
420135183SmlaierS6:128:1:48:M*,N,N,S:			Windows:XP::Windows XP, 2000 SP2+
421135183SmlaierS12:128:1:48:M*,N,N,S:			Windows:XP:SP1:Windows XP SP1
422135183SmlaierS44:128:1:48:M*,N,N,S:			Windows:2000:SP3:Windows Pro SP1, 2000 SP3
423135183SmlaierS44:128:1:48:M*,N,N,S:			Windows:XP:SP1:Windows Pro SP1, 2000 SP3
424135183Smlaier64512:128:1:48:M*,N,N,S:		Windows:2000:SP3:Windows SP1, 2000 SP3
425135183Smlaier64512:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows SP1, 2000 SP3
426135183Smlaier32767:128:1:48:M*,N,N,S:		Windows:2000:SP4:Windows SP1, 2000 SP4
427135183Smlaier32767:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows SP1, 2000 SP4
428135183Smlaier
429126756Smlaier# Odds, ends, mods:
430126756Smlaier
431135183SmlaierS52:128:1:48:M1260,N,N,S:		Windows:2000:cisco:Windows XP/2000 via Cisco
432135183SmlaierS52:128:1:48:M1260,N,N,S:		Windows:XP:cisco:Windows XP/2000 via Cisco
433135183Smlaier65520:128:1:48:M*,N,N,S:		Windows:XP::Windows XP bare-bone
434135183Smlaier16384:128:1:52:M536,N,W0,N,N,S:		Windows:2000:ZoneAlarm:Windows 2000 w/ZoneAlarm?
435135183Smlaier2048:255:0:40:.:			Windows:.NET::Windows .NET Enterprise Server
436126756Smlaier
437163621Sdelphij44620:64:0:48:M*,N,N,S:			Windows:ME::Windows ME no SP (?)
438163621SdelphijS6:255:1:48:M536,N,N,S:			Windows:95:winsock2:Windows 95 winsock 2
439163621Sdelphij32768:32:1:52:M1460,N,W0,N,N,S:		Windows:2003:AS:Windows 2003 AS
440163621Sdelphij
441163621Sdelphij
442135183Smlaier# No need to be more specific, it passes:
443135183Smlaier# *:128:1:48:M*,N,N,S:U:-Windows:XP/2000 while downloading (leak!) XXX quirk
444135183Smlaier# there is an equiv similar generic sig w/o the quirk
445126756Smlaier
446126756Smlaier# ----------------- HP/UX -------------------
447126756Smlaier
448126756Smlaier32768:64:1:44:M*:			HP-UX:B.10.20::HP-UX B.10.20
449126756Smlaier32768:64:0:48:M*,W0,N:			HP-UX:11.0::HP-UX 11.0
450126756Smlaier32768:64:1:48:M*,W0,N:			HP-UX:11.10::HP-UX 11.0 or 11.11
451126756Smlaier32768:64:1:48:M*,W0,N:			HP-UX:11.11::HP-UX 11.0 or 11.11
452126756Smlaier
453126756Smlaier# Whoa. Hardcore WSS.
454126756Smlaier0:64:0:48:M*,W0,N:			HP-UX:B.11.00:A:HP-UX B.11.00 A (RFC1323)
455126756Smlaier
456126756Smlaier# ----------------- RiscOS ------------------
457126756Smlaier
458126756Smlaier# We don't yet support the ?12 TCP option
459126756Smlaier#16384:64:1:68:M1460,N,W0,N,N,T,N,N,?12:	RISCOS:3.70-4.36::RISC OS 3.70-4.36
460135183Smlaier12288:32:0:44:M536:				RISC OS:3.70:4.10:RISC OS 3.70 inet 4.10
461126756Smlaier
462135183Smlaier# XXX quirk
463135183Smlaier# 4096:64:1:56:M1460,N,N,T:T:			RISC OS:3.70:freenet:RISC OS 3.70 freenet 2.00
464135183Smlaier
465135183Smlaier
466163621Sdelphij
467126756Smlaier# ----------------- BSD/OS ------------------
468126756Smlaier
469126756Smlaier# Once again, power of two WSS is also shared by MacOS X with DF set
470126756Smlaier8192:64:1:60:M1460,N,W0,N,N,T:		BSD/OS:3.1::BSD/OS 3.1-4.3 (or MacOS X 10.2 w/DF)
471126756Smlaier8192:64:1:60:M1460,N,W0,N,N,T:		BSD/OS:4.0-4.3::BSD/OS 3.1-4.3 (or MacOS X 10.2)
472126756Smlaier
473126756Smlaier
474126756Smlaier# ---------------- NewtonOS -----------------
475126756Smlaier
476126756Smlaier4096:64:0:44:M1420:		NewtonOS:2.1::NewtonOS 2.1
477126756Smlaier
478126756Smlaier# ---------------- NeXTSTEP -----------------
479126756Smlaier
480163621SdelphijS4:64:0:44:M1024:		NeXTSTEP:3.3::NeXTSTEP 3.3
481126756SmlaierS8:64:0:44:M512:		NeXTSTEP:3.3::NeXTSTEP 3.3
482126756Smlaier
483126756Smlaier# ------------------ BeOS -------------------
484126756Smlaier
485126756Smlaier1024:255:0:48:M*,N,W0:		BeOS:5.0-5.1::BeOS 5.0-5.1
486126756Smlaier12288:255:0:44:M1402:		BeOS:5.0::BeOS 5.0.x
487126756Smlaier
488126756Smlaier# ------------------ OS/400 -----------------
489126756Smlaier
490126756Smlaier8192:64:1:60:M1440,N,W0,N,N,T:	OS/400:VR4::OS/400 VR4/R5
491126756Smlaier8192:64:1:60:M1440,N,W0,N,N,T:	OS/400:VR5::OS/400 VR4/R5
492126756Smlaier4096:64:1:60:M1440,N,W0,N,N,T:	OS/400:V4R5:CF67032:OS/400 V4R5 + CF67032
493126756Smlaier
494135183Smlaier# XXX quirk
495135183Smlaier# 28672:64:0:44:M1460:A:OS/390:?
496126756Smlaier
497126756Smlaier# ------------------ ULTRIX -----------------
498126756Smlaier
499126756Smlaier16384:64:0:40:.:		ULTRIX:4.5::ULTRIX 4.5
500126756Smlaier
501126756Smlaier# ------------------- QNX -------------------
502126756Smlaier
503126756SmlaierS16:64:0:44:M512:		QNX:::QNX demodisk
504126756Smlaier
505126756Smlaier# ------------------ Novell -----------------
506126756Smlaier
507126756Smlaier16384:128:1:44:M1460:		Novell:NetWare:5.0:Novel Netware 5.0
508126756Smlaier6144:128:1:44:M1460:		Novell:IntranetWare:4.11:Novell IntranetWare 4.11
509135183Smlaier6144:128:1:44:M1368:		Novell:BorderManager::Novell BorderManager ?
510126756Smlaier
511135183Smlaier6144:128:1:52:M*,W0,N,S,N,N:	Novell:Netware:6:Novell Netware 6 SP3
512135183Smlaier
513135183Smlaier
514126756Smlaier# ----------------- SCO ------------------
515135183SmlaierS3:64:1:60:M1460,N,W0,N,N,T:	SCO:UnixWare:7.1:SCO UnixWare 7.1
516163621SdelphijS17:64:1:60:M1380,N,W0,N,N,T:	SCO:UnixWare:7.1:SCO UnixWare 7.1.3 MP3
517135183SmlaierS23:64:1:44:M1380:		SCO:OpenServer:5.0:SCO OpenServer 5.0
518126756Smlaier
519126756Smlaier# ------------------- DOS -------------------
520126756Smlaier
521126756Smlaier2048:255:0:44:M536:		DOS:WATTCP:1.05:DOS Arachne via WATTCP/1.05
522163621SdelphijT2:255:0:44:M984:		DOS:WATTCP:1.05Arachne:Arachne via WATTCP/1.05 (eepro)
523126756Smlaier
524135183Smlaier# ------------------ OS/2 -------------------
525135183Smlaier
526135183SmlaierS56:64:0:44:M512:		OS/2:4::OS/2 4
527163621Sdelphij28672:64:0:44:M1460:		OS/2:4::OS/2 Warp 4.0
528135183Smlaier
529135183Smlaier# ----------------- TOPS-20 -----------------
530135183Smlaier
531135183Smlaier# Another hardcore MSS, one of the ACK leakers hunted down.
532135183Smlaier# XXX QUIRK 0:64:0:44:M1460:A:TOPS-20:version 7
533135183Smlaier0:64:0:44:M1460:		TOPS-20:7::TOPS-20 version 7
534135183Smlaier
535163621Sdelphij# ----------------- FreeMiNT ----------------
536163621Sdelphij
537163621SdelphijS44:255:0:44:M536:		FreeMiNT:1:16A:FreeMiNT 1 patch 16A (Atari)
538163621Sdelphij
539135183Smlaier# ------------------ AMIGA ------------------
540135183Smlaier
541135183Smlaier# XXX TCP option 12
542135183Smlaier# S32:64:1:56:M*,N,N,S,N,N,?12:.:AMIGA:3.9 BB2 with Miami stack
543135183Smlaier
544135183Smlaier# ------------------ Plan9 ------------------
545135183Smlaier
546135183Smlaier65535:255:0:48:M1460,W0,N:	Plan9:4::Plan9 edition 4
547135183Smlaier
548135183Smlaier# ----------------- AMIGAOS -----------------
549135183Smlaier
550135183Smlaier16384:64:1:48:M1560,N,N,S:	AMIGAOS:3.9::AMIGAOS 3.9 BB2 MiamiDX
551135183Smlaier
552126756Smlaier###########################################
553126756Smlaier# Appliance / embedded / other signatures #
554126756Smlaier###########################################
555126756Smlaier
556126756Smlaier# ---------- Firewalls / routers ------------
557126756Smlaier
558126756SmlaierS12:64:1:44:M1460:			@Checkpoint:::Checkpoint (unknown 1)
559126756SmlaierS12:64:1:48:N,N,S,M1460:		@Checkpoint:::Checkpoint (unknown 2)
560126756Smlaier4096:32:0:44:M1460:			ExtremeWare:4.x::ExtremeWare 4.x
561126756Smlaier
562135183Smlaier# XXX TCP option 12
563135183Smlaier# S32:64:0:68:M512,N,W0,N,N,T,N,N,?12:.:Nokia:IPSO w/Checkpoint NG FP3
564135183Smlaier# S16:64:0:68:M1024,N,W0,N,N,T,N,N,?12:.:Nokia:IPSO 3.7 build 026
565135183Smlaier
566135183SmlaierS4:64:1:60:W0,N,S,T,M1460:		FortiNet:FortiGate:50:FortiNet FortiGate 50
567135183Smlaier
568135183Smlaier8192:64:1:44:M1460:			Eagle:::Eagle Secure Gateway
569135183Smlaier
570163621SdelphijS52:128:1:48:M1260,N,N,N,N:		LinkSys:WRV54G::LinkSys WRV54G VPN router
571135183Smlaier
572163621Sdelphij
573163621Sdelphij
574126756Smlaier# ------- Switches and other stuff ----------
575126756Smlaier
576126756Smlaier4128:255:0:44:M*:			Cisco:::Cisco Catalyst 3500, 7500 etc
577126756SmlaierS8:255:0:44:M*:				Cisco:12008::Cisco 12008
578126756Smlaier60352:128:1:64:M1460,N,W2,N,N,T,N,N,S:	Alteon:ACEswitch::Alteon ACEswitch
579126756Smlaier64512:128:1:44:M1370:			Nortel:Contivity Client::Nortel Conectivity Client
580126756Smlaier
581126756Smlaier
582126756Smlaier# ---------- Caches and whatnots ------------
583126756Smlaier
584126756SmlaierS4:64:1:52:M1460,N,N,S,N,W0:		AOL:web cache::AOL web cache
585126756Smlaier
586126756Smlaier32850:64:1:64:N,W1,N,N,T,N,N,S,M*:	NetApp:5.x::NetApp Data OnTap 5.x
587126756Smlaier16384:64:1:64:M1460,N,N,S,N,W0,N:	NetApp:5.3:1:NetApp 5.3.1
588135183Smlaier65535:64:0:64:M1460,N,N,S,N,W*,N,N,T:	NetApp:5.3-5.5::NetApp 5.3-5.5
589126756Smlaier65535:64:0:60:M1460,N,W0,N,N,T:		NetApp:CacheFlow::NetApp CacheFlow
590126756Smlaier8192:64:1:64:M1460,N,N,S,N,W0,N,N,T:	NetApp:5.2:1:NetApp NetCache 5.2.1
591135183Smlaier20480:64:1:64:M1460,N,N,S,N,W0,N,N,T:	NetApp:4.1::NetApp NetCache4.1
592126756Smlaier
593135183Smlaier65535:64:0:60:M1460,N,W0,N,N,T:		CacheFlow:4.1::CacheFlow CacheOS 4.1
594135183Smlaier8192:64:0:60:M1380,N,N,N,N,N,N,T:	CacheFlow:1.1::CacheFlow CacheOS 1.1
595135183Smlaier
596126756SmlaierS4:64:0:48:M1460,N,N,S:			Cisco:Content Engine::Cisco Content Engine
597126756Smlaier
598126756Smlaier27085:128:0:40:.:			Dell:PowerApp cache::Dell PowerApp (Linux-based)
599126756Smlaier
600126756Smlaier65535:255:1:48:N,W1,M1460:		Inktomi:crawler::Inktomi crawler
601126756SmlaierS1:255:1:60:M1460,S,T,N,W0:		LookSmart:ZyBorg::LookSmart ZyBorg
602126756Smlaier
603126756Smlaier16384:255:0:40:.:			Proxyblocker:::Proxyblocker (what's this?)
604126756Smlaier
605163621Sdelphij65535:255:0:48:M*,N,N,S:		Redline:::Redline T|X 2200
606163621Sdelphij
607163621Sdelphij32696:128:0:40:M1460:			Spirent:Avalanche::Spirent Web Avalanche HTTP benchmarking engine
608163621Sdelphij
609126756Smlaier# ----------- Embedded systems --------------
610126756Smlaier
611126756SmlaierS9:255:0:44:M536:			PalmOS:Tungsten:C:PalmOS Tungsten C
612126756SmlaierS5:255:0:44:M536:			PalmOS:3::PalmOS 3/4
613126756SmlaierS5:255:0:44:M536:			PalmOS:4::PalmOS 3/4
614126756SmlaierS4:255:0:44:M536:			PalmOS:3:5:PalmOS 3.5
615126756Smlaier2948:255:0:44:M536:			PalmOS:3:5:PalmOS 3.5.3 (Handera)
616135183SmlaierS29:255:0:44:M536:			PalmOS:5::PalmOS 5.0
617163621Sdelphij16384:255:0:44:M1398:			PalmOS:5.2:Clie:PalmOS 5.2 (Clie)
618163621SdelphijS14:255:0:44:M1350:			PalmOS:5.2:Treo:PalmOS 5.2.1 (Treo)
619126756Smlaier
620126756SmlaierS23:64:1:64:N,W1,N,N,T,N,N,S,M1460:	SymbianOS:7::SymbianOS 7
621126756Smlaier
622163621Sdelphij8192:255:0:44:M1460:			SymbianOS:6048::Symbian OS 6048 (Nokia 7650?)
623163621Sdelphij8192:255:0:44:M536:			SymbianOS:9210::Symbian OS (Nokia 9210?)
624163621SdelphijS22:64:1:56:M1460,T,S:			SymbianOS:P800::Symbian OS ? (SE P800?)
625163621SdelphijS36:64:1:56:M1360,T,S:			SymbianOS:6600::Symbian OS 60xx (Nokia 6600?)
626126756Smlaier
627163621Sdelphij
628126756Smlaier# Perhaps S4?
629126756Smlaier5840:64:1:60:M1452,S,T,N,W1:		Zaurus:3.10::Zaurus 3.10
630126756Smlaier
631126756Smlaier32768:128:1:64:M1460,N,W0,N,N,T0,N,N,S:	PocketPC:2002::PocketPC 2002
632126756Smlaier
633126756SmlaierS1:255:0:44:M346:			Contiki:1.1:rc0:Contiki 1.1-rc0
634126756Smlaier
635126756Smlaier4096:128:0:44:M1460:			Sega:Dreamcast:3.0:Sega Dreamcast Dreamkey 3.0
636135183SmlaierT5:64:0:44:M536:			Sega:Dreamcast:HKT-3020:Sega Dreamcast HKT-3020 (browser disc 51027)
637135183SmlaierS22:64:1:44:M1460:			Sony:PS2::Sony Playstation 2 (SOCOM?)
638126756Smlaier
639126756SmlaierS12:64:0:44:M1452:			AXIS:5600:v5.64:AXIS Printer Server 5600 v5.64
640126756Smlaier
641163621Sdelphij3100:32:1:44:M1460:			Windows:CE:2.0:Windows CE 2.0
642126756Smlaier
643126756Smlaier####################
644126756Smlaier# Fancy signatures #
645126756Smlaier####################
646126756Smlaier
647126756Smlaier1024:64:0:40:.:				*NMAP:syn scan:1:NMAP syn scan (1)
648126756Smlaier2048:64:0:40:.:				*NMAP:syn scan:2:NMAP syn scan (2)
649126756Smlaier3072:64:0:40:.:				*NMAP:syn scan:3:NMAP syn scan (3)
650126756Smlaier4096:64:0:40:.:				*NMAP:syn scan:4:NMAP syn scan (4)
651126756Smlaier
652163621Sdelphij# Requires quirks support
653163621Sdelphij# 1024:64:0:40:.:A:*NMAP:TCP sweep probe (1)
654163621Sdelphij# 2048:64:0:40:.:A:*NMAP:TCP sweep probe (2)
655163621Sdelphij# 3072:64:0:40:.:A:*NMAP:TCP sweep probe (3)
656163621Sdelphij# 4096:64:0:40:.:A:*NMAP:TCP sweep probe (4)
657163621Sdelphij
658126756Smlaier1024:64:0:60:W10,N,M265,T:		*NMAP:OS:1:NMAP OS detection probe (1)
659126756Smlaier2048:64:0:60:W10,N,M265,T:		*NMAP:OS:2:NMAP OS detection probe (2)
660126756Smlaier3072:64:0:60:W10,N,M265,T:		*NMAP:OS:3:NMAP OS detection probe (3)
661126756Smlaier4096:64:0:60:W10,N,M265,T:		*NMAP:OS:4:NMAP OS detection probe (4)
662126756Smlaier
663163621Sdelphij32767:64:0:40:.:			*NAST:::NASTsyn scan
664163621Sdelphij
665163621Sdelphij# Requires quirks support
666163621Sdelphij# 12345:255:0:40:.:A:-p0f:sendsyn utility
667163621Sdelphij
668163621Sdelphij
669126756Smlaier#####################################
670126756Smlaier# Generic signatures - just in case #
671126756Smlaier#####################################
672126756Smlaier
673126756Smlaier#*:64:1:60:M*,N,W*,N,N,T:		@FreeBSD:4.0-4.9::FreeBSD 4.x/5.x
674126756Smlaier#*:64:1:60:M*,N,W*,N,N,T:		@FreeBSD:5.0-5.1::FreeBSD 4.x/5.x
675126756Smlaier
676126756Smlaier*:128:1:52:M*,N,W0,N,N,S:		@Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
677126756Smlaier*:128:1:52:M*,N,W0,N,N,S:		@Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
678163621Sdelphij*:128:1:52:M*,N,W*,N,N,S:		@Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
679163621Sdelphij*:128:1:52:M*,N,W*,N,N,S:		@Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
680126756Smlaier*:128:1:64:M*,N,W0,N,N,T0,N,N,S:	@Windows:XP:RFC1323:Windows XP/2000 (RFC1323)
681126756Smlaier*:128:1:64:M*,N,W0,N,N,T0,N,N,S:	@Windows:2000:RFC1323:Windows XP/2000 (RFC1323)
682126756Smlaier*:128:1:64:M*,N,W*,N,N,T0,N,N,S:	@Windows:XP:RFC1323:Windows XP (RFC1323, w+)
683135183Smlaier*:128:1:48:M536,N,N,S:			@Windows:98::Windows 98
684126756Smlaier*:128:1:48:M*,N,N,S:			@Windows:XP::Windows XP/2000
685126756Smlaier*:128:1:48:M*,N,N,S:			@Windows:2000::Windows XP/2000
686135183Smlaier
687135183Smlaier
688