1126756Smlaier# $FreeBSD$
2244096Sdelphij# $OpenBSD: pf.os,v 1.26 2012/08/03 12:25:16 jsg 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
229126756Smlaier
230244096SdelphijS4:64:1:60:M*,S,T,N,W5:		Linux:2.6::Linux 2.6 (newer, 1)
231244096SdelphijS4:64:1:60:M*,S,T,N,W6:		Linux:2.6::Linux 2.6 (newer, 2)
232244096SdelphijS4:64:1:60:M*,S,T,N,W7:		Linux:2.6::Linux 2.6 (newer, 3)
233244096SdelphijT4:64:1:60:M*,S,T,N,W7:		Linux:2.6::Linux 2.6 (newer, 4)
234244096Sdelphij
235244096SdelphijS10:64:1:60:M*,S,T,N,W4:	Linux:3.0::Linux 3.0
236244096Sdelphij
237135183SmlaierS3:64:1:60:M*,S,T,N,W1:		Linux:2.5::Linux 2.5 (sometimes 2.4)
238126756SmlaierS4:64:1:60:M*,S,T,N,W1:		Linux:2.5-2.6::Linux 2.5/2.6
239135183SmlaierS3:64:1:60:M*,S,T,N,W2:		Linux:2.5::Linux 2.5 (sometimes 2.4)
240135183SmlaierS4:64:1:60:M*,S,T,N,W2:		Linux:2.5::Linux 2.5 (sometimes 2.4)
241126756Smlaier
242126756SmlaierS20:64:1:60:M*,S,T,N,W0:	Linux:2.2:20-25:Linux 2.2.20 and newer
243126756SmlaierS22:64:1:60:M*,S,T,N,W0:	Linux:2.2::Linux 2.2
244126756SmlaierS11:64:1:60:M*,S,T,N,W0:	Linux:2.2::Linux 2.2
245126756Smlaier
246126756Smlaier# Popular cluster config scripts disable timestamps and
247126756Smlaier# selective ACK:
248126756SmlaierS4:64:1:48:M1460,N,W0:		Linux:2.4:cluster:Linux 2.4 in cluster
249126756Smlaier
250126756Smlaier# This needs to be investigated. On some systems, WSS
251126756Smlaier# is selected as a multiple of MTU instead of MSS. I got
252126756Smlaier# many submissions for this for many late versions of 2.4:
253126756SmlaierT4:64:1:60:M1412,S,T,N,W0:	Linux:2.4::Linux 2.4 (late, uncommon)
254126756Smlaier
255126756Smlaier# This happens only over loopback, but let's make folks happy:
256126756Smlaier32767:64:1:60:M16396,S,T,N,W0:	Linux:2.4:lo0:Linux 2.4 (local)
257126756SmlaierS8:64:1:60:M3884,S,T,N,W0:	Linux:2.2:lo0:Linux 2.2 (local)
258126756Smlaier
259126756Smlaier# Opera visitors:
260126756Smlaier16384:64:1:60:M*,S,T,N,W0:	Linux:2.2:Opera:Linux 2.2 (Opera?)
261126756Smlaier32767:64:1:60:M*,S,T,N,W0:	Linux:2.4:Opera:Linux 2.4 (Opera?)
262126756Smlaier
263126756Smlaier# Some fairly common mods:
264126756SmlaierS4:64:1:52:M*,N,N,S,N,W0:	Linux:2.4:ts:Linux 2.4 w/o timestamps
265126756SmlaierS22:64:1:52:M*,N,N,S,N,W0:	Linux:2.2:ts:Linux 2.2 w/o timestamps
266126756Smlaier
267126756Smlaier
268126756Smlaier# ----------------- FreeBSD -----------------
269126756Smlaier
270163621Sdelphij16384:64:1:44:M*:		FreeBSD:2.0-2.2::FreeBSD 2.0-4.2
271163621Sdelphij16384:64:1:44:M*:		FreeBSD:3.0-3.5::FreeBSD 2.0-4.2
272163621Sdelphij16384:64:1:44:M*:		FreeBSD:4.0-4.2::FreeBSD 2.0-4.2
273126756Smlaier16384:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.4::FreeBSD 4.4
274126756Smlaier
275126756Smlaier1024:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.4::FreeBSD 4.4
276126756Smlaier
277126756Smlaier57344:64:1:44:M*:		FreeBSD:4.6-4.8:noRFC1323:FreeBSD 4.6-4.8 (no RFC1323)
278163621Sdelphij57344:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.6-4.9::FreeBSD 4.6-4.9
279126756Smlaier
280163621Sdelphij32768:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.8-4.11::FreeBSD 4.8-5.1 (or MacOS X)
281126756Smlaier32768:64:1:60:M*,N,W0,N,N,T:	FreeBSD:5.0-5.1::FreeBSD 4.8-5.1 (or MacOS X)
282163621Sdelphij65535:64:1:60:M*,N,W0,N,N,T:	FreeBSD:4.8-4.11::FreeBSD 4.8-5.2 (or MacOS X)
283163621Sdelphij65535:64:1:60:M*,N,W0,N,N,T:	FreeBSD:5.0-5.2::FreeBSD 4.8-5.2 (or MacOS X)
284163621Sdelphij65535:64:1:60:M*,N,W1,N,N,T:	FreeBSD:4.7-4.11::FreeBSD 4.7-5.2
285163621Sdelphij65535:64:1:60:M*,N,W1,N,N,T:	FreeBSD:5.0-5.2::FreeBSD 4.7-5.2
286126756Smlaier
287135183Smlaier# XXX need quirks support
288163621Sdelphij# 65535:64:1:60:M*,N,W0,N,N,T:Z:FreeBSD:5.1-5.4::5.1-current (1)
289163621Sdelphij# 65535:64:1:60:M*,N,W1,N,N,T:Z:FreeBSD:5.1-5.4::5.1-current (2)
290163621Sdelphij# 65535:64:1:60:M*,N,W2,N,N,T:Z:FreeBSD:5.1-5.4::5.1-current (3)
291163621Sdelphij# 65535:64:1:44:M*:Z:FreeBSD:5.2::FreeBSD 5.2 (no RFC1323)
292135183Smlaier
293126756Smlaier# 16384:64:1:60:M*,N,N,N,N,N,N,T:FreeBSD:4.4:noTS:FreeBSD 4.4 (w/o timestamps)
294126756Smlaier
295126756Smlaier# ----------------- NetBSD ------------------
296126756Smlaier
297135183Smlaier16384:64:0:60:M*,N,W0,N,N,T:	NetBSD:1.3::NetBSD 1.3
298126756Smlaier65535:64:0:60:M*,N,W0,N,N,T0:	NetBSD:1.6:opera:NetBSD 1.6 (Opera)
299126756Smlaier16384:64:0:60:M*,N,W0,N,N,T0:	NetBSD:1.6::NetBSD 1.6
300126756Smlaier16384:64:1:60:M*,N,W0,N,N,T0:	NetBSD:1.6:df:NetBSD 1.6 (DF)
301126756Smlaier65535:64:1:60:M*,N,W1,N,N,T0:	NetBSD:1.6::NetBSD 1.6W-current (DF)
302135183Smlaier65535:64:1:60:M*,N,W0,N,N,T0:	NetBSD:1.6::NetBSD 1.6X (DF)
303135183Smlaier32768:64:1:60:M*,N,W0,N,N,T0:	NetBSD:1.6:randomization:NetBSD 1.6ZH-current (w/ ip_id randomization)
304126756Smlaier
305126756Smlaier# ----------------- OpenBSD -----------------
306126756Smlaier
307126756Smlaier16384:64:0:60:M*,N,W0,N,N,T:		OpenBSD:2.6::NetBSD 1.3 (or OpenBSD 2.6)
308225452Sdelphij16384:64:1:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.0-4.8::OpenBSD 3.0-4.8
309225452Sdelphij16384:64:0:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.0-4.8:no-df:OpenBSD 3.0-4.8 (scrub no-df)
310163621Sdelphij57344:64:1:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.3-4.0::OpenBSD 3.3-4.0
311163621Sdelphij57344: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)
312126756Smlaier
313163621Sdelphij65535:64:1:64:M*,N,N,S,N,W0,N,N,T:	OpenBSD:3.0-4.0:opera:OpenBSD 3.0-4.0 (Opera)
314126756Smlaier
315225452Sdelphij16384:64:1:64:M*,N,N,S,N,W3,N,N,T:	OpenBSD:4.9::OpenBSD 4.9
316225452Sdelphij16384:64:0:64:M*,N,N,S,N,W3,N,N,T:	OpenBSD:4.9:no-df:OpenBSD 4.9 (scrub no-df)
317225452Sdelphij
318126756Smlaier# ----------------- Solaris -----------------
319126756Smlaier
320126756SmlaierS17:64:1:64:N,W3,N,N,T0,N,N,S,M*:	Solaris:8:RFC1323:Solaris 8 RFC1323
321126756SmlaierS17:64:1:48:N,N,S,M*:			Solaris:8::Solaris 8
322126756SmlaierS17:255:1:44:M*:			Solaris:2.5-2.7::Solaris 2.5 to 7
323126756Smlaier
324126756SmlaierS6:255:1:44:M*:				Solaris:2.6-2.7::Solaris 2.6 to 7
325126756SmlaierS23:255:1:44:M*:			Solaris:2.5:1:Solaris 2.5.1
326126756SmlaierS34:64:1:48:M*,N,N,S:			Solaris:2.9::Solaris 9
327126756SmlaierS44:255:1:44:M*:			Solaris:2.7::Solaris 7
328126756Smlaier
329135183Smlaier4096:64:0:44:M1460:			SunOS:4.1::SunOS 4.1.x
330135183Smlaier
331163621SdelphijS34:64:1:52:M*,N,W0,N,N,S:		Solaris:10:beta:Solaris 10 (beta)
332163621Sdelphij32850:64:1:64:M*,N,N,T,N,W1,N,N,S:	Solaris:10::Solaris 10 1203
333135183Smlaier
334126756Smlaier# ----------------- IRIX --------------------
335126756Smlaier
336126756Smlaier49152:64:0:44:M*:			IRIX:6.4::IRIX 6.4
337126756Smlaier61440:64:0:44:M*:			IRIX:6.2-6.5::IRIX 6.2-6.5
338126756Smlaier49152:64:0:52:M*,N,W2,N,N,S:		IRIX:6.5:RFC1323:IRIX 6.5 (RFC1323)
339126756Smlaier49152:64:0:52:M*,N,W3,N,N,S:		IRIX:6.5:RFC1323:IRIX 6.5 (RFC1323)
340126756Smlaier
341126756Smlaier61440:64:0:48:M*,N,N,S:			IRIX:6.5:12-21:IRIX 6.5.12 - 6.5.21
342126756Smlaier49152:64:0:48:M*,N,N,S:			IRIX:6.5:15-21:IRIX 6.5.15 - 6.5.21
343126756Smlaier
344163621Sdelphij49152:60:0:64:M*,N,W2,N,N,T,N,N,S:	IRIX:6.5:IP27:IRIX 6.5 IP27
345163621Sdelphij
346163621Sdelphij
347126756Smlaier# ----------------- Tru64 -------------------
348126756Smlaier
349135183Smlaier32768:64:1:48:M*,N,W0:			Tru64:4.0::Tru64 4.0 (or OS/2 Warp 4)
350126756Smlaier32768:64:0:48:M*,N,W0:			Tru64:5.0::Tru64 5.0
351126756Smlaier8192:64:0:44:M1460:			Tru64:5.1:noRFC1323:Tru64 6.1 (no RFC1323) (or QNX 6)
352126756Smlaier61440:64:0:48:M*,N,W0:			Tru64:5.1a:JP4:Tru64 v5.1a JP4 (or OpenVMS 7.x on Compaq 5.x stack)
353126756Smlaier
354126756Smlaier# ----------------- OpenVMS -----------------
355126756Smlaier
356126756Smlaier6144:64:1:60:M*,N,W0,N,N,T:		OpenVMS:7.2::OpenVMS 7.2 (Multinet 4.4 stack)
357126756Smlaier
358126756Smlaier# ----------------- MacOS -------------------
359126756Smlaier
360135183Smlaier# XXX Need EOL tcp opt support
361135183Smlaier# S2:255:1:48:M*,W0,E:.:MacOS:8.6 classic
362135183Smlaier
363135183Smlaier# XXX some of these use EOL too
364126756Smlaier16616:255:1:48:M*,W0:			MacOS:7.3-7.6:OTTCP:MacOS 7.3-8.6 (OTTCP)
365126756Smlaier16616:255:1:48:M*,W0:			MacOS:8.0-8.6:OTTCP:MacOS 7.3-8.6 (OTTCP)
366135183Smlaier16616:255:1:48:M*,N,N,N:		MacOS:8.1-8.6:OTTCP:MacOS 8.1-8.6 (OTTCP)
367135183Smlaier32768:255:1:48:M*,W0,N:			MacOS:9.0-9.2::MacOS 9.0-9.2
368135183Smlaier65535:255:1:48:M*,N,N,N,N:		MacOS:9.1::MacOS 9.1 (OT 2.7.4)
369126756Smlaier
370135183Smlaier
371126756Smlaier# ----------------- Windows -----------------
372126756Smlaier
373135183Smlaier# Windows TCP/IP stack is a mess. For most recent XP, 2000 and
374225452Sdelphij# even 98, the patchlevel, not the actual OS version, is more
375135183Smlaier# relevant to the signature. They share the same code, so it would
376135183Smlaier# seem. Luckily for us, almost all Windows 9x boxes have an
377135183Smlaier# awkward MSS of 536, which I use to tell one from another
378135183Smlaier# in most difficult cases.
379126756Smlaier
380135183Smlaier8192:32:1:44:M*:			Windows:3.11::Windows 3.11 (Tucows)
381135183SmlaierS44:64:1:64:M*,N,W0,N,N,T0,N,N,S:	Windows:95::Windows 95
382135183Smlaier8192:128:1:64:M*,N,W0,N,N,T0,N,N,S:	Windows:95:b:Windows 95b
383126756Smlaier
384135183Smlaier# There were so many tweaking tools and so many stack versions for
385135183Smlaier# Windows 98 it is no longer possible to tell them from each other
386135183Smlaier# without some very serious research. Until then, there's an insane
387135183Smlaier# number of signatures, for your amusement:
388126756Smlaier
389135183SmlaierS44:32:1:48:M*,N,N,S:			Windows:98:lowTTL:Windows 98 (low TTL)
390135183Smlaier8192:32:1:48:M*,N,N,S:			Windows:98:lowTTL:Windows 98 (low TTL)
391135183Smlaier%8192:64:1:48:M536,N,N,S:		Windows:98::Windows 98
392135183Smlaier%8192:128:1:48:M536,N,N,S:		Windows:98::Windows 98
393126756SmlaierS4:64:1:48:M*,N,N,S:			Windows:98::Windows 98
394126756SmlaierS6:64:1:48:M*,N,N,S:			Windows:98::Windows 98
395126756SmlaierS12:64:1:48:M*,N,N,S:			Windows:98::Windows 98
396135183SmlaierT30:64:1:64:M1460,N,W0,N,N,T0,N,N,S:	Windows:98::Windows 98
397126756Smlaier32767:64:1:48:M*,N,N,S:			Windows:98::Windows 98
398126756Smlaier37300:64:1:48:M*,N,N,S:			Windows:98::Windows 98
399126756Smlaier46080:64:1:52:M*,N,W3,N,N,S:		Windows:98:RFC1323:Windows 98 (RFC1323)
400135183Smlaier65535:64:1:44:M*:			Windows:98:noSack:Windows 98 (no sack)
401126756SmlaierS16:128:1:48:M*,N,N,S:			Windows:98::Windows 98
402126756SmlaierS16:128:1:64:M*,N,W0,N,N,T0,N,N,S:	Windows:98::Windows 98
403126756SmlaierS26:128:1:48:M*,N,N,S:			Windows:98::Windows 98
404126756SmlaierT30:128:1:48:M*,N,N,S:			Windows:98::Windows 98
405126756Smlaier32767:128:1:52:M*,N,W0,N,N,S:		Windows:98::Windows 98
406126756Smlaier60352:128:1:48:M*,N,N,S:		Windows:98::Windows 98
407126756Smlaier60352:128:1:64:M*,N,W2,N,N,T0,N,N,S:	Windows:98::Windows 98
408126756Smlaier
409135183Smlaier# What's with 1414 on NT?
410135183SmlaierT31:128:1:44:M1414:			Windows:NT:4.0:Windows NT 4.0 SP6a
411126756Smlaier64512:128:1:44:M1414:			Windows:NT:4.0:Windows NT 4.0 SP6a
412126756Smlaier8192:128:1:44:M*:			Windows:NT:4.0:Windows NT 4.0 (older)
413130151Sschweikh
414126756Smlaier# Windows XP and 2000. Most of the signatures that were
415126756Smlaier# either dubious or non-specific (no service pack data)
416126756Smlaier# were deleted and replaced with generics at the end.
417126756Smlaier
418126756Smlaier65535:128:1:48:M*,N,N,S:		Windows:2000:SP4:Windows 2000 SP4, XP SP1
419126756Smlaier65535:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows 2000 SP4, XP SP1
420135183Smlaier%8192:128:1:48:M*,N,N,S:		Windows:2000:SP2+:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222)
421135183Smlaier%8192:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222)
422135183SmlaierS20:128:1:48:M*,N,N,S:			Windows:2000::Windows 2000/XP SP3
423135183SmlaierS20:128:1:48:M*,N,N,S:			Windows:XP:SP3:Windows 2000/XP SP3
424135183SmlaierS45:128:1:48:M*,N,N,S:			Windows:2000:SP4:Windows 2000 SP4, XP SP 1
425135183SmlaierS45:128:1:48:M*,N,N,S:			Windows:XP:SP1:Windows 2000 SP4, XP SP 1
426135183Smlaier40320:128:1:48:M*,N,N,S:		Windows:2000:SP4:Windows 2000 SP4
427126756Smlaier
428135183SmlaierS6:128:1:48:M*,N,N,S:			Windows:2000:SP2:Windows XP, 2000 SP2+
429135183SmlaierS6:128:1:48:M*,N,N,S:			Windows:XP::Windows XP, 2000 SP2+
430135183SmlaierS12:128:1:48:M*,N,N,S:			Windows:XP:SP1:Windows XP SP1
431135183SmlaierS44:128:1:48:M*,N,N,S:			Windows:2000:SP3:Windows Pro SP1, 2000 SP3
432135183SmlaierS44:128:1:48:M*,N,N,S:			Windows:XP:SP1:Windows Pro SP1, 2000 SP3
433135183Smlaier64512:128:1:48:M*,N,N,S:		Windows:2000:SP3:Windows SP1, 2000 SP3
434135183Smlaier64512:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows SP1, 2000 SP3
435135183Smlaier32767:128:1:48:M*,N,N,S:		Windows:2000:SP4:Windows SP1, 2000 SP4
436135183Smlaier32767:128:1:48:M*,N,N,S:		Windows:XP:SP1:Windows SP1, 2000 SP4
437135183Smlaier
438244096Sdelphij8192:128:1:52:M*,N,W2,N,N,S:		Windows:Vista::Windows Vista/7
439244096Sdelphij
440126756Smlaier# Odds, ends, mods:
441126756Smlaier
442135183SmlaierS52:128:1:48:M1260,N,N,S:		Windows:2000:cisco:Windows XP/2000 via Cisco
443135183SmlaierS52:128:1:48:M1260,N,N,S:		Windows:XP:cisco:Windows XP/2000 via Cisco
444135183Smlaier65520:128:1:48:M*,N,N,S:		Windows:XP::Windows XP bare-bone
445135183Smlaier16384:128:1:52:M536,N,W0,N,N,S:		Windows:2000:ZoneAlarm:Windows 2000 w/ZoneAlarm?
446135183Smlaier2048:255:0:40:.:			Windows:.NET::Windows .NET Enterprise Server
447126756Smlaier
448163621Sdelphij44620:64:0:48:M*,N,N,S:			Windows:ME::Windows ME no SP (?)
449163621SdelphijS6:255:1:48:M536,N,N,S:			Windows:95:winsock2:Windows 95 winsock 2
450163621Sdelphij32768:32:1:52:M1460,N,W0,N,N,S:		Windows:2003:AS:Windows 2003 AS
451163621Sdelphij
452163621Sdelphij
453135183Smlaier# No need to be more specific, it passes:
454135183Smlaier# *:128:1:48:M*,N,N,S:U:-Windows:XP/2000 while downloading (leak!) XXX quirk
455135183Smlaier# there is an equiv similar generic sig w/o the quirk
456126756Smlaier
457126756Smlaier# ----------------- HP/UX -------------------
458126756Smlaier
459126756Smlaier32768:64:1:44:M*:			HP-UX:B.10.20::HP-UX B.10.20
460126756Smlaier32768:64:0:48:M*,W0,N:			HP-UX:11.0::HP-UX 11.0
461126756Smlaier32768:64:1:48:M*,W0,N:			HP-UX:11.10::HP-UX 11.0 or 11.11
462126756Smlaier32768:64:1:48:M*,W0,N:			HP-UX:11.11::HP-UX 11.0 or 11.11
463126756Smlaier
464126756Smlaier# Whoa. Hardcore WSS.
465126756Smlaier0:64:0:48:M*,W0,N:			HP-UX:B.11.00:A:HP-UX B.11.00 A (RFC1323)
466126756Smlaier
467126756Smlaier# ----------------- RiscOS ------------------
468126756Smlaier
469126756Smlaier# We don't yet support the ?12 TCP option
470126756Smlaier#16384:64:1:68:M1460,N,W0,N,N,T,N,N,?12:	RISCOS:3.70-4.36::RISC OS 3.70-4.36
471135183Smlaier12288:32:0:44:M536:				RISC OS:3.70:4.10:RISC OS 3.70 inet 4.10
472126756Smlaier
473135183Smlaier# XXX quirk
474135183Smlaier# 4096:64:1:56:M1460,N,N,T:T:			RISC OS:3.70:freenet:RISC OS 3.70 freenet 2.00
475135183Smlaier
476135183Smlaier
477163621Sdelphij
478126756Smlaier# ----------------- BSD/OS ------------------
479126756Smlaier
480126756Smlaier# Once again, power of two WSS is also shared by MacOS X with DF set
481126756Smlaier8192: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)
482126756Smlaier8192: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)
483126756Smlaier
484126756Smlaier
485126756Smlaier# ---------------- NewtonOS -----------------
486126756Smlaier
487126756Smlaier4096:64:0:44:M1420:		NewtonOS:2.1::NewtonOS 2.1
488126756Smlaier
489126756Smlaier# ---------------- NeXTSTEP -----------------
490126756Smlaier
491163621SdelphijS4:64:0:44:M1024:		NeXTSTEP:3.3::NeXTSTEP 3.3
492126756SmlaierS8:64:0:44:M512:		NeXTSTEP:3.3::NeXTSTEP 3.3
493126756Smlaier
494126756Smlaier# ------------------ BeOS -------------------
495126756Smlaier
496126756Smlaier1024:255:0:48:M*,N,W0:		BeOS:5.0-5.1::BeOS 5.0-5.1
497126756Smlaier12288:255:0:44:M1402:		BeOS:5.0::BeOS 5.0.x
498126756Smlaier
499126756Smlaier# ------------------ OS/400 -----------------
500126756Smlaier
501126756Smlaier8192:64:1:60:M1440,N,W0,N,N,T:	OS/400:VR4::OS/400 VR4/R5
502126756Smlaier8192:64:1:60:M1440,N,W0,N,N,T:	OS/400:VR5::OS/400 VR4/R5
503126756Smlaier4096:64:1:60:M1440,N,W0,N,N,T:	OS/400:V4R5:CF67032:OS/400 V4R5 + CF67032
504126756Smlaier
505135183Smlaier# XXX quirk
506135183Smlaier# 28672:64:0:44:M1460:A:OS/390:?
507126756Smlaier
508126756Smlaier# ------------------ ULTRIX -----------------
509126756Smlaier
510126756Smlaier16384:64:0:40:.:		ULTRIX:4.5::ULTRIX 4.5
511126756Smlaier
512126756Smlaier# ------------------- QNX -------------------
513126756Smlaier
514126756SmlaierS16:64:0:44:M512:		QNX:::QNX demodisk
515126756Smlaier
516126756Smlaier# ------------------ Novell -----------------
517126756Smlaier
518126756Smlaier16384:128:1:44:M1460:		Novell:NetWare:5.0:Novel Netware 5.0
519126756Smlaier6144:128:1:44:M1460:		Novell:IntranetWare:4.11:Novell IntranetWare 4.11
520135183Smlaier6144:128:1:44:M1368:		Novell:BorderManager::Novell BorderManager ?
521126756Smlaier
522135183Smlaier6144:128:1:52:M*,W0,N,S,N,N:	Novell:Netware:6:Novell Netware 6 SP3
523135183Smlaier
524135183Smlaier
525126756Smlaier# ----------------- SCO ------------------
526135183SmlaierS3:64:1:60:M1460,N,W0,N,N,T:	SCO:UnixWare:7.1:SCO UnixWare 7.1
527163621SdelphijS17:64:1:60:M1380,N,W0,N,N,T:	SCO:UnixWare:7.1:SCO UnixWare 7.1.3 MP3
528135183SmlaierS23:64:1:44:M1380:		SCO:OpenServer:5.0:SCO OpenServer 5.0
529126756Smlaier
530126756Smlaier# ------------------- DOS -------------------
531126756Smlaier
532126756Smlaier2048:255:0:44:M536:		DOS:WATTCP:1.05:DOS Arachne via WATTCP/1.05
533163621SdelphijT2:255:0:44:M984:		DOS:WATTCP:1.05Arachne:Arachne via WATTCP/1.05 (eepro)
534126756Smlaier
535135183Smlaier# ------------------ OS/2 -------------------
536135183Smlaier
537135183SmlaierS56:64:0:44:M512:		OS/2:4::OS/2 4
538163621Sdelphij28672:64:0:44:M1460:		OS/2:4::OS/2 Warp 4.0
539135183Smlaier
540135183Smlaier# ----------------- TOPS-20 -----------------
541135183Smlaier
542135183Smlaier# Another hardcore MSS, one of the ACK leakers hunted down.
543135183Smlaier# XXX QUIRK 0:64:0:44:M1460:A:TOPS-20:version 7
544135183Smlaier0:64:0:44:M1460:		TOPS-20:7::TOPS-20 version 7
545135183Smlaier
546163621Sdelphij# ----------------- FreeMiNT ----------------
547163621Sdelphij
548163621SdelphijS44:255:0:44:M536:		FreeMiNT:1:16A:FreeMiNT 1 patch 16A (Atari)
549163621Sdelphij
550135183Smlaier# ------------------ AMIGA ------------------
551135183Smlaier
552135183Smlaier# XXX TCP option 12
553135183Smlaier# S32:64:1:56:M*,N,N,S,N,N,?12:.:AMIGA:3.9 BB2 with Miami stack
554135183Smlaier
555135183Smlaier# ------------------ Plan9 ------------------
556135183Smlaier
557135183Smlaier65535:255:0:48:M1460,W0,N:	Plan9:4::Plan9 edition 4
558135183Smlaier
559135183Smlaier# ----------------- AMIGAOS -----------------
560135183Smlaier
561135183Smlaier16384:64:1:48:M1560,N,N,S:	AMIGAOS:3.9::AMIGAOS 3.9 BB2 MiamiDX
562135183Smlaier
563126756Smlaier###########################################
564126756Smlaier# Appliance / embedded / other signatures #
565126756Smlaier###########################################
566126756Smlaier
567126756Smlaier# ---------- Firewalls / routers ------------
568126756Smlaier
569126756SmlaierS12:64:1:44:M1460:			@Checkpoint:::Checkpoint (unknown 1)
570126756SmlaierS12:64:1:48:N,N,S,M1460:		@Checkpoint:::Checkpoint (unknown 2)
571126756Smlaier4096:32:0:44:M1460:			ExtremeWare:4.x::ExtremeWare 4.x
572126756Smlaier
573135183Smlaier# XXX TCP option 12
574135183Smlaier# S32:64:0:68:M512,N,W0,N,N,T,N,N,?12:.:Nokia:IPSO w/Checkpoint NG FP3
575135183Smlaier# S16:64:0:68:M1024,N,W0,N,N,T,N,N,?12:.:Nokia:IPSO 3.7 build 026
576135183Smlaier
577135183SmlaierS4:64:1:60:W0,N,S,T,M1460:		FortiNet:FortiGate:50:FortiNet FortiGate 50
578135183Smlaier
579135183Smlaier8192:64:1:44:M1460:			Eagle:::Eagle Secure Gateway
580135183Smlaier
581163621SdelphijS52:128:1:48:M1260,N,N,N,N:		LinkSys:WRV54G::LinkSys WRV54G VPN router
582135183Smlaier
583163621Sdelphij
584163621Sdelphij
585126756Smlaier# ------- Switches and other stuff ----------
586126756Smlaier
587126756Smlaier4128:255:0:44:M*:			Cisco:::Cisco Catalyst 3500, 7500 etc
588126756SmlaierS8:255:0:44:M*:				Cisco:12008::Cisco 12008
589126756Smlaier60352:128:1:64:M1460,N,W2,N,N,T,N,N,S:	Alteon:ACEswitch::Alteon ACEswitch
590126756Smlaier64512:128:1:44:M1370:			Nortel:Contivity Client::Nortel Conectivity Client
591126756Smlaier
592126756Smlaier
593126756Smlaier# ---------- Caches and whatnots ------------
594126756Smlaier
595126756SmlaierS4:64:1:52:M1460,N,N,S,N,W0:		AOL:web cache::AOL web cache
596126756Smlaier
597126756Smlaier32850:64:1:64:N,W1,N,N,T,N,N,S,M*:	NetApp:5.x::NetApp Data OnTap 5.x
598126756Smlaier16384:64:1:64:M1460,N,N,S,N,W0,N:	NetApp:5.3:1:NetApp 5.3.1
599135183Smlaier65535:64:0:64:M1460,N,N,S,N,W*,N,N,T:	NetApp:5.3-5.5::NetApp 5.3-5.5
600126756Smlaier65535:64:0:60:M1460,N,W0,N,N,T:		NetApp:CacheFlow::NetApp CacheFlow
601126756Smlaier8192:64:1:64:M1460,N,N,S,N,W0,N,N,T:	NetApp:5.2:1:NetApp NetCache 5.2.1
602135183Smlaier20480:64:1:64:M1460,N,N,S,N,W0,N,N,T:	NetApp:4.1::NetApp NetCache4.1
603126756Smlaier
604135183Smlaier65535:64:0:60:M1460,N,W0,N,N,T:		CacheFlow:4.1::CacheFlow CacheOS 4.1
605135183Smlaier8192:64:0:60:M1380,N,N,N,N,N,N,T:	CacheFlow:1.1::CacheFlow CacheOS 1.1
606135183Smlaier
607126756SmlaierS4:64:0:48:M1460,N,N,S:			Cisco:Content Engine::Cisco Content Engine
608126756Smlaier
609126756Smlaier27085:128:0:40:.:			Dell:PowerApp cache::Dell PowerApp (Linux-based)
610126756Smlaier
611126756Smlaier65535:255:1:48:N,W1,M1460:		Inktomi:crawler::Inktomi crawler
612126756SmlaierS1:255:1:60:M1460,S,T,N,W0:		LookSmart:ZyBorg::LookSmart ZyBorg
613126756Smlaier
614126756Smlaier16384:255:0:40:.:			Proxyblocker:::Proxyblocker (what's this?)
615126756Smlaier
616163621Sdelphij65535:255:0:48:M*,N,N,S:		Redline:::Redline T|X 2200
617163621Sdelphij
618163621Sdelphij32696:128:0:40:M1460:			Spirent:Avalanche::Spirent Web Avalanche HTTP benchmarking engine
619163621Sdelphij
620126756Smlaier# ----------- Embedded systems --------------
621126756Smlaier
622126756SmlaierS9:255:0:44:M536:			PalmOS:Tungsten:C:PalmOS Tungsten C
623126756SmlaierS5:255:0:44:M536:			PalmOS:3::PalmOS 3/4
624126756SmlaierS5:255:0:44:M536:			PalmOS:4::PalmOS 3/4
625126756SmlaierS4:255:0:44:M536:			PalmOS:3:5:PalmOS 3.5
626126756Smlaier2948:255:0:44:M536:			PalmOS:3:5:PalmOS 3.5.3 (Handera)
627135183SmlaierS29:255:0:44:M536:			PalmOS:5::PalmOS 5.0
628163621Sdelphij16384:255:0:44:M1398:			PalmOS:5.2:Clie:PalmOS 5.2 (Clie)
629163621SdelphijS14:255:0:44:M1350:			PalmOS:5.2:Treo:PalmOS 5.2.1 (Treo)
630126756Smlaier
631126756SmlaierS23:64:1:64:N,W1,N,N,T,N,N,S,M1460:	SymbianOS:7::SymbianOS 7
632126756Smlaier
633163621Sdelphij8192:255:0:44:M1460:			SymbianOS:6048::Symbian OS 6048 (Nokia 7650?)
634163621Sdelphij8192:255:0:44:M536:			SymbianOS:9210::Symbian OS (Nokia 9210?)
635163621SdelphijS22:64:1:56:M1460,T,S:			SymbianOS:P800::Symbian OS ? (SE P800?)
636163621SdelphijS36:64:1:56:M1360,T,S:			SymbianOS:6600::Symbian OS 60xx (Nokia 6600?)
637126756Smlaier
638163621Sdelphij
639126756Smlaier# Perhaps S4?
640126756Smlaier5840:64:1:60:M1452,S,T,N,W1:		Zaurus:3.10::Zaurus 3.10
641126756Smlaier
642126756Smlaier32768:128:1:64:M1460,N,W0,N,N,T0,N,N,S:	PocketPC:2002::PocketPC 2002
643126756Smlaier
644126756SmlaierS1:255:0:44:M346:			Contiki:1.1:rc0:Contiki 1.1-rc0
645126756Smlaier
646126756Smlaier4096:128:0:44:M1460:			Sega:Dreamcast:3.0:Sega Dreamcast Dreamkey 3.0
647135183SmlaierT5:64:0:44:M536:			Sega:Dreamcast:HKT-3020:Sega Dreamcast HKT-3020 (browser disc 51027)
648135183SmlaierS22:64:1:44:M1460:			Sony:PS2::Sony Playstation 2 (SOCOM?)
649126756Smlaier
650126756SmlaierS12:64:0:44:M1452:			AXIS:5600:v5.64:AXIS Printer Server 5600 v5.64
651126756Smlaier
652163621Sdelphij3100:32:1:44:M1460:			Windows:CE:2.0:Windows CE 2.0
653126756Smlaier
654126756Smlaier####################
655126756Smlaier# Fancy signatures #
656126756Smlaier####################
657126756Smlaier
658126756Smlaier1024:64:0:40:.:				*NMAP:syn scan:1:NMAP syn scan (1)
659126756Smlaier2048:64:0:40:.:				*NMAP:syn scan:2:NMAP syn scan (2)
660126756Smlaier3072:64:0:40:.:				*NMAP:syn scan:3:NMAP syn scan (3)
661126756Smlaier4096:64:0:40:.:				*NMAP:syn scan:4:NMAP syn scan (4)
662126756Smlaier
663163621Sdelphij# Requires quirks support
664163621Sdelphij# 1024:64:0:40:.:A:*NMAP:TCP sweep probe (1)
665163621Sdelphij# 2048:64:0:40:.:A:*NMAP:TCP sweep probe (2)
666163621Sdelphij# 3072:64:0:40:.:A:*NMAP:TCP sweep probe (3)
667163621Sdelphij# 4096:64:0:40:.:A:*NMAP:TCP sweep probe (4)
668163621Sdelphij
669126756Smlaier1024:64:0:60:W10,N,M265,T:		*NMAP:OS:1:NMAP OS detection probe (1)
670126756Smlaier2048:64:0:60:W10,N,M265,T:		*NMAP:OS:2:NMAP OS detection probe (2)
671126756Smlaier3072:64:0:60:W10,N,M265,T:		*NMAP:OS:3:NMAP OS detection probe (3)
672126756Smlaier4096:64:0:60:W10,N,M265,T:		*NMAP:OS:4:NMAP OS detection probe (4)
673126756Smlaier
674163621Sdelphij32767:64:0:40:.:			*NAST:::NASTsyn scan
675163621Sdelphij
676163621Sdelphij# Requires quirks support
677163621Sdelphij# 12345:255:0:40:.:A:-p0f:sendsyn utility
678163621Sdelphij
679163621Sdelphij
680126756Smlaier#####################################
681126756Smlaier# Generic signatures - just in case #
682126756Smlaier#####################################
683126756Smlaier
684126756Smlaier#*:64:1:60:M*,N,W*,N,N,T:		@FreeBSD:4.0-4.9::FreeBSD 4.x/5.x
685126756Smlaier#*:64:1:60:M*,N,W*,N,N,T:		@FreeBSD:5.0-5.1::FreeBSD 4.x/5.x
686126756Smlaier
687126756Smlaier*:128:1:52:M*,N,W0,N,N,S:		@Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
688126756Smlaier*:128:1:52:M*,N,W0,N,N,S:		@Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
689163621Sdelphij*:128:1:52:M*,N,W*,N,N,S:		@Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
690163621Sdelphij*:128:1:52:M*,N,W*,N,N,S:		@Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp)
691126756Smlaier*:128:1:64:M*,N,W0,N,N,T0,N,N,S:	@Windows:XP:RFC1323:Windows XP/2000 (RFC1323)
692126756Smlaier*:128:1:64:M*,N,W0,N,N,T0,N,N,S:	@Windows:2000:RFC1323:Windows XP/2000 (RFC1323)
693126756Smlaier*:128:1:64:M*,N,W*,N,N,T0,N,N,S:	@Windows:XP:RFC1323:Windows XP (RFC1323, w+)
694135183Smlaier*:128:1:48:M536,N,N,S:			@Windows:98::Windows 98
695126756Smlaier*:128:1:48:M*,N,N,S:			@Windows:XP::Windows XP/2000
696126756Smlaier*:128:1:48:M*,N,N,S:			@Windows:2000::Windows XP/2000
697135183Smlaier
698135183Smlaier
699