From cd90838c2efabcc28bf4f7606f879e91426fc2a5 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 11 Oct 2012 06:46:28 +0000 Subject: [PATCH] Change CPE from cpe:/o:linux:kernel to cpe:/o:linux:linux_kernel. This reflects a deprecation in the official CPE dictionary, which seems to have happened on 2012-03-08. Linux Kernel 2.6.0 --- CHANGELOG | 4 + FPModel.cc | 36 +- docs/refguide.xml | 4 +- docs/scripting.xml | 8 +- nmap-os-db | 1338 +++++++++++++++++++++---------------------- nmap-service-probes | 482 ++++++++-------- 6 files changed, 938 insertions(+), 934 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 75295497c..16f763ec9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ # Nmap Changelog ($Id$); -*-text-*- +o Changed the CPE for Linux from cpe:/o:linux:kernel to + cpe:/o:linux:linux_kernel to reflect deprecation in the official CPE + dictionary. + o Fixed a bug that caused an incorrect source address to be set when scanning certain addresses (apparently those ending in .0) on Windows XP. The symptom of this bug was the messages diff --git a/FPModel.cc b/FPModel.cc index 26d0e67ac..bde11032a 100644 --- a/FPModel.cc +++ b/FPModel.cc @@ -2248,12 +2248,12 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.38 - 3.2.0"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } { OS_Classification osclass = {"Linux", "Linux", "3.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:3"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:3"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2264,7 +2264,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.39"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6.39"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6.39"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2308,7 +2308,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Vyatta Core 6.3 (Linux 2.6.37)"; { OS_Classification osclass = {"Vyatta", "Linux", "2.6.X", "router"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6.37"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6.37"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2330,7 +2330,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.11 - 2.6.15"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2385,7 +2385,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.4.21"; { OS_Classification osclass = {"Linux", "Linux", "2.4.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.4.21"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.4.21"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2460,7 +2460,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "OpenWrt (Linux 2.6.32)"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "broadband router"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6.32"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6.32"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2604,7 +2604,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.23 - 2.6.33 (embedded)"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2616,7 +2616,7 @@ std::vector load_fp_matches() { { OS_Classification osclass = {"Thecus", "Linux", "2.6.X", "storage-misc"}; osclass.cpe.push_back("cpe:/h:thecus:n4100pro"); - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6.33"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6.33"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2752,7 +2752,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.18 - 2.6.34"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2763,7 +2763,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.23 - 2.6.32"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2829,7 +2829,7 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.32 - 2.6.36"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2840,12 +2840,12 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.16 - 3.2.0"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } { OS_Classification osclass = {"Linux", "Linux", "3.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:3"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:3"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2856,12 +2856,12 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.32 - 3.2.0"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } { OS_Classification osclass = {"Linux", "Linux", "3.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:3"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:3"); match.OS_class.push_back(osclass); } matches.push_back(match); @@ -2872,12 +2872,12 @@ std::vector load_fp_matches() { match.OS_name = (char *) "Linux 2.6.32 - 3.0.0"; { OS_Classification osclass = {"Linux", "Linux", "2.6.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:2.6"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:2.6"); match.OS_class.push_back(osclass); } { OS_Classification osclass = {"Linux", "Linux", "3.X", "general purpose"}; - osclass.cpe.push_back("cpe:/o:linux:kernel:3"); + osclass.cpe.push_back("cpe:/o:linux:linux_kernel:3"); match.OS_class.push_back(osclass); } matches.push_back(match); diff --git a/docs/refguide.xml b/docs/refguide.xml index ef1fb317f..c57694cfe 100644 --- a/docs/refguide.xml +++ b/docs/refguide.xml @@ -113,7 +113,7 @@ PORT STATE SERVICE VERSION 9929/tcp open nping-echo Nping echo Device type: general purpose Running: Linux 2.6.X -OS CPE: cpe:/o:linux:kernel:2.6.39 +OS CPE: cpe:/o:linux:linux_kernel:2.6.39 OS details: Linux 2.6.39 Network Distance: 11 hops Service Info: OS: Linux; CPE: cpe:/o:linux:kernel @@ -2065,7 +2065,7 @@ way. etc). Most fingerprints also have a Common Platform Enumeration (CPE)Common Platform Enumerationoperating system representation, like - cpe:/o:linux:kernel:2.6. + cpe:/o:linux:linux_kernel:2.6. If Nmap is unable to guess the OS of a machine, and conditions are good (e.g. at least one open port and one closed diff --git a/docs/scripting.xml b/docs/scripting.xml index a38b07d13..d53edee47 100644 --- a/docs/scripting.xml +++ b/docs/scripting.xml @@ -1701,9 +1701,9 @@ host.os = { Fingerprint Linux 2.6.32 - 3.2 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 +CPE cpe:/o:linux:linux_kernel:3 @@ -1720,14 +1720,14 @@ host.os = { osfamily = "Linux", osgen = "2.6.X", type = "general purpose", - cpe = { "cpe:/o:linux:kernel:2.6" } + cpe = { "cpe:/o:linux:linux_kernel:2.6" } }, { vendor = "Linux", osfamily = "Linux", osgen = "3.X", type = "general purpose", - cpe = { "cpe:/o:linux:kernel:3" } + cpe = { "cpe:/o:linux:linux_kernel:3" } } }, } diff --git a/nmap-os-db b/nmap-os-db index db31767be..edc48afdb 100644 --- a/nmap-os-db +++ b/nmap-os-db @@ -12850,7 +12850,7 @@ IE(DFI=S%T=100%TG=FF%CD=S) # Linux Cisco-NAC 2.6.11-perfigo #1 Mon Jun 11 17:01:41 PDT 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.11 Class Cisco | Linux | 2.6.X | firewall -CPE cpe:/o:linux:kernel:2.6.11 +CPE cpe:/o:linux:linux_kernel:2.6.11 SEQ(SP=B7-C1%GCD=1-6%ISR=BE-C8%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW2%O2=M564ST11NW2%O3=M564NNT11NW2%O4=M564ST11NW2%O5=M564ST11NW2%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -17164,7 +17164,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.6 #1 Thu Jan 28 13:58:17 CET 2010 ppc GNU/Linux Fingerprint Linux 2.6.32 Class Excito | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C5-CF%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW4%O2=M400CST11NW4%O3=M400CNNT11NW4%O4=M400CST11NW4%O5=M400CST11NW4%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -17182,7 +17182,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35.4 #5 Tue Sep 7 16:06:15 CEST 2010 armv5tel GNU/Linux / Debian Fingerprint Linux 2.6.35 Class Excito | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=B6-C0%GCD=1-6%ISR=C0-CA%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -20601,7 +20601,7 @@ Fingerprint Android 2.3.7 (Linux 2.6) Class Google | Android | 2.X | phone CPE cpe:/o:google:android:2.3.7 Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BB-C5%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=6|7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -29659,7 +29659,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.20 #13 Sun Jan 7 12:39:25 UTC 2007 mips unknown Fingerprint Linux 2.4.20 Class Linksys | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.20 +CPE cpe:/o:linux:linux_kernel:2.4.20 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=6|7) OPS(O1=M5A8ST11NW0%O2=M5A8ST11NW0%O3=M5A8NNT11NW0%O4=M5A8ST11NW0%O5=M5A8ST11NW0%O6=M5A8ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -29714,7 +29714,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-238.1.1.el5PAE #1 SMP Tue Jan 4 13:53:16 EST 2011 i686 i686 i386 GNU/Linux RedHat RHEL 5.6 Fingerprint Linux 2.6.18 Class Linksys | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C8-D2%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=U) OPS(O1=M5B4NW1|M5B4NW9%O2=M5B4NW1|M5B4NW9%O3=M5B4NW1|M5B4NW9%O4=M5B4NW1|M5B4NW9%O5=M5B4NW1|M5B4NW9%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -29732,7 +29732,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-4-ixp4xx #1 Sun Apr 22 08:34:11 UTC 2007 armv5tel GNU/Linux, Debian on NSLU2 Fingerprint Linux 2.6.18 Class Linksys | Linux | 2.6.X | storage-misc -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(R=N) OPS(R=N) WIN(R=N) @@ -29810,7 +29810,7 @@ IE(DFI=S%T=3B-45%TG=40%CD=S) # Linux 1.0.9 #3 Wed Oct 24 18:09:25 CEST 2007 i486 Fingerprint Linux 1.0.9 Class Linux | Linux | 1.0.X | general purpose -CPE cpe:/o:linux:kernel:1.0.9 +CPE cpe:/o:linux:linux_kernel:1.0.9 SEQ(SP=0-5%GCD=1E|3C|5A|78|96%ISR=3D-47%TI=I%II=I%SS=S%TS=U) OPS(O1=|M218%O2=|M578%O3=|M59C%O4=|M59C%O5=|M218%O6=) WIN(W1=0|1000%W2=0|1000%W3=0|1000%W4=0|1000%W5=0|1000%W6=0) @@ -29828,7 +29828,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=Z) # Linux 2.0.33 #2 i486 unknown Fingerprint Linux 2.0.33 Class Linux | Linux | 2.0.X | general purpose -CPE cpe:/o:linux:kernel:2.0.33 +CPE cpe:/o:linux:linux_kernel:2.0.33 SEQ(SP=FC-106%GCD=1-6%ISR=109-113%TI=I%II=I%SS=S%TS=U) OPS(O1=M5B4%O2=M578%O3=M280%O4=M218%O5=M218%O6=M109) WIN(W1=3FE0%W2=3FE0%W3=3FE0%W4=3FE0%W5=3FE0%W6=3FE0) @@ -29846,7 +29846,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.0.33 #1 Mon Apr 13 21:43:39 EEST 1998 i486 unknown (Red Hat Linux release 5.0 (Hurricane)) Fingerprint Linux 2.0.33 (Red Hat 5.0) Class Linux | Linux | 2.0.X | general purpose -CPE cpe:/o:linux:kernel:2.0.33 +CPE cpe:/o:linux:linux_kernel:2.0.33 SEQ(SP=FC-106%GCD=1-6%ISR=108-112%TI=I%II=I%SS=S%TS=U) OPS(O1=M5B4%O2=M578%O3=M280%O4=M218%O5=M218%O6=M109) WIN(W1=7FE0%W2=7FE0%W3=7FE0%W4=7FE0%W5=7FE0%W6=7FE0) @@ -29866,7 +29866,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.0.36 #1 Tue Oct 13 22:17:11 EDT 1998 i686 unknown Red Hat Linux 5.2 Fingerprint Linux 2.0.35 - 2.0.36 Class Linux | Linux | 2.0.X | general purpose -CPE cpe:/o:linux:kernel:2.0 auto +CPE cpe:/o:linux:linux_kernel:2.0 auto SEQ(SP=101-10B%GCD=1-6%ISR=103-10D%TI=I%II=I%SS=S%TS=U) OPS(O1=M5B4%O2=M578%O3=M280%O4=M218%O5=M218%O6=M109) WIN(W1=7FE0%W2=7FE0%W3=7FE0%W4=7FE0%W5=7FE0%W6=7FE0) @@ -29884,7 +29884,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.0.36 #1 Tue Oct 13 22:17:11 EDT 1998 i686 unknown Fingerprint Linux 2.0.36 (Red Hat 5.2) Class Linux | Linux | 2.0.X | general purpose -CPE cpe:/o:linux:kernel:2.0.36 +CPE cpe:/o:linux:linux_kernel:2.0.36 SEQ(SP=C1-CB%GCD=1-6%ISR=C9-D3%TI=I%CI=I%II=I%SS=S%TS=U) OPS(O1=M5A0%O2=M400%O3=M218%O4=M200%O5=M200%O6=M100) WIN(W1=7FE0%W2=7FE0%W3=7FE0%W4=7FE0%W5=7FE0%W6=7FE0) @@ -29906,7 +29906,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # ISDN codec - Telos Zephyr Xstream with firmware "ver. 3.8.62b (build Tue Nov 25 18:33:48 EST 2008)" Fingerprint Linux 2.0.39 - 2.0.40 (embedded) Class Linux | Linux | 2.0.X | general purpose -CPE cpe:/o:linux:kernel:2.0 auto +CPE cpe:/o:linux:linux_kernel:2.0 auto SEQ(SP=FB-108%GCD=1-6%ISR=102-10F%TI=I%II=I%SS=S%TS=U) OPS(O1=M5B4%O2=M578%O3=M280%O4=M218%O5=M218%O6=M109) WIN(W1=3FE0%W2=3FE0%W3=3FE0%W4=3FE0%W5=3FE0%W6=3FE0) @@ -29924,7 +29924,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # elmeg (funkwerk) pabx T240 or T444 ucLinux 2.0.38 Fingerprint elmeg T240 or T444 PABX (Linux 2.0.38) Class Linux | Linux | 2.0.X | PBX -CPE cpe:/o:linux:kernel:2.0 auto +CPE cpe:/o:linux:linux_kernel:2.0 auto SEQ(SP=101-10B%GCD=1-6%ISR=109-113%TI=I%CI=I%II=I%SS=S%TS=U) OPS(O1=M5AC%O2=M578%O3=M280%O4=M218%O5=M218%O6=M109) WIN(W1=3FE0%W2=3FE0%W3=3FE0%W4=3FE0%W5=3FE0%W6=3FE0) @@ -29942,7 +29942,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # freesco at www.freesco.org Fingerprint FREESCO single-floppy router (Linux 2.0.39) Class Linux | Linux | 2.0.X | router -CPE cpe:/o:linux:kernel:2.0 auto +CPE cpe:/o:linux:linux_kernel:2.0 auto SEQ(SP=FE-108%GCD=1-6%ISR=FF-109%TI=I|RD%II=I%SS=S%TS=U) OPS(O1=|M5B4%O2=|M578%O3=|M280%O4=M200%O5=M200%O6=M100) WIN(W1=0|3FE0%W2=0|3FE0%W3=0|3FE0%W4=3FE0%W5=3FE0%W6=3FE0) @@ -29960,7 +29960,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # uClinux netcamsc 2.0.39.1 8118 Tue Oct 30 14:35:29 PDT 2007 m68knommu unknown, StarDot NetCam SC 5MP Fingerprint StarDot NetCam SC webcam (Linux 2.0.39) Class Linux | Linux | 2.0.X | webcam -CPE cpe:/o:linux:kernel:2.0 auto +CPE cpe:/o:linux:linux_kernel:2.0 auto SEQ(SP=101-10B%GCD=1-6%ISR=108-112%TI=I%II=I%SS=S%TS=U) OPS(O1=M5B4%O2=M578%O3=M280%O4=M218%O5=M218%O6=M109) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -29978,7 +29978,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.1.24-TiVo-2.5 #1 Tue Sep 7 02:27:11 EST 2004 ppc unknown Fingerprint TiVo series 1 (Linux 2.1.24-TiVo-2.5) Class Linux | Linux | 2.1.X | media device -CPE cpe:/o:linux:kernel:2.1 auto +CPE cpe:/o:linux:linux_kernel:2.1 auto SEQ(SP=103-10D%GCD=1-6%ISR=104-10E%TI=I%CI=I%II=I%SS=S%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=2000%W2=2000%W3=2000%W4=2000%W5=2000%W6=2000) @@ -29996,7 +29996,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # SuSE Linux 6.3 (i386) Kernel 2.2.13 Fingerprint Linux 2.2.13 (SuSE 6.3) Class Linux | Linux | 2.2.X | general purpose -CPE cpe:/o:linux:kernel:2.2.13 +CPE cpe:/o:linux:linux_kernel:2.2.13 SEQ(SP=BC-C6%GCD=1-6%ISR=C6-D0%TI=I%II=I%SS=S%TS=7) OPS(O1=M5B4ST11NW0%O2=M578ST11NW0%O3=M280NNT11NW0%O4=M218ST11NW0%O5=M218ST11NW0%O6=M109ST11) WIN(W1=77C4%W2=7850%W3=7A80%W4=7B88%W5=7B88%W6=7C38) @@ -30014,7 +30014,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Red Hat Linux 6.2 (Zoot) running 2.2.14-5 kernel Fingerprint Linux 2.2.14 (Red Hat 6.2) Class Linux | Linux | 2.2.X | general purpose -CPE cpe:/o:linux:kernel:2.2.14 +CPE cpe:/o:linux:linux_kernel:2.2.14 SEQ(SP=C3-CD%GCD=1-6%ISR=C2-CC%TI=I%II=I%SS=S%TS=7) OPS(O1=M5B4ST11NW0%O2=M578ST11NW0%O3=M280NNT11NW0%O4=M218ST11NW0%O5=M218ST11NW0%O6=M109ST11) WIN(W1=7D78%W2=7DC8%W3=7F80%W4=7FB8%W5=7FB8%W6=7F53) @@ -30035,7 +30035,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Red Hat Linux release 6.1 (Cartman) Kernel 2.2.12-20smp #1 i586 Fingerprint Linux 2.2.5 - 2.2.14 (Red Hat 6.0 - 6.2) Class Linux | Linux | 2.2.X | general purpose -CPE cpe:/o:linux:kernel:2.2 auto +CPE cpe:/o:linux:linux_kernel:2.2 auto SEQ(SP=BE-D4%GCD=1-6%ISR=C1-D3%TI=I%II=I%SS=S%TS=7) OPS(O1=M5B4ST11NW0%O2=M578ST11NW0%O3=M280NNT11NW0%O4=M218ST11NW0%O5=M218ST11NW0%O6=M109ST11) WIN(W1=7D78%W2=7DC8%W3=7F80%W4=7FB8%W5=7FB8%W6=7F53) @@ -30054,7 +30054,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # fli4l version 2.0.7 (though I'm not 100% about the version) (Linux 2.2.22?) Fingerprint Linux 2.2.9 Class Linux | Linux | 2.2.X | general purpose -CPE cpe:/o:linux:kernel:2.2.9 +CPE cpe:/o:linux:linux_kernel:2.2.9 Class Mobotix | Linux | 2.2.X | webcam CPE cpe:/o:mobotix:linux:2.2 auto SEQ(SP=BB-D3%GCD=1-6%ISR=C6-DA%TI=I%II=I%SS=S%TS=7) @@ -30075,7 +30075,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Linux 2.4.35.4 #12 Mon Jun 1 21:52:49 UTC 2009 mips, OpenWRT (KAMIKAZE (8.09.1, r16278)) Fingerprint OpenWrt Kamikaze 8.09.1 (Linux 2.4.35.4) Class Linux | Linux | 2.4.X | broadband router -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BA-C8%GCD=1-6%ISR=C6-DA%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW0%O2=M5B4NNSNW0%O3=M5B4NW0%O4=M5B4NNSNW0%O5=M5B4NNSNW0%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -30093,7 +30093,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.36 #1 Tue Jul 22 13:13:24 GMT 2008 i686 i686 i386 GNU/Linux -- IPCOP 1.4.21, IPCOP 1.4.21 Fingerprint IPCop firewall 1.4.21 (Linux 2.4.36) Class Linux | Linux | 2.4.X | firewall -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=U) OPS(O1=M5AC%O2=M5AC%O3=M5AC%O4=M5AC%O5=M5AC%O6=M5AC) WIN(W1=16B0%W2=16B0%W3=16B0%W4=16B0%W5=16B0%W6=16B0) @@ -30111,7 +30111,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.36 #310 Sun Jul 27 16:25:32 CEST 2008 mips unknown Fingerprint DD-WRT v24-sp1 (Linux 2.4.36) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BC-C6%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M528ST11NW0%O2=M528ST11NW0%O3=M528NNT11NW0%O4=M528ST11NW0%O5=M528ST11NW0%O6=M528ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30129,7 +30129,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # DD-WRT v24-sp1 (07/27/08) mini Fingerprint DD-WRT v24-sp1 (Linux 2.4.36) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C6-D0%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=NNT11|M5ACST11NW0%O2=NNT11|M5ACST11NW0%O3=NNT11|M5ACNNT11NW0%O4=NNT11|M5ACST11NW0%O5=NNT11|M5ACST11NW0%O6=NNT11|M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30147,7 +30147,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # "Lifesize" video conference unit. Fingerprint LifeSize video conferencing system (Linux 2.4.21) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C3-CD%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30169,7 +30169,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.18-24.7.x_3.5G #1 Tue Mar 8 12:16:01 CST 2005 i686 unknown/RedHat 7.3 Fingerprint Linux 2.4.18 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.18 +CPE cpe:/o:linux:linux_kernel:2.4.18 SEQ(SP=BD-D1%GCD=1-6%ISR=BE-DA%TI=Z%CI=Z%II=I%TS=9) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30187,7 +30187,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.18-3custom #3 Tue Aug 13 15:10:18 PDT 2002 i686 unknown Fingerprint Linux 2.4.18 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=A5-D1%GCD=1-6%ISR=AB-D3%TI=Z%CI=Z%II=I%TS=U) OPS(R=N) WIN(R=N) @@ -30247,7 +30247,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # NETGEAR WGR614v9 Fingerprint Linux 2.4.18 - 2.4.35 (likely embedded) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=A0-D2%GCD=1-6%ISR=B8-D8%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30265,7 +30265,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.18-14 #1 Wed Sep 4 12:13:11 EDT 2002 i686 athlon i386 GNU/Linux (Red Hat 8) Fingerprint Linux 2.4.18-14 (Red Hat 8) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.18-14 +CPE cpe:/o:linux:linux_kernel:2.4.18-14 SEQ(SP=C1-CB%GCD=1-6%ISR=CF-D9%TI=Z%II=I%TS=9|B) OPS(O1=M400CNNT11NW0%O2=M400CNNT11NW0%O3=M400CNNT11NW0%O4=M400CNNT11NW0%O5=M400CNNT11NW0%O6=M400CNNT11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -30283,7 +30283,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.19-4GB #1 Fri Sep 13 13:14:56 UTC 2002 i686 unknown Fingerprint Linux 2.4.19 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.19 +CPE cpe:/o:linux:linux_kernel:2.4.19 SEQ(SP=BC-C6%GCD=1-6%ISR=C5-CF%TI=I|RD%II=I%SS=S%TS=7|9) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30302,7 +30302,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.19-4GB #1 Wed Nov 27 00:56:40 UTC 2002 i686 unknown SuSE Linux 8.0 (i386) Fingerprint Linux 2.4.19 - 2.4.20 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C6-D2%TI=I%CI=I%II=I%SS=S%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30320,7 +30320,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.4.2-2 #1 Sun Apr 8 20:41:30 EDT 2001 i686 Red Hat Linux 7.1 (Seawolf) Fingerprint Linux 2.4.2 (Red Hat 7.1) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.2 +CPE cpe:/o:linux:linux_kernel:2.4.2 SEQ(SP=B6-D2%GCD=1-6%ISR=C0-CC%TI=Z%CI=Z%II=Z%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30339,7 +30339,7 @@ IE(DFI=Y%T=FA-104%TG=FF%CD=S) # Netgear WNR834B, Firmware Version: V1.0.4.0WW Fingerprint Linux 2.4.20 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.20 +CPE cpe:/o:linux:linux_kernel:2.4.20 SEQ(SP=BC-CE%GCD=1-6%ISR=BF-D3%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30357,7 +30357,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.20-8smp #1 SMP Thu Mar 13 17:45:54 EST 2003 i686 i686 i386 GNU/Linux Fingerprint Linux 2.4.20 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.20 +CPE cpe:/o:linux:linux_kernel:2.4.20 SEQ(SP=C2-CC%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30375,7 +30375,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.20-28smp Red Hat Linux release 7.2 (Enigma) Fingerprint Linux 2.4.20 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.20 +CPE cpe:/o:linux:linux_kernel:2.4.20 SEQ(SP=C5-CF%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NW0%O2=M5B4NW0%O3=M5B4NW0%O4=M5B4NW0%O5=M5B4NW0%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -30393,7 +30393,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Red Hat Linux release 7.2 (Enigma) with custom kernel. Linux 2.4.20-ck6 #2 Wed May 14 18:28:09 NZST 2003 i686 unknown Fingerprint Linux 2.4.20 (Red Hat 7.2) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.20 +CPE cpe:/o:linux:linux_kernel:2.4.20 SEQ(SP=C6-D0%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30412,7 +30412,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 i686 i386 GNU/Linux (Red Hat) Fingerprint Linux 2.4.20 - 2.4.27 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BE-D4%GCD=1-6%ISR=C4-D4%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30436,7 +30436,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.37-gentoox #1 Mon Jan 5 19:04:21 GMT 2009 i686 Celeron (Coppermine) GenuineIntel GNU/Linux Fingerprint Linux 2.4.20 - 2.4.37 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B0-CE%GCD=1-6%ISR=C3-D5%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW0%O2=M400CST11NW0%O3=M400CNNT11NW0%O4=M400CST11NW0%O5=M400CST11NW0%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -30454,7 +30454,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.20-grsec #12 Thu Jan 9 14:10:03 CET 2003 i686 unknown / Bering Fingerprint Linux 2.4.20-grsec Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C2-CC%GCD=1-6%ISR=CB-D5%TI=RD%II=RI%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30474,7 +30474,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.21-243-smp #1 SMP Thu Aug 12 15:25:35 UTC 2004 i686 i686 i386 GNU/Linux, SuSE Linux 9.0 (i586) Fingerprint Linux 2.4.21 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.21 +CPE cpe:/o:linux:linux_kernel:2.4.21 SEQ(SP=BB-D3%GCD=1-6%ISR=C6-D6%TI=I%CI=I%II=I%SS=S%TS=A) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30493,7 +30493,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.21-32.0.1.ELsmp #1 SMP Tue May 17 17:52:23 EDT 2005 i686 i686 i386 GNU/Linux Fingerprint Linux 2.4.21 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.21 +CPE cpe:/o:linux:linux_kernel:2.4.21 SEQ(SP=B4-DC%GCD=1-6%ISR=CB-D5%TI=Z%CI=I%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30512,7 +30512,7 @@ IE(DFI=N%T=41%TG=40%CD=S) # Dynalink ADSL router; RTA1046VW. The OS is 'Dynalink Wireless IAD' Fingerprint Linux 2.4.21 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.21 +CPE cpe:/o:linux:linux_kernel:2.4.21 SEQ(R=N) OPS(O1=%O2=%O3=%O4=%O5=%O6=) WIN(W1=0%W2=0%W3=0%W4=0%W5=0%W6=0) @@ -30530,7 +30530,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.21-303-default #1 Tue Dec 6 12:33:58 UTC 2005 i686 i686 i386 GNU/Linux Fingerprint Linux 2.4.21 (SuSE 9.0) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.21 +CPE cpe:/o:linux:linux_kernel:2.4.21 SEQ(SP=C7-D1%GCD=1-6%ISR=C7-D1%TI=I%II=I%SS=S%TS=7) OPS(O1=M535ST11NW0%O2=M535ST11NW0%O3=M535NNT11NW0%O4=M535ST11NW0%O5=M535ST11NW0%O6=M535ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30548,7 +30548,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.21-303-default #1 Tue Dec 6 12:33:58 UTC 2005 i686 athlon i386 GNU/Linux / Suse9.1 Fingerprint Linux 2.4.21 (SuSE 9.1) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.21 +CPE cpe:/o:linux:linux_kernel:2.4.21 SEQ(SP=C3-CD%GCD=1-6%ISR=C4-CE%TI=I%II=I%SS=S%TS=A) OPS(O1=M400CST11NW0%O2=M400CST11NW0%O3=M400CNNT11NW0%O4=M400CST11NW0%O5=M400CST11NW0%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -30569,7 +30569,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # ProCurve MSM313 ver:5.2.8.0-01-8279 Fingerprint Linux 2.4.21 - 2.4.25 (embedded) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BC-CE%GCD=1-6%ISR=C3-D3%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30595,7 +30595,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.244.smp #1 SMP Mon Dec 3 22:38:12 BRST 2007 i686 athlon i386 GNU/Linux Fingerprint Linux 2.4.21 - 2.4.27 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BC-D0%GCD=1-6%ISR=C1-D7%TI=Z%CI=I%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30623,7 +30623,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Hardware Firewall, SecureComputing/SG560 Version 3.1.4u1 -- Mon, 28 Aug 2006 19:00:12 +1000 - Linux version 2.4.31-uc0 (build@sgbuild) (gcc version 3.3.2) #1 Mon Aug 28 20:17:14 EST 2006 Fingerprint Linux 2.4.21 - 2.4.31 (likely embedded) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B5-D1%GCD=1-6%ISR=C2-DA%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30641,7 +30641,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.22-1.2199.8.legacy.nptl #1 Fri Mar 3 22:50:22 EST 2006 i686 i686 i386 GNU/Linux Fingerprint Linux 2.4.22 (x86) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.22 +CPE cpe:/o:linux:linux_kernel:2.4.22 SEQ(SP=B2-BC%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=U) OPS(O1=M400C%O2=M400C%O3=M400C%O4=M400C%O5=M400C%O6=M400C) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -30659,7 +30659,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.26 #6 Mon Jun 14 19:07:27 PDT 2004 i686 unknown unknown GNU/Linux Fingerprint Linux 2.4.26 (Slackware 10.0.0) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.26 +CPE cpe:/o:linux:linux_kernel:2.4.26 SEQ(R=N) OPS(R=N) WIN(R=N) @@ -30677,7 +30677,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.27-2-386 #1 Wed Aug 17 09:33:35 UTC 2005 i686 GNU/Linux (Debian) Fingerprint Linux 2.4.27 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.27 +CPE cpe:/o:linux:linux_kernel:2.4.27 SEQ(SP=CA-D4%GCD=1-6%ISR=CB-D5%TI=Z%CI=I%II=I%TS=7) OPS(O1=M4BEST11NW0%O2=M4BEST11NW0%O3=M4BENNT11NW0%O4=M4BEST11NW0%O5=M4BEST11NW0%O6=M4BEST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30695,7 +30695,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.31 #6 Sun Jun 5 19:04:47 PDT 2005 i586 unknown unknown GNU/Linux Fingerprint Linux 2.4.31 (Slackware v10.2) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.31 +CPE cpe:/o:linux:linux_kernel:2.4.31 SEQ(SP=C7-D1%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30713,7 +30713,7 @@ IE(DFI=N%T=7C-86%TG=80%CD=S) # Linux 2.4.31, grsecurity, x86 custom compiled Fingerprint Linux 2.4.31 w/grsec (x86) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C0-CA%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30731,7 +30731,7 @@ IE(DFI=N%T=59-63%TG=80%CD=S) # Linux 2.4.32 #1 tue jul 18 19:19:15 CEST 2006 i686 GNU/Linux / Debian lenny (4.1? - testing release) Fingerprint Linux 2.4.32 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.32 +CPE cpe:/o:linux:linux_kernel:2.4.32 SEQ(SP=C7-D1%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW0%O2=M400CST11NW0%O3=M400CNNT11NW0%O4=M400CST11NW0%O5=M400CST11NW0%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -30749,7 +30749,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.32 #1 Thu Nov 17 11:10:18 CET 2005 i686 pentium2 i386 GNU/Linux Fingerprint Linux 2.4.32 (x86) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.32 +CPE cpe:/o:linux:linux_kernel:2.4.32 SEQ(SP=C0-C6%GCD=1-6%ISR=C6-CE%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30767,7 +30767,7 @@ IE(DFI=N%T=36-40%TG=40%CD=S) # Linux 2.4.33 #1 Mon Nov 27 21:10:12 CET 2006 i686 unknown/Leaf Bering-uClibc 3 Fingerprint Linux 2.4.33 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.33 +CPE cpe:/o:linux:linux_kernel:2.4.33 SEQ(SP=C6-D0%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30787,7 +30787,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Netgem Netbox HD 7600 Set-top-box Running Linux MIPS (low-endian) 2.4.33.3 Fingerprint Linux 2.4.33 (embedded) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.33 +CPE cpe:/o:linux:linux_kernel:2.4.33 SEQ(SP=C1-D1%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW0%O2=M5ACST11NW0%O3=M5ACNNT11NW0%O4=M5ACST11NW0%O5=M5ACST11NW0%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -30805,7 +30805,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.35-wt1-SMP Eisfair Fingerprint Linux 2.4.35 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.35 +CPE cpe:/o:linux:linux_kernel:2.4.35 SEQ(SP=B9-C3%GCD=1-6%ISR=C6-D0%TI=Z%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30828,7 +30828,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Red Hat Linux 7.2 (Enigma), running 2.4.7-10 kernel Fingerprint Linux 2.4.7 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.7 +CPE cpe:/o:linux:linux_kernel:2.4.7 SEQ(SP=BA-D0%GCD=1-6%ISR=BB-D5%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30846,7 +30846,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Fedora Core 1 2.4.22-1.2199.8.legacy.nptlsmp Fingerprint Linux 2.4.7 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.7 +CPE cpe:/o:linux:linux_kernel:2.4.7 SEQ(SP=A3-BB%GCD=1-6%ISR=B6-C0%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30864,7 +30864,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.9-e.38smp #1 SMP Wed Feb 11 00:09:01 EST 2004 i686 unknown/Red Hat Linux Advanced Server release 2.1AS (Pensacola) Fingerprint Linux 2.4.9 (Red Hat Enterprise Linux 2.1 AS) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4.9 +CPE cpe:/o:linux:linux_kernel:2.4.9 SEQ(SP=C7-D1%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30904,7 +30904,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Red Hat Linux release 7.2 (Enigma), Kernel 2.4.9-13 on an i686 Fingerprint Linux 2.4.9 - 2.4.18 (likely embedded) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B0-D2%GCD=1-6%ISR=C1-D6%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30922,7 +30922,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Linux 2.4.35.4 #12 Mon Jun 1 21:52:49 UTC 2009 mips unknown/OpenWrt Kamikaze 8.09 Fingerprint OpenWrt Kamikaze 8.09 (Linux 2.4.35.4) Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BF-C9%GCD=1-6%ISR=CE-D8%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW0%O2=M5B4NNSNW0%O3=M5B4NW0%O4=M5B4NNSNW0%O5=M5B4NNSNW0%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -30940,7 +30940,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.18-rmk7-pxa3-embedix #1 Sun, 12 Mar 2006 16:58:40 +0100 armv4l unknown unknown GNU/Linux Fingerprint Sharp SL-5500 PDA (OpenZaurus 3.5.4, Linux 2.4.18) Class Linux | Linux | 2.4.X | PDA -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C5-CF%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=7) OPS(O1=M5AEST11NW0%O2=M5AEST11NW0%O3=M5AENNT11NW0%O4=M5AEST11NW0%O5=M5AEST11NW0%O6=M5AEST11) WIN(W1=1688%W2=1688%W3=1688%W4=1688%W5=1688%W6=1688) @@ -30966,7 +30966,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Actiontec MI424WR (Rev. A or B). Version: 4.0.16.1.56.0.10.12.3 Fingerprint Linux 2.4.21 (embedded) Class Linux | Linux | 2.4.X | specialized -CPE cpe:/o:linux:kernel:2.4.21 +CPE cpe:/o:linux:linux_kernel:2.4.21 SEQ(SP=AB-D1%GCD=1-6%ISR=C2-D8%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -30984,7 +30984,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux DD-WRT 2.4.35 #2092 Sat May 24 14:01:50 CEST 2008 mips unknown Fingerprint DD-WRT (Linux 2.4.35s) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(R=N) OPS(O1=%O2=%O3=%O4=%O5=%O6=) WIN(W1=0%W2=0%W3=0%W4=0%W5=0%W6=0) @@ -31003,7 +31003,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux DD-WRT 2.4.34-pre2 #170 Fri Sep 15 20:10:21 CEST 2006 mips unknown (WRT54GS v1.0 running DD-WRT v23 SP2) Fingerprint DD-WRT v23 (Linux 2.4.34) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B5-DD%GCD=1-6%ISR=BA-E0%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31021,7 +31021,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.36 #312 Fingerprint DD-WRT v23 (Linux 2.4.36) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31060,7 +31060,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # DD-WRT v24-sp2 (04/23/10) mega (SVN revision 14311) Fingerprint DD-WRT v23 - v24-sp2 (Linux 2.4.20 - 2.4.37) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B5-D3%GCD=1-6%ISR=BD-D8%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31078,7 +31078,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # DD-WRT Firmware Version 2.4SP1. Fingerprint DD-WRT v24-sp1 (Linux 2.4) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=A7-B1%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31096,7 +31096,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys router flashed with DDWRT firmware. Firmware: DD-WRT v24-sp1 (07/27/08) vpn Fingerprint DD-WRT v24-sp1 (Linux 2.4) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=F7-103%GCD=1-6%ISR=106-110%TI=Z%II=I%TS=7|8|A) OPS(O1=M564ST11NW0%O2=M564ST11NW0%O3=M564NNT11NW0%O4=M564ST11NW0%O5=M564ST11NW0%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31114,7 +31114,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.36 #2607 Fri Jan 2 02:03:37 CET 2009 mips unknown, DD-WRT v24-sp2 (01/02/09) mega - build 11296 Fingerprint DD-WRT v24-sp2 (Linux 2.4.36) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31132,7 +31132,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys WRT54GL running DD-WRT v24-sp2 (SVN revision: 14896) Fingerprint DD-WRT v24-sp2 (Linux 2.4.36) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C8-D2%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW1%O2=M5ACST11NW1%O3=M5ACNNT11NW1%O4=M5ACST11NW1%O5=M5ACST11NW1%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -31152,7 +31152,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux wrt54gl 2.4.30 #1 Sat Feb 3 13:16:08 CET 2007 mips unknown, OpenWRT White Russian 0.9 Fingerprint OpenWrt (Linux 2.4.30 - 2.4.34) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=AE-CC%GCD=1-6%ISR=C0-D4%TI=Z%II=I%TS=U) OPS(R=N) WIN(R=N) @@ -31173,7 +31173,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.32 #9 jue nov 23 12:11:45 UTC 2006 mips unknown/OpenWRT FON Fingerprint OpenWrt (Linux 2.4.32) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BE-D2%GCD=1-6%ISR=C5-D5%TI=Z%II=I%TS=U) OPS(R=N) WIN(R=N) @@ -31192,7 +31192,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys WRT54GL with some provider specific OpenWRT Fork. Fingerprint OpenWrt (Linux 2.4.32) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C2-CC%GCD=1-6%ISR=C6-DB%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW0%O2=M5B4NNSNW0%O3=M5B4NW0%O4=M5B4NNSNW0%O5=M5B4NNSNW0%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31222,7 +31222,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # OpenWrt 10.03 running a 2.4.37 kernel (brcm-2.4). Fingerprint OpenWrt 0.9 - 10.03 (Linux 2.4.30 - 2.4.37) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B3-D2%GCD=1-6%ISR=C0-D7%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW0%O2=M5B4NNSNW0%O3=M5B4NW0%O4=M5B4NNSNW0%O5=M5B4NNSNW0%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31241,7 +31241,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux OpenWrt 2.4.34 #3 Sun Sep 30 20:33:21 CEST 2007 mips unknown (Linksys WRT54GL V1.0 running the 7.09 version of Kamikaze from OpenWRT) Fingerprint OpenWrt 0.9 - 7.09 (Linux 2.4.30 - 2.4.34) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B5-BF%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=U) OPS(R=N) WIN(R=N) @@ -31262,7 +31262,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux OpenWrt 2.4.35.4 #3 Thu Jan 8 22:59:27 MST 2009 mips unknown, WRT54GS v1.1 running OpenWRT version svn 8.09 compiled January 8 2009 Fingerprint OpenWrt Kamikaze 8.09 (Linux 2.4.35.4) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BE-D0%GCD=1-6%ISR=C6-D8%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW0%O2=M5B4NNSNW0%O3=M5B4NW0%O4=M5B4NNSNW0%O5=M5B4NNSNW0%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31280,7 +31280,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.30 #1 Fri Nov 24 23:16:54 EST 2006 mips unknown, Linksys WRT54GL v1.1, running OpenWrt White Russian 0.9. Fingerprint OpenWrt White Russian 0.9 (Linux 2.4.30) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=B1-BB%GCD=1-6%ISR=B7-C1%TI=Z%II=I%TS=U) OPS(R=N) WIN(R=N) @@ -31298,7 +31298,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux SVEASOFT 2.4.20 #6 Wed Oct 6 18:30:51 CEST 2004 mips unknown, Sveasoft firmware "Alchemy-pre5.4a v2.04.4.8sv" Fingerprint Sveasoft (Linux 2.4.20) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C9-D3%GCD=1-6%ISR=C5-CF%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M557ST11NW0%O2=M557ST11NW0%O3=M557NNT11NW0%O4=M557ST11NW0%O5=M557ST11NW0%O6=M557ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31316,7 +31316,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.33.7 #3734 Wed Apr 15 10:19:17 CEST 2009 mips unknown/Sveasoft Talisman 2.0, Linksys WRT610N v.1.0 running Sveasoft Talisman v. 2.0 firmware Fingerprint Sveasoft Talisman 2.0 (Linux 2.4.33.7) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=BE-C8%GCD=1-6%ISR=BF-C9%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M550ST11NW0%O2=M550ST11NW0%O3=M550NNT11NW0%O4=M550ST11NW0%O5=M550ST11NW0%O6=M550ST11) WIN(W1=1510%W2=1510%W3=1510%W4=1510%W5=1510%W6=1510) @@ -31335,7 +31335,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.4.20 #1 Sun Jun 27 20:08:17 PDT 2010 mips GNU/Linux, Tomato Firmware v1.28.1815 Fingerprint Tomato 1.27 - 1.28 (Linux 2.4.20) Class Linux | Linux | 2.4.X | WAP -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(CI=Z%II=I%TS=7) OPS(R=N) WIN(R=N) @@ -31355,7 +31355,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Webcam running uClinux 2.4 as packaged by Cadenux for ARM processors without a MMU (i.e. ARM7 DM270) Fingerprint uClinux 2.4.19-uc1 (ARM) Class Linux | Linux | 2.4.X | webcam -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C1-CF%GCD=1-6%ISR=C4-D5%TI=I|RD%II=I%SS=S%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31373,7 +31373,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.34.7-svn15501 #1512 Tue Nov 9 10:23:43 CET 2010 mips unknown Fingerprint DD-WRT (Linux 2.6.34) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-D2%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31393,7 +31393,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux ika 2.6.24.111 #3404 Sat Aug 7 04:34:16 CEST 2010 mips unknown, DD-WRT v24-sp2 Fingerprint DD-WRT v24-sp2 (Linux 2.6.24) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B8-D4%GCD=1-6%ISR=C4-D8%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31412,7 +31412,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39.4 mips GNU/Linux, OpenWrt ar71xx trunk r29704 Fingerprint OpenWRT (Linux 2.6.39) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1|M5B4NNSNW2%O2=M5B4NNSNW1|M5B4NNSNW2%O3=M5B4NW1|M5B4NW2%O4=M5B4NNSNW1|M5B4NNSNW2%O5=M5B4NNSNW1|M5B4NNSNW2%O6=M5B4NNS) WIN(W1=3908%W2=3908%W3=3908%W4=3908%W5=3908%W6=3908) @@ -31430,7 +31430,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux OpenWrt 2.6.32.25 Fingerprint OpenWrt Backfire 10.03 (Linux 2.6.32) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31448,7 +31448,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37.1 #1 Tue Mar 1 13:20:43 CET 2011 mips GNU/Linux, netgear wndr3700 v2 router running openwrt 10.03 backfire Fingerprint OpenWrt Backfire 10.03 (Linux 2.6.32) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=111C%W2=111C%W3=111C%W4=111C%W5=111C%W6=111C) @@ -31466,7 +31466,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # OpenWrt Backfire 10.03.1-RC6 built from rev 27842 Fingerprint OpenWrt Backfire 10.03 (Linux 2.6.32) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400CNNSNW1%O2=M400CNNSNW1%O3=M400CNW1%O4=M400CNNSNW1%O5=M400CNNSNW1%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -31489,7 +31489,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.10 #20 Tue Apr 6 15:53:48 CEST 2010 mips GNU/Linux - OpenWRT 10.03 "Backfire" Fingerprint OpenWrt Kamikaze - Backfire 10.03 (Linux 2.6.19 - 2.6.32) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B6-D0%GCD=1-6%ISR=BB-D7%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31511,7 +31511,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys WRT54GS v2.1 running X-Wrt Kamikaze v8.09 with Linux 2.6.25.17 Fingerprint OpenWrt Kamikaze 8.09 (Linux 2.6.25 - 2.6.26) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BA-EC%GCD=1-6%ISR=C2-F4%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31530,7 +31530,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # OpenWRT Kamikaze 8.09.1 (Linux) Fingerprint OpenWrt Kamikaze 8.09 (Linux 2.6.25.20) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=C2-D6%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31549,7 +31549,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-1-486-vyatta, Vyatta 4.1.4 router which is based on Debian Fingerprint Vyatta 4.1.4 (Linux 2.6.24) Class Linux | Linux | 2.6.X | broadband router -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C9-D3%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=8) OPS(O1=M5B4NNT11NW6|M5B4NNT11NW7%O2=M5B4NNT11NW6|M5B4NNT11NW7%O3=M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4NNT11NW6|M5B4NNT11NW7%O5=M5B4NNT11NW6|M5B4NNT11NW7%O6=M5B4NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31567,7 +31567,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Endian Firewall 2.3 Final, with intrussion prevention on. Fingerprint Endian Firewall 2.3 (Linux 2.6) Class Linux | Linux | 2.6.X | firewall -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B5-C3%GCD=1-6%ISR=CA-D4%TI=RI%TS=1) OPS(O1=M578NW0NNT11%O2=M578NW0NNT11%O3=M280NW0NNT11%O4=M578NW0NNT11%O5=M218NW0NNT11%O6=M109NNT11) WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=FFFF%W6=FFFF) @@ -31585,7 +31585,7 @@ IE(R=N) # linux 2.6.26-1-486-vyatta H/SMP i686 CNU/\linux Fingerprint Vyatta router (Linux 2.6.26) Class Linux | Linux | 2.6.X | firewall -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A3-AD%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=8) OPS(O1=ST11M5B4NW5%O2=ST11M5B4NW5%O3=NNT11M5B4NW5%O4=ST11M5B4NW5%O5=ST11M5B4NW5%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31603,7 +31603,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.10-1.14_FC2.progeny.1.permeo.10 (builder@cantona.bcstx.cacheflow.com) (gcc version 3.3.3 20040412 (Red Hat Linux 3.3.3-7)) #1 Thu Oct 12 18:17:34 EDT 2006, System version: 5.2.2.1 Fingerprint Blue Coat Director (Linux 2.6.10) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=C3-CF%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31621,7 +31621,7 @@ IE(DFI=N%T=3A-44%TG=40%CD=S) # 2.6.34.7-svn15501 #1771 Sun Nov 21 11:50:56 CET 2010 mips unknown, TP-Link WR841ND v5 with DD-WRT v24 preSP2 (Beta) Build 15778 Fingerprint DD-WRT v24-presp2 (Linux 2.6.34) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BB-CF%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31643,7 +31643,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux galep5m 2.6.19-rc5 #19 Mon Sep 29 15:00:15 CEST 2008 armv4tl unknown, Conitec GALEP-5 universal programmer with firmware 4.4.7 Fingerprint DD-WRT v24-sp2 (Linux 2.6.19) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A9-CF%GCD=1-6%ISR=C3-D5%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31661,7 +31661,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.11-AV24 #1 Thu Oct 4 15:33:09 MDT 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.11 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.11 +CPE cpe:/o:linux:linux_kernel:2.6.11 SEQ(SP=C4-CE%GCD=1-6%ISR=C2-CC%TI=Z%II=I%TS=U) OPS(O1=M5B4NW2%O2=M5B4NW2%O3=M5B4NW2%O4=M5B4NW2%O5=M5B4NW2%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31679,7 +31679,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # auditor 10 2.6.11 Fingerprint Linux 2.6.11 (Auditor) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.11 +CPE cpe:/o:linux:linux_kernel:2.6.11 SEQ(SP=C7-D1%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31697,7 +31697,7 @@ IE(DFI=N%T=1B-25%TG=20%CD=S) # Linux 2.6.11-1.14_FC3smp #1 SMP Thu Apr 7 19:38:19 EDT 2005 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.11 (Fedora Code 3, SMP, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.11 +CPE cpe:/o:linux:linux_kernel:2.6.11 SEQ(SP=C2-CC%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW3%O2=M400CST11NW3%O3=M400CNNT11NW3%O4=M400CST11NW3%O5=M400CST11NW3%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -31717,7 +31717,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # NUUO video recorder NV4160 based linux Fingerprint Linux 2.6.11 - 2.6.15 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D3%GCD=1-6%ISR=CF-D9%TI=Z%CI=I%II=I%TS=A) OPS(O1=M2300ST11NW2%O2=M2300ST11NW2%O3=M2300NNT11NW2%O4=M2300ST11NW2%O5=M2300ST11NW2%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -31736,7 +31736,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-194.3.1.el5 #1 SMP Sun May 2 04:22:18 EDT 2010 i686 i686 i386 GNU/Linux, redhat-release-5Server-5.6.0.3 Fingerprint Linux 2.6.11 - 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F0-108%GCD=1-6%ISR=F6-112%TI=Z%CI=RD%II=I%TS=A) OPS(O1=M564ST11NW2|M564ST11NW7%O2=M564ST11NW2|M564ST11NW7%O3=M564NNT11NW2|M564NNT11NW7%O4=M564ST11NW2|M564ST11NW7%O5=M564ST11NW2|M564ST11NW7%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31754,7 +31754,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-28-server #1 SMP Thu May 10 10:40:27 UTC 2007 i686 GNU/Linux (Ubuntu 6.06.1 LTS) Fingerprint Linux 2.6.11 - 2.6.20 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-D2%GCD=1-6%ISR=CE-D8%TI=Z%II=I%TS=7) OPS(O1=M556ST11NW2%O2=M556ST11NW2%O3=M556NNT11NW2%O4=M556ST11NW2%O5=M556ST11NW2%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31772,7 +31772,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.11-auditor-10 #8 on i686 Fingerprint Linux 2.6.11-auditor-10 (Auditor CD, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW2%O2=M400CST11NW2%O3=M400CNNT11NW2%O4=M400CST11NW2%O5=M400CST11NW2%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -31790,7 +31790,7 @@ IE(DFI=N%T=1B-25%TG=20%CD=S) # Linux 2.6.12.6-arm1-lacie5a #1 Tue Oct 31 11:26:21 CET 2006 armv5tejl unknown Fingerprint Linux 2.6.12 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C5-CF%TI=Z%CI=I%II=I%TS=7) OPS(O1=M558ST11NW1%O2=M558ST11NW1%O3=M558NNT11NW1%O4=M558ST11NW1%O5=M558ST11NW1%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31808,7 +31808,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux dlink-4A1E43 2.6.12.6-arm1 #47 Mon Nov 30 12:06:02 CST 2009 armv5tejl unknown Fingerprint Linux 2.6.12 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=CC-D6%TI=Z%CI=I%II=I%TS=7) OPS(O1=M174CST11NW1%O2=M174CST11NW1%O3=M174CNNT11NW1%O4=M174CST11NW1%O5=M174CST11NW1%O6=M174CST11) WIN(W1=2E80%W2=2E80%W3=2E80%W4=2E80%W5=2E80%W6=2E80) @@ -31829,7 +31829,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Encore Thin Client ENTC-1000 Firmware v1.22 Fingerprint Linux 2.6.12 - 2.6.14 (embedded) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B8-D2%GCD=1-6%ISR=BA-D6%TI=Z%CI=I%II=I%TS=7) OPS(O1=M5B4ST11NW2|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31847,7 +31847,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-4-xen-686 #1 SMP Thu May 10 03:24:35 UTC 2007 i686 GNU/Linux Fingerprint Linux 2.6.13 - 2.6.19 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B8-C2%GCD=1-6%ISR=CE-D8%TI=Z%II=I%TS=8) OPS(O1=M546ST11NW4%O2=M546ST11NW4%O3=M546NNT11NW4%O4=M546ST11NW4%O5=M546ST11NW4%O6=M546ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31865,7 +31865,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.19-gentoo-r5 i686 Pentium III (Katmai) GenuineIntel GNU/Linux Fingerprint Linux 2.6.13 - 2.6.20 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=C2-CC%TI=Z%II=I%TS=8) OPS(O1=M5B4NNT11NW2%O2=M5B4NNT11NW2%O3=M5B4NNT11NW2%O4=M5B4NNT11NW2%O5=M5B4NNT11NW2%O6=M5B4NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31902,7 +31902,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.43-0.4-default #1 SMP 2011-07-14 14:47:44 +0200 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.13 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AE-E2%GCD=1-6%ISR=B8-DB%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -31920,7 +31920,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.14-1.1653.1asp #1 Mon Jan 23 18:30:00 EET 2006 i686 i686 i386 GNU/Linux, ASPLinux release 11 (Seliger) Fingerprint Linux 2.6.14 (ASPLinux 11) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-C8%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M584ST11NW2%O2=M584ST11NW2%O3=M584NNT11NW2%O4=M584ST11NW2%O5=M584ST11NW2%O6=M584ST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -31939,7 +31939,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux hostname 2.6.18-92.1.10.el5PAE #1 SMP Wed Jul 23 04:10:43 EDT 2008 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.14 - 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BA-CC%GCD=1-6%ISR=BF-C9%TI=Z%II=I%TS=U) OPS(O1=M5B4NNS%O2=M5B4NNS%O3=M5B4%O4=M5B4NNS%O5=M5B4NNS%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -31964,7 +31964,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux storage 2.6.30.9 #1 PREEMPT Mon Jan 25 13:57:26 EST 2010 armv5tel GNU/Linux, Iomega iConnect Wireless Data Station Fingerprint Linux 2.6.14 - 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A7-CF%GCD=1-6%ISR=BD-D3%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW1|M5ACST11NW4|M5ACST11NW6|M5ACST11NW7%O2=M5ACST11NW1|M5ACST11NW4|M5ACST11NW6|M5ACST11NW7%O3=M5ACNNT11NW1|M5ACNNT11NW4|M5ACNNT11NW6|M5ACNNT11NW7%O4=M5ACST11NW1|M5ACST11NW4|M5ACST11NW6|M5ACST11NW7%O5=M5ACST11NW1|M5ACST11NW4|M5ACST11NW6|M5ACST11NW7%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -31988,7 +31988,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.34.7-0.7-default #1 SMP 2010-12-13 11:13:53 +0100 x86_64 x86_64 x86_64 GNU/Linux /openSUSE 11.3 (x86_64) Fingerprint Linux 2.6.14 - 2.6.34 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B6-D2%GCD=1-6%ISR=C3-D6%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW2|M400CST11NW5|M400CST11NW7%O2=M400CST11NW2|M400CST11NW5|M400CST11NW7%O3=M400CNNT11NW2|M400CNNT11NW5|M400CNNT11NW7%O4=M400CST11NW2|M400CST11NW5|M400CST11NW7%O5=M400CST11NW2|M400CST11NW5|M400CST11NW7%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -32006,7 +32006,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.14.7-5 #1 Fri Mar 17 14:56:43 CET 2006 i686 Celeron_(Covington) PLD Linux Fingerprint Linux 2.6.14.7 (PLD Linux, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-D1%GCD=1-6%ISR=C5-D9%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW1%O2=M400CST11NW1%O3=M400CNNT11NW1%O4=M400CST11NW1%O5=M400CST11NW1%O6=M400CST11) WIN(W1=4000%W2=4000%W3=4000%W4=4000%W5=4000%W6=4000) @@ -32024,7 +32024,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-gentoo-r2 #2 SMP PREEMPT Tue May 2 10:44:26 EDT 2006 i686 Pentium III (Coppermine) GNU/Linux Fingerprint Linux 2.6.15 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.15 +CPE cpe:/o:linux:linux_kernel:2.6.15 SEQ(SP=BA-C4%GCD=1-6%ISR=C5-CF%TI=Z%CI=I%II=I%TS=8) OPS(O1=M588ST11NW9%O2=M588ST11NW9%O3=M588NNT11NW9%O4=M588ST11NW9%O5=M588ST11NW9%O6=M588ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32042,7 +32042,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-52-server #1 SMP Fri Sep 5 15:20:44 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.15 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.15 +CPE cpe:/o:linux:linux_kernel:2.6.15 SEQ(SP=C0-CA%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW2%O2=M400CST11NW2%O3=M400CNNT11NW2%O4=M400CST11NW2%O5=M400CST11NW2%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -32060,7 +32060,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-53-server #1 SMP Mon Jan 26 00:23:24 UTC 2009 i686 GNU/Linux, Ubuntu GNU/Linux 6.06.2 LTS Fingerprint Linux 2.6.15 (Ubuntu 6.06) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.15 +CPE cpe:/o:linux:linux_kernel:2.6.15 SEQ(SP=C9-D3%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=7) OPS(O1=M5B4NNT11NW9%O2=M5B4NNT11NW9%O3=M5B4NNT11NW9%O4=M5B4NNT11NW9%O5=M5B4NNT11NW9%O6=M5B4NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32078,7 +32078,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-54-686 #1 SMP PREEMPT Thu Apr 2 20:34:48 UTC 2009 i686 GNU/Linux (Ubuntu Dapper) Fingerprint Linux 2.6.15 (Ubuntu) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.15 +CPE cpe:/o:linux:linux_kernel:2.6.15 SEQ(SP=C5-CF%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=8) OPS(O1=M584ST11NW2%O2=M584ST11NW2%O3=M584NNT11NW2%O4=M584ST11NW2%O5=M584ST11NW2%O6=M584ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32097,7 +32097,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.16.29-xen #1 SMP Sun Sep 30 04:00:13 UTC 2007 x86_64 GNU/Linux Fingerprint Linux 2.6.15 - 2.6.16 (Ubuntu) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-CB%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW2%O2=M400CST11NW2%O3=M400CNNT11NW2%O4=M400CST11NW2%O5=M400CST11NW2%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -32120,7 +32120,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux DD-WRT 2.6.24.111 #63 Wed Apr 20 21:53:08 CEST 2011 mips unknown Fingerprint Linux 2.6.15 - 2.6.24 (embedded) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AF-D1%GCD=1-6%ISR=BB-D5%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32145,7 +32145,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Edimax EW-7416APn V2 Firmware 1.04 Fingerprint Linux 2.6.15 - 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B2-D0%GCD=1-6%ISR=B8-D6%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32171,7 +32171,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Comtrend WAP-5813n wireless ADSL router Fingerprint Linux 2.6.15 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B4-D5%GCD=1-6%ISR=C4-DA%TI=Z%II=I%TS=8) OPS(O1=M5ACST11NW1|M5ACST11NW2|M5ACST11NW4|M5ACST11NW5|M5ACST11NW6|M5ACST11NW7|M5ACST11NW9%O2=M5ACST11NW1|M5ACST11NW2|M5ACST11NW4|M5ACST11NW5|M5ACST11NW6|M5ACST11NW7|M5ACST11NW9%O3=M5ACNNT11NW1|M5ACNNT11NW2|M5ACNNT11NW4|M5ACNNT11NW5|M5ACNNT11NW6|M5ACNNT11NW7|M5ACNNT11NW9%O4=M5ACST11NW1|M5ACST11NW2|M5ACST11NW4|M5ACST11NW5|M5ACST11NW6|M5ACST11NW7|M5ACST11NW9%O5=M5ACST11NW1|M5ACST11NW2|M5ACST11NW4|M5ACST11NW5|M5ACST11NW6|M5ACST11NW7|M5ACST11NW9%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -32193,7 +32193,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.15 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BD-CF%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M558ST11NW1|M558ST11NW2|M558ST11NW5|M558ST11NW6|M558ST11NW7%O2=M558ST11NW1|M558ST11NW2|M558ST11NW5|M558ST11NW6|M558ST11NW7%O3=M558NNT11NW1|M558NNT11NW2|M558NNT11NW5|M558NNT11NW6|M558NNT11NW7%O4=M558ST11NW1|M558ST11NW2|M558ST11NW5|M558ST11NW6|M558ST11NW7%O5=M558ST11NW1|M558ST11NW2|M558ST11NW5|M558ST11NW6|M558ST11NW7%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32220,7 +32220,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux Nokia-N900 2.6.28.10power37 #1 PREEMPT Wed May 26 00:24:03 EEST 2010 armv7l unknown Fingerprint Linux 2.6.15 - 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B4-D0%GCD=1-6%ISR=C2-D6%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32252,7 +32252,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.31.12-0.1-desktop #1 SMP PREEMPT 2010-01-27 08:20:11 +0100 x86_64 x86_64 x86_64 GNU/Linux SuSE 11.2 Fingerprint Linux 2.6.15 - 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B0-D2%GCD=1-6%ISR=BE-D8%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWB|M400CST11NWD%O2=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWB|M400CST11NWD%O3=M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9|M400CNNT11NWB|M400CNNT11NWD%O4=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWB|M400CST11NWD%O5=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWB|M400CST11NWD%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32270,7 +32270,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Ubuntu 6.06 (Dapper Drake ) - Kernel 2.6.15-27-386 - i686 GNU/Linux Fingerprint Linux 2.6.15-27 (Ubuntu 6.06) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.15-27 +CPE cpe:/o:linux:linux_kernel:2.6.15-27 SEQ(SP=C3-CD%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=U) OPS(O1=M400C%O2=M400C%O3=M400C%O4=M400C%O5=M400C%O6=M400C) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -32288,7 +32288,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-27-server #1 SMP Fri Dec 8 18:43:54 UTC 2006 i686 GNU/Linux Fingerprint Linux 2.6.15-27 (Ubuntu) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.15-27 +CPE cpe:/o:linux:linux_kernel:2.6.15-27 SEQ(SP=CA-D4%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32306,7 +32306,7 @@ IE(DFI=N%T=3B-3D%TG=40%CD=S) # Linux 2.6.15-28-amd64-server #1 SMP Thu May 10 09:58:22 UTC 2007 x86_64 GNU/Linux Ubuntu Fingerprint Linux 2.6.15-28-amd64-server (Ubuntu, x86_64, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=C2-CC%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32324,7 +32324,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.16.29-0.11.smp.gcc3.4.x86.i686.xen.domU #1 SMP Wed Dec 6 02:20:20 EST 2006 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.16 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.16 +CPE cpe:/o:linux:linux_kernel:2.6.16 SEQ(SP=C4-CE%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32342,7 +32342,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.16.46-O.12-smp #1 SMP Thu May 17 14:00:09 UTC 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.16 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.16 +CPE cpe:/o:linux:linux_kernel:2.6.16 SEQ(SP=C8-D2%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32360,7 +32360,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.16.60-0.76.8-xen #1 SMP Tue Jan 11 11:23:59 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.16 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(CI=Z%II=I) OPS(R=N) WIN(R=N) @@ -32378,7 +32378,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.16.60-0.21-smp #1 SMP Tue May 6 12:41:02 UTC 2008 x86_64 x86_64 x86_64 GNU/Linux, SUSE Linux Enterprise Server 10 SP2 Fingerprint Linux 2.6.16 (SUSE Linux Enterprise Server 10) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.16 +CPE cpe:/o:linux:linux_kernel:2.6.16 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NWC%O2=M5B4ST11NWC%O3=M5B4NNT11NWC%O4=M5B4ST11NWC%O5=M5B4ST11NWC%O6=M5B4ST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=16A0) @@ -32396,7 +32396,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.17.13 #1 PREEMPT Sat Sep 9 14:47:42 CEST 2006 i686 GNU/Linux Fingerprint Linux 2.6.16 - 2.6.20 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-D2%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M556ST11NW3%O2=M556ST11NW3%O3=M556NNT11NW3%O4=M556ST11NW3%O5=M556ST11NW3%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32415,7 +32415,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.25.20 #1 SMP Thu May 14 23:12:00 CEST 2009 i686 GenuineIntel unknown GNU/Linux :: ZeroShell - Net Services 1.0.beta13 Fingerprint Linux 2.6.16 - 2.6.25 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=C3-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW2|M5B4ST11NW5%O2=M5B4ST11NW2|M5B4ST11NW5%O3=M5B4NNT11NW2|M5B4NNT11NW5%O4=M5B4ST11NW2|M5B4ST11NW5%O5=M5B4ST11NW2|M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32441,7 +32441,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # TV samsung ue32d6500vs Fingerprint Linux 2.6.16 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D0%GCD=1-6%ISR=C6-D4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W1|W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32473,7 +32473,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux toaster 2.6.35.11 #1 Fri Mar 25 15:22:48 WET 2011 armv5tel GNU/Linux, DNS-323 Fingerprint Linux 2.6.16 - 2.6.35 (embedded) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BB-E3%GCD=1-6%ISR=BB-DF%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32491,7 +32491,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Fli4L 3.1.1 on WRAP-Board (Embeded) -- Linux version 2.6.16.27 (gcc version 3.4.4 20050314 (prerelease) (Debian 3.4.3-13)) #1 Tue Aug 29 13:59:47 CEST 2006 Fingerprint Linux 2.6.16.27 (fli4l 3.1.1) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.16-27 +CPE cpe:/o:linux:linux_kernel:2.6.16-27 SEQ(SP=F7-101%GCD=1-6%ISR=107-111%II=I%TS=0) OPS(O1=M5B4NW0NNT00NNS%O2=M5B4NW0NNT00NNS%O3=M5B4NW0NNT00%O4=M5B4NW0NNT00NNS%O5=M5B4NW0NNT00NNS%O6=M5B4NNT00NNS) WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=FFFF%W6=FFFF) @@ -32509,7 +32509,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.17-10-server #2 SMP Tue Dec 5 22:29:32 UTC 2006 i686 GNU/Linux Fingerprint Linux 2.6.17 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.17 +CPE cpe:/o:linux:linux_kernel:2.6.17 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=7) OPS(O1=M546ST11NW2%O2=M546ST11NW2%O3=M546NNT11NW2%O4=M546ST11NW2%O5=M546ST11NW2%O6=M546ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32527,7 +32527,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.17-6daniel #1 SMP Mon Dec 25 21:44:14 PST 2006 i686 Genuine Intel(R) CPU 2.80GHz GNU/Linux (Mandriva Linux 2007) Fingerprint Linux 2.6.17 (Mandriva) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.17 +CPE cpe:/o:linux:linux_kernel:2.6.17 SEQ(SP=C8-D2%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32546,7 +32546,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.21.5-smp #2 SMP Tue Jun 19 14:58:11 CDT 2007 i686 AMD Athlon(tm) 64 X2 Dual Core Processor 3600+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.17 - 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-CB%GCD=1-6%ISR=C8-D4%TI=Z%II=I%TS=8) OPS(O1=M400CNNT11%O2=M400CNNT11%O3=M400CNNT11%O4=M400CNNT11%O5=M400CNNT11%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32564,7 +32564,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Ubuntu 10.10 Fingerprint Linux 2.6.17 - 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CE%GCD=1-6%ISR=C6-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CNNT11%O2=M400CNNT11%O3=M400CNNT11%O4=M400CNNT11%O5=M400CNNT11%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32582,7 +32582,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-16-generic #2 SMP Thu Jun 7 20:19:32 UTC 2007 i686 GNU/Linux Fingerprint Linux 2.6.17 - 2.6.21 (x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-C3%GCD=1-6%ISR=BB-C5%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW4%O2=M400CST11NW4%O3=M400CNNT11NW4%O4=M400CST11NW4%O5=M400CST11NW4%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -32604,7 +32604,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # GNU/Linux 2.6.26.8.tex3 PCLinuxOS 2009.1 Fingerprint Linux 2.6.17 - 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BA-D0%GCD=1-6%ISR=C2-D6%TI=Z%II=I%TS=8) OPS(O1=M400CST11%O2=M400CST11%O3=M400CNNT11%O4=M400CST11%O5=M400CST11%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32629,7 +32629,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Wed Aug 19 06:06:52 UTC 2009 i686 GNU/Linux Debian testing Fingerprint Linux 2.6.17 - 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D3%GCD=1-6%ISR=BF-D4%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O2=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O3=M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9%O4=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O5=M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32648,7 +32648,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-gentoo #6 SMP Wed Jul 23 10:45:00 CEST 2008 x86_64 Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.17 - 2.6.26 (Gentoo, x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-C8%GCD=1-6%ISR=C9-D5%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -32671,7 +32671,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-7-generic #1 SMP Fri Oct 24 06:40:41 UTC 2008 x86_64 GNU/Linux | Kubuntu 8.10 Intepid Ibex amd64 Fingerprint Linux 2.6.17 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-CE%GCD=1-6%ISR=C4-D6%TI=Z%II=I%TS=U) OPS(O1=M400CNNSNW2|M400CNNSNW4|M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW9%O2=M400CNNSNW2|M400CNNSNW4|M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW9%O3=M400CNW2|M400CNW4|M400CNW5|M400CNW6|M400CNW7|M400CNW9%O4=M400CNNSNW2|M400CNNSNW4|M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW9%O5=M400CNNSNW2|M400CNNSNW4|M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW9%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -32705,7 +32705,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Cellular phone, Palm Pre, WebOS, Linux 2.6.24-palm-joplin-3430 #1 175.1.15 armv7l unknown Fingerprint Linux 2.6.17 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BA-D2%GCD=1-6%ISR=BE-D6%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O2=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O3=M400CNNT11NW1|M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW9%O4=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O5=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32741,7 +32741,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.30-ARCH #1 SMP PREEMPT Fri Jul 31 18:10:38 UTC 2009 i686 Intel(R) Core(TM)2 CPU T5600 @ 1.83GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.17 - 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B1-D2%GCD=1-6%ISR=B6-D7%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWA|M400CST11NWB%O2=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWA|M400CST11NWB%O3=M400CNNT11NW1|M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9|M400CNNT11NWA|M400CNNT11NWB%O4=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWA|M400CST11NWB%O5=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9|M400CST11NWA|M400CST11NWB%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -32771,7 +32771,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Google Nexus S Android 2.3.4 Fingerprint Linux 2.6.17 - 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B7-D4%GCD=1-6%ISR=B9-D8%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32789,7 +32789,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-24-generic-pea #41-Ubuntu SMP, Ubuntu 10.04.3 LTS Fingerprint Linux 2.6.17 - 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AE-D0%GCD=1-6%ISR=BE-D6%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M556ST11NW1|M556ST11NW2|M556ST11NW3|M556ST11NW4|M556ST11NW5|M556ST11NW6|M556ST11NW7|M556ST11NW8|M556ST11NW9%O2=M556ST11NW1|M556ST11NW2|M556ST11NW3|M556ST11NW4|M556ST11NW5|M556ST11NW6|M556ST11NW7|M556ST11NW8|M556ST11NW9%O3=M556NNT11NW1|M556NNT11NW2|M556NNT11NW3|M556NNT11NW4|M556NNT11NW5|M556NNT11NW6|M556NNT11NW7|M556NNT11NW8|M556NNT11NW9%O4=M556ST11NW1|M556ST11NW2|M556ST11NW3|M556ST11NW4|M556ST11NW5|M556ST11NW6|M556ST11NW7|M556ST11NW8|M556ST11NW9%O5=M556ST11NW1|M556ST11NW2|M556ST11NW3|M556ST11NW4|M556ST11NW5|M556ST11NW6|M556ST11NW7|M556ST11NW8|M556ST11NW9%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32813,7 +32813,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.38 Fingerprint Linux 2.6.17 - 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A5-D5%GCD=1-6%ISR=A7-D7%TI=Z%II=I%TS=U) OPS(O1=M400C%O2=M400C%O3=M400C%O4=M400C%O5=M400C%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -32831,7 +32831,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-3-686 #1 SMP Mon Dec 4 16:41:14 UTC 2006 i686 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=CA-D4%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32851,7 +32851,7 @@ IE(DFI=N%T=7B-85%TG=80%CD=S) # Linux 2.6.18-4-686 #1 SMP Wed Jun 6 08:11:18 UTC 2007 i686 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C7-D1%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32869,7 +32869,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-5-486 i586 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C2-CC%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32888,7 +32888,7 @@ IE(DFI=N%T=3D%TG=40%CD=S) # Linux kernel 2.6, Damn Vulnerable Linux 1.4. Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D1%TI=Z%TS=8) OPS(O1=M5B4ST11NW4|M5B4ST11NW5%O2=M5B4ST11NW4|M5B4ST11NW5%O3=M5B4NNT11NW4|M5B4NNT11NW5%O4=M5B4ST11NW4|M5B4ST11NW5%O5=M5B4ST11NW4|M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32906,7 +32906,7 @@ IE(R=N) # Linux 2.6.18-6-686 #1 SMP Sun Feb 10 22:11:31 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BB-D3%GCD=1-6%ISR=B8-D2%TI=Z%II=I%TS=8|A|B) OPS(O1=NNT11|M500ST11NW7%O2=M500ST11NW7%O3=M500NNT11NW7%O4=NNT11|M500ST11NW7%O5=NNT11|M500ST11NW7%O6=M500ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32924,7 +32924,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:37:32 EDT 2006 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BC-D0%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32942,7 +32942,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-6-xen-686 #1 SMP Mon Aug 18 12:56:50 UTC 2008 i686 GNU/Linux (Debian Etch) Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C0-CA%GCD=1-6%ISR=C8-D4%TI=Z%II=I%TS=8) OPS(O1=M320ST11NW3%O2=M320ST11NW3%O3=M320NNT11NW3%O4=M320ST11NW3%O5=M320ST11NW3%O6=M320ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32960,7 +32960,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.18.2-34-default #1 SMP Mon Nov 27 11:46:27 UTC 2006 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C7-D1%GCD=1-6%ISR=C5-CF%TI=Z%TS=8) OPS(O1=M5ACST11NW2%O2=M5ACST11NW2%O3=M5ACNNT11NW2%O4=M5ACST11NW2%O5=M5ACST11NW2%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -32979,7 +32979,7 @@ IE(R=N) # Linux 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 GNU/Linux /Distro: Debian 5.0 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C2-CC%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4|M5B4ST11NW7%O2=M5B4ST11NW4|M5B4ST11NW7%O3=M5B4NNT11NW4|M5B4NNT11NW7%O4=M5B4ST11NW4|M5B4ST11NW7%O5=M5B4ST11NW4|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -32997,7 +32997,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-128.1.6.el5 #1 SMP Wed Apr 1 09:19:18 EDT 2009 i686 i686 i386 GNU/Linux, CentOS 5.3; over VPN connection Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BB-C5%GCD=1-6%ISR=C1-CB%TI=Z%II=I%TS=A|C) OPS(O1=M546ST11NW9%O2=M546ST11NW9%O3=M546NNT11NW9%O4=M546ST11NW9%O5=M546ST11NW9%O6=M546ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33015,7 +33015,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.18-92.cc4 (SMP), ClarkConnect Community Edition 4.3 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C5-CF%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33033,7 +33033,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-128.7.1.el5 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C1-CB%GCD=1-6%ISR=CC-D6%TI=Z%TS=B) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33051,7 +33051,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-128.4.1.el5 #1 SMP Tue Aug 4 20:23:34 EDT 2009 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=B7-CF%GCD=1-6%ISR=C4-D2%TI=Z%II=I%TS=8) OPS(O1=M5ACST11NW5|M5ACST11NW7%O2=M5ACST11NW5|M5ACST11NW7%O3=M5ACNNT11NW5|M5ACNNT11NW7%O4=M5ACST11NW5|M5ACST11NW7%O5=M5ACST11NW5|M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33069,7 +33069,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-164.el5 #1 SMP Thu Sep 3 03:33:56 EDT 2009 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=B7-CF%GCD=1-6%ISR=C4-D2%TI=Z%II=I%TS=A) OPS(O1=M5ACST11NW5|M5ACST11NW7%O2=M5ACST11NW5|M5ACST11NW7%O3=M5ACNNT11NW5|M5ACNNT11NW7%O4=M5ACST11NW5|M5ACST11NW7%O5=M5ACST11NW5|M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33087,7 +33087,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-6-ixp4xx #1 Wed May 6 00:18:36 BST 2009 armv5tel GNU/Linux, NSLU2 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C6-D0%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNS%O2=M5B4NNS%O3=M5B4%O4=M5B4NNS%O5=M5B4NNS%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -33105,7 +33105,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-164.6.1.el5 #1 SMP Tue Nov 3 16:18:27 EST 2009 i686 i686 i386 GNU/Linux (CentOS release 5.4 (Final)) Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C2-CC%GCD=1-6%ISR=C3-CD%TI=Z%CI=Z%II=I%TS=9) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33123,7 +33123,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18.8.xs5.5.0.13.442 #1 SMP Wed Nov 11 12:01:55 UTC 2009 i686 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C0-CA%GCD=1-6%ISR=C6-D0%TI=Z%TS=7) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33141,7 +33141,7 @@ IE(R=N) # Linux 2.6.18-164.11.1.el5 #1 SMP Wed Jan 20 07:39:04 EST 2010 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C8-D2%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M584ST11NW7%O2=M584ST11NW7%O3=M584NNT11NW7%O4=M584ST11NW7%O5=M584ST11NW7%O6=M584ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33161,7 +33161,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # infoblox nios 4.7.3 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BA-D0%GCD=1-6%ISR=C3-D7%TI=Z%CI=RD|RI%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33179,7 +33179,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-128.1.10.el5.xs5.5.0.51xen #1 SMP Fri May 29 07:20:04 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux (CentOS 5.3) Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C1-CB%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33197,7 +33197,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-128.1.10.el5 #1 SMP Thu May 7 10:39:21 EDT 2009 i686 i686 i386 GNU/LinuxCentOS 5 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BC-C6%GCD=1-6%ISR=C2-CC%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M526ST11NW4%O2=M526ST11NW4%O3=M526NNT11NW4%O4=M526ST11NW4%O5=M526ST11NW4%O6=M526ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33215,7 +33215,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # CentOS 5.4 2.6.18 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=FD-107%GCD=1-6%ISR=101-10B%TI=Z%II=I%TS=A) OPS(O1=M564NNT11NW7%O2=M564NNT11NW7%O3=M564NNT11NW7%O4=M564NNT11NW7%O5=M564NNT11NW7%O6=M564NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33235,7 +33235,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux version 2.6.8.1 (user@ubuntu) (gcc version 3.4.2) #2 Thu May 20 23:05:14 CEST 2010, DGTeam Custom Firmware Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=B8-D8%GCD=1-6%ISR=C7-D1%TI=Z%CI=I%II=I%TS=U) OPS(O1=M5B4NNSNW7%O2=M5B4NNSNW7%O3=M5B4NW7%O4=M5B4NNSNW7%O5=M5B4NNSNW7%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -33253,7 +33253,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-194.26.1.el5 #1 SMP Tue Nov 9 12:54:40 EST 2010 i686 i686 i386 GNU/Linux / CentOS release 5.5 (Final) Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=CB-D5%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M556ST11NW4%O2=M556ST11NW4%O3=M556NNT11NW4%O4=M556ST11NW4%O5=M556ST11NW4%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33271,7 +33271,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-194.32.1.el5 #1 SMP Wed Jan 5 17:52:25 EST 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BA-C4%GCD=1-6%ISR=C0-CA%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33289,7 +33289,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-194.el5 #1 SMP x86_64 x86_64 x86_64 GNU/Linux Redhat Enterprise Linux 5.5 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=FD-107%GCD=1-6%ISR=105-111%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW7%O2=M564ST11NW7%O3=M564NNT11NW7%O4=M564ST11NW7%O5=M564ST11NW7%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33307,7 +33307,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.18-8.1.14.el5_lustre.1.6.4.2smp #1 SMP Wed Jan 16 20:36:15 EST 2008 x86_64 x86_64 x86_64 GNU/Linux CentOS release 5 Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C2-CC%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M558ST11NW7%O2=M558ST11NW7%O3=M558NNT11NW7%O4=M558ST11NW7%O5=M558ST11NW7%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33325,7 +33325,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-274.7.1.el5PAE #1 SMP Thu Oct 20 17:03:59 EDT 2011 i686 i686 i386 GNU/Linux, Blade in Fujitsu BX600 Blade-rack Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=102-10C%GCD=1-6%ISR=108-112%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33343,7 +33343,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-274.7.1.el5PAE #1 SMP Mon Oct 17 12:05:46 EDT 2011 i686 i686 i386 GNU/Linux, Red Hat Enterprise Linux Client release 5.7 (Tikanga) Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=102-10C%GCD=1-6%ISR=107-111%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33361,7 +33361,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-274.12.1.el5 #1 SMP Tue Nov 29 13:37:35 EST 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=101-10B%GCD=1-6%ISR=103-10D%TI=Z%CI=Z%TS=A|C) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33379,7 +33379,7 @@ IE(R=N) # CentOS 5: Linux 2.6.18-53.1.4.el5 #1 SMP Fri Nov 30 00:45:16 EST 2007 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.18 (CentOS 5) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C5-CF%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33397,7 +33397,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-8.1.4.el5 #1 SMP x86_64 GNU/Linux - CentOS release 5 (Final) Fingerprint Linux 2.6.18 (CentOS 5, x86_64, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C6-D0%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=M400CNNT11NW7%O2=M400CNNT11NW7%O3=M400CNNT11NW7%O4=M400CNNT11NW7%O5=M400CNNT11NW7%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33415,7 +33415,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # CentOS5 Linux 2.6.18-8.1.4.el5 #1 SMP Thu May 17 03:16:52 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18 (CentOS 5, x86_64, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C1-CB%GCD=1-6%ISR=C7-D3%TI=Z%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33433,7 +33433,7 @@ IE(R=N) # Linux 2.6.18-92.1.13.el5 #1 SMP Wed Sep 24 19:33:52 EDT 2008 i686 i686 i386 GNU/Linux, CentOS 5.2 Fingerprint Linux 2.6.18 (CentOS 5.2) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BD-C7%GCD=1-6%ISR=C6-D0%TI=Z%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33451,7 +33451,7 @@ IE(R=N) # Linux 2.6.18-128.1.6.el5 #1 SMP Wed Apr 1 09:19:18 EDT 2009 i686 i686 i386 GNU/Linux Centos 5.3 Fingerprint Linux 2.6.18 (Centos 5.3) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C5-CF%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33469,7 +33469,7 @@ IE(DFI=N%T=42%TG=40%CD=S) # Linux 2.6.18-164.11.1.el5xen #1 SMP Wed Jan 20 08:06:04 EST 2010 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18 (CentOS 5.4) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C0-D2%GCD=1-6%ISR=C5-DB%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33487,7 +33487,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-93.cc4 #1 SMP Mon Aug 11 20:37:16 EDT 2008 i686 i686 i386 GNU/Linux (ClarkConnect 4.3 Enterprise Edition) Fingerprint Linux 2.6.18 (ClarkConnect 4.3 Enterprise Edition) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BE-C8%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33505,7 +33505,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.18-6-686 #1 SMP i686 GNU\Linux (VMware, Debian 4, network supervising) Fingerprint Linux 2.6.18 (Debian 4, VMware) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C4-CE%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=4|5) OPS(O1=M5B4ST11NW3%O2=M5B4ST11NW3%O3=M5B4NNT11NW3%O4=M5B4ST11NW3%O5=M5B4ST11NW3%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33523,7 +33523,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-4-686 Debian 4.0 Fingerprint Linux 2.6.18 (Debian 4.0, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BE-C8%GCD=1-6%ISR=C0-CA%TI=Z%II=I%TS=8) OPS(O1=M5ACST11NW2%O2=M5ACST11NW2%O3=M5ACNNT11NW2%O4=M5ACST11NW2%O5=M5ACST11NW2%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -33541,7 +33541,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # uname -a :: Linux 2.6.18-4-486 #1 Mon Mar 26 16:39:10 UTC 2007 i586 GNU/Linux Fingerprint Linux 2.6.18 (Debian, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D1%TI=Z%TS=8) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33559,7 +33559,7 @@ IE(R=N) # Slackware-11.0 Linux thot 2.6.18 #2 PREEMPT Mon Oct 16 15:03:18 CEST 2006 i686 athlon-4 i386 GNU/Linux Fingerprint Linux 2.6.18 (Slackware 11.0) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C4-CE%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M400CNNT11%O2=M400CNNT11%O3=M400CNNT11%O4=M400CNNT11%O5=M400CNNT11%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33577,7 +33577,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-ARCH #1 SMP PREEMPT Fingerprint Linux 2.6.18 (SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C0-CA%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=MFFD7ST11NW7%O2=MFFD7ST11NW7%O3=MFFD7NNT11NW7%O4=MFFD7ST11NW7%O5=MFFD7ST11NW7%O6=MFFD7ST11) WIN(W1=FFCB%W2=FFCB%W3=FFCB%W4=FFCB%W5=FFCB%W6=FFCB) @@ -33595,7 +33595,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-4-amd64 #1 SMP Mon Apr 9 11:23:01 PDT 2007 x86_64 GNU/Linux Fingerprint Linux 2.6.18 (x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C1-CB%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=8) OPS(O1=M2300ST11NW7%O2=M2300ST11NW7%O3=M2300NNT11NW7%O4=M2300ST11NW7%O5=M2300ST11NW7%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -33616,7 +33616,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # CentOS release 5.3 (Final) Fingerprint Linux 2.6.18 - 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D3%GCD=1-6%ISR=CB-D9%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33635,7 +33635,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-18-generic #1 SMP Wed May 28 20:27:26 UTC 2008 i686 GNU/Linux Ubuntu 8.04.1 Fingerprint Linux 2.6.18 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D1%GCD=1-6%ISR=C3-D1%TI=Z%II=I%TS=8) OPS(O1=M538ST11NW7%O2=M538ST11NW7%O3=M538NNT11NW7%O4=M538ST11NW7%O5=M538ST11NW7%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33654,7 +33654,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux ubuntu 2.6.24-18-server Fingerprint Linux 2.6.18 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C9-DF%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33673,7 +33673,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-128.4.1.el5 #1 SMP Tue Aug 4 20:23:34 EDT 2009 i686 i686 i386 GNU/Linux, CentOS 5.3 Fingerprint Linux 2.6.18 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C2-D0%GCD=1-6%ISR=C5-D3%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW4|M400CST11NW7%O2=M400CST11NW4|M400CST11NW7%O3=M400CNNT11NW4|M400CNNT11NW7%O4=M400CST11NW4|M400CST11NW7%O5=M400CST11NW4|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33691,7 +33691,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-194.26.1.el5 #1 SMP Tue Nov 9 12:54:20 EST 2010 x86_64 x86_64 x86_64 GNU/Linux/ CentOS 5.5 Fingerprint Linux 2.6.18 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33710,7 +33710,7 @@ IE(R=N) # 2.6.18-164.15.1.el5.028stab068.9 #1 SMP Tue Mar 30 18:07:38 MSD 2010 x86_64 GNU/Linux Debian Lenny Fingerprint Linux 2.6.18 - 2.6.25 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33729,7 +33729,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-1-686 #1 SMP Thu Aug 28 12:00:54 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.18 - 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BC-DC%GCD=1-6%ISR=BC-D6%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33752,7 +33752,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-11-generic #1 SMP Thu Jan 29 19:28:32 UTC 2009 x86_64 GNU/Linux /Ubuntu 8.10 Fingerprint Linux 2.6.18 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B4-D2%GCD=1-6%ISR=B4-D4%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M536ST11NW7%O2=M536ST11NW7%O3=M536NNT11NW7%O4=M536ST11NW7%O5=M536ST11NW7%O6=M536ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33772,7 +33772,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-7-generic #1 SMP Tue Nov 4 19:33:20 UTC 2008 i686 GNU/Linux / Ubuntu 8.10 Hardy Heron Fingerprint Linux 2.6.18 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=BF-D9%TI=Z%II=I%TS=U) OPS(O1=M400CNNS%O2=M400CNNS%O3=M400C%O4=M400CNNS%O5=M400CNNS%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -33791,7 +33791,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 12:03:43 EST 2008 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-D5%GCD=1-6%ISR=C7-DB%TI=Z%II=I%TS=A) OPS(O1=M400CST11%O2=M400CST11%O3=M400CNNT11%O4=M400CST11%O5=M400CST11%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33810,7 +33810,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:14 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux (CentOS 5.5) Fingerprint Linux 2.6.18 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A1-AD%GCD=1-6%ISR=B0-DC%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33837,7 +33837,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31-14-generic #48-Ubuntu SMP i686 GNU/Linux Fingerprint Linux 2.6.18 - 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B4-D2%GCD=1-6%ISR=C3-D5%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW2|M5B4NNSNW4|M5B4NNSNW5|M5B4NNSNW6|M5B4NNSNW7|M5B4NNSNW9%O2=M5B4NNSNW2|M5B4NNSNW4|M5B4NNSNW5|M5B4NNSNW6|M5B4NNSNW7|M5B4NNSNW9%O3=M5B4NW2|M5B4NW4|M5B4NW5|M5B4NW6|M5B4NW7|M5B4NW9%O4=M5B4NNSNW2|M5B4NNSNW4|M5B4NNSNW5|M5B4NNSNW6|M5B4NNSNW7|M5B4NNSNW9%O5=M5B4NNSNW2|M5B4NNSNW4|M5B4NNSNW5|M5B4NNSNW6|M5B4NNSNW7|M5B4NNSNW9%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -33859,7 +33859,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-164.el5.plus #1 SMP Mon Sep 7 08:45:43 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C9-D3%GCD=1-6%ISR=C7-D8%TI=Z%II=I%TS=8|A) OPS(O1=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW4|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33878,9 +33878,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux orthrus 3.1.0.naoliv #1 SMP PREEMPT Mon Oct 24 22:33:21 BRST 2011 i686 GNU/Linux, Debian Fingerprint Linux 2.6.18 - 3.1 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=ED-10D%GCD=1-6%ISR=105-111%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW4%O2=M400CST11NW4%O3=M400CNNT11NW4%O4=M400CST11NW4%O5=M400CST11NW4%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -33898,7 +33898,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-8.el5xen #1 SMP Fri Jan 26 14:42:21 EST 2007 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.18-8.el5 (Red Hat Enterprise Linux 5) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-D2%GCD=1-6%ISR=C7-D1%TI=Z%TS=8|B) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33916,7 +33916,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-8.el5 #1 SMP Fri Jan 26 14:15:14 EST 2007 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18-8.el5 (Red Hat Enterprise Linux 5, x86_64, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=A) OPS(O1=M230EST11NW7%O2=M230EST11NW7%O3=M230ENNT11NW7%O4=M230EST11NW7%O5=M230EST11NW7%O6=M230EST11) WIN(W1=4604%W2=4604%W3=4604%W4=4604%W5=4604%W6=4604) @@ -33934,7 +33934,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-8.el5 #1 SMP Fri Jan 26 14:15:14 EST 2007 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18-8.el5 (Red Hat Enterprise Linux Server 5, x86_64, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-C3%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=M230EST11NW5%O2=M230EST11NW5%O3=M230ENNT11NW5%O4=M230EST11NW5%O5=M230EST11NW5%O6=M230EST11) WIN(W1=4604%W2=4604%W3=4604%W4=4604%W5=4604%W6=4604) @@ -33952,7 +33952,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-em64t (x86-64) Fingerprint Linux 2.6.18-em64t (x86-64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-D3%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=8) OPS(O1=M556ST11NW7%O2=M556ST11NW7%O3=M556NNT11NW7%O4=M556ST11NW7%O5=M556ST11NW7%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33970,7 +33970,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18.5-prueba-nfs #1 SMP Wed Dec 13 15:24:54 CET 2006 i686 GNU/Linux - Ubuntu 6.10 Fingerprint Linux 2.6.18.5 (Ubuntu, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18.5 +CPE cpe:/o:linux:linux_kernel:2.6.18.5 SEQ(SP=C4-CE%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=7) OPS(O1=M576ST11NW7%O2=M576ST11NW7%O3=M576NNT11NW7%O4=M576ST11NW7%O5=M576ST11NW7%O6=M576ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -33988,7 +33988,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # OpenSuSE Linux 10.2 kernel 2.6.18.8-0.1-default #1 SMP Fri Mar 2 13:51:59 UTC 2007 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.18.8 (openSUSE 10.2) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18.8 +CPE cpe:/o:linux:linux_kernel:2.6.18.8 SEQ(SP=C5-CF%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW3%O2=M5B4ST11NW3%O3=M5B4NNT11NW3%O4=M5B4ST11NW3%O5=M5B4ST11NW3%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34006,7 +34006,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # OpenSUSE 10.2 Linux linux 2.6.18.8-0.3-default #1 SMP Tue Apr 17 08:42:35 UTC 2007i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.18.8 (openSUSE 10.2, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.18.8 +CPE cpe:/o:linux:linux_kernel:2.6.18.8 SEQ(SP=C5-CF%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34024,7 +34024,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18.pi #1 PREEMPT Fri Apr 13 17:52:15 BST 2007 i686 GNU/Linux Fingerprint Linux 2.6.18.pi (x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-C3%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=8) OPS(O1=M564ST11NW6%O2=M564ST11NW6%O3=M564NNT11NW6%O4=M564ST11NW6%O5=M564ST11NW6%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34042,7 +34042,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.19-gentoo-r5 #2 SMP Mon Apr 2 18:02:30 SAST 2007 i686 Intel(R) Pentium(R) 4 CPU 2.40GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.19 (Gentoo) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.19 +CPE cpe:/o:linux:linux_kernel:2.6.19 SEQ(SP=C7-D1%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=7) OPS(O1=M4E7ST11NW2%O2=M4E7ST11NW2%O3=M4E7NNT11NW2%O4=M4E7ST11NW2%O5=M4E7ST11NW2%O6=M4E7ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34064,7 +34064,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-28-generic #55-Ubuntu SMP Mon Jan 10 21:21:01 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.19 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D4%GCD=1-6%ISR=C0-D6%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -34091,7 +34091,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-22-generic #35-Ubuntu SMP Sat Oct 16 20:45:36 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.19 - 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B4-D3%GCD=1-6%ISR=BB-D7%TI=Z%CI=Z%II=I%TS=7|8|A) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34121,7 +34121,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39-2-amd64 #1 SMP Tue Jul 5 02:51:22 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.19 - 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B0-D1%GCD=1-6%ISR=B8-D7%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O2=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O3=M400CNNT11NW2|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW9%O4=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O5=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34149,9 +34149,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0-rc2 Fingerprint Linux 2.6.19 - 3.0 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=A6-D4%GCD=1-6%ISR=BE-D9%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O2=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O3=M400CNNT11NW2|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9%O4=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O5=M400CST11NW2|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34169,7 +34169,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-15-server Ubuntu Server 7.04 Fingerprint Linux 2.6.20 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.20 +CPE cpe:/o:linux:linux_kernel:2.6.20 SEQ(SP=C1-CB%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34187,7 +34187,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-gentoo-r8 #1 SMP Sat Jun 23 12:09:34 CEST 2007 i686 Intel(R) Celeron(R) CPU 2.40GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.20 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.20 +CPE cpe:/o:linux:linux_kernel:2.6.20 SEQ(SP=BD-C7%GCD=1-6%ISR=C0-CA%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW5%O2=M400CST11NW5%O3=M400CNNT11NW5%O4=M400CST11NW5%O5=M400CST11NW5%O6=M400CST11) WIN(W1=C00%W2=C00%W3=C00%W4=C00%W5=C00%W6=C00) @@ -34205,7 +34205,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-16-generic #2 SMP Thu Aug 30 23:16:15 UTC 2007 x86_64 GNU/Linux Fingerprint Linux 2.6.20 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.20 +CPE cpe:/o:linux:linux_kernel:2.6.20 SEQ(SP=C8-D2%GCD=1-6%ISR=CF-D9%TI=Z%TS=8|A|B) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34223,7 +34223,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-16-generic #2 SMP Tue Feb 12 02:11:24 UTC 2008 x86_64 GNU/Linux (Ubuntu Feisty Fawn AMD64 Desktop) Fingerprint Linux 2.6.20 (Ubuntu, x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.20 +CPE cpe:/o:linux:linux_kernel:2.6.20 SEQ(SP=CA-D4%GCD=1-6%ISR=CA-D4%TI=Z%TS=8|A) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34242,7 +34242,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-16-server #2 SMP Thu Jun 7 20:26:23 UTC 2007 i686 GNU/Linux / Ubuntu 7.04 server Fingerprint Linux 2.6.20 - 2.6.24 (Ubuntu 7.04 - 8.04) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-D2%GCD=1-6%ISR=C4-D5%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34262,7 +34262,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.25-gentoo-r7 #6 Sat Sep 27 21:20:53 EDT 2008 i686 Celeron (Mendocino) GenuineIntel GNU/Linux Fingerprint Linux 2.6.20 - 2.6.25 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AF-C9%GCD=1-6%ISR=BE-DA%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW5|M400CST11NW7%O2=M400CST11NW5|M400CST11NW7%O3=M400CNNT11NW5|M400CNNT11NW7%O4=M400CST11NW5|M400CST11NW7%O5=M400CST11NW5|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34282,7 +34282,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.20 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CC%GCD=1-6%ISR=C0-CE%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M488ST11NW2|M488ST11NW4%O2=M488ST11NW2|M488ST11NW4%O3=M488NNT11NW2|M488NNT11NW4%O4=M488ST11NW2|M488ST11NW4%O5=M488ST11NW2|M488ST11NW4%O6=M488ST11) WIN(W1=11F0%W2=11F0%W3=11F0%W4=11F0%W5=11F0%W6=11F0) @@ -34300,7 +34300,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-1 (Fedora Core 5) Fingerprint Linux 2.6.20-1 (Fedora Core 5) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.20-1 +CPE cpe:/o:linux:linux_kernel:2.6.20-1 SEQ(SP=BD-CD%GCD=1-6%ISR=C7-D7%TI=Z%II=I%TS=A) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34318,7 +34318,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20-15-generic #2 SMP Sun Apr 15 07:36:31 UTC 2007 i686 GNU/Linux Fingerprint Linux 2.6.20-15-generic (x86, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-CB%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW9%O2=M5B4ST11NW9%O3=M5B4NNT11NW9%O4=M5B4ST11NW9%O5=M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34336,7 +34336,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Linux 2.6.20-gentoo-r8 #1 SMP Tue May 22 14:38:14 CDT 2007 i686 Pentium II (Deschutes) GenuineIntel GNU/Linux Fingerprint Linux 2.6.20-gentoo-r8 (Gentoo, x86, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=C4-D8%TI=Z%TS=8|9) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34354,7 +34354,7 @@ IE(R=N) # Linux 2.6.20-grml #1 SMP PREEMPT Thu May 3 20:20:41 CEST 2007 i686 GNU/Linux Fingerprint Linux 2.6.20-grml Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A2-AC%GCD=1-6%ISR=C1-CB%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34372,7 +34372,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.20.6-chef #4 PREEMPT Thu Jul 5 17:15:42 EDT 2007 i686 athlon-4 i386 GNU/Linux Fingerprint Linux 2.6.20.6 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.20.6 +CPE cpe:/o:linux:linux_kernel:2.6.20.6 SEQ(SP=C1-CB%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=U) OPS(O1=M5ACNNSNW5%O2=M5ACNNSNW5%O3=M5ACNW5%O4=M5ACNNSNW5%O5=M5ACNNSNW5%O6=M5ACNNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -34390,7 +34390,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.21.3 #1 SMP PREEMPT Mon May 28 20:42:52 CEST 2007 i686 Intel(R) Celeron(TM) CPU 1000MHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.21 +CPE cpe:/o:linux:linux_kernel:2.6.21 SEQ(SP=BA-CE%GCD=1-6%ISR=C8-D4%TI=Z%II=I%TS=8|A) OPS(O1=M559ST11NW5%O2=M559ST11NW5%O3=M559NNT11NW5%O4=M559ST11NW5%O5=M559ST11NW5%O6=M559ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34408,7 +34408,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.21.1 #6 Fri Apr 18 03:37:26 CEST 2008 i686 i686 i386 GNU/Linux (Linux From Scratch) Fingerprint Linux 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.21 +CPE cpe:/o:linux:linux_kernel:2.6.21 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M5A8ST11NW4%O2=M5A8ST11NW4%O3=M5A8NNT11NW4%O4=M5A8ST11NW4%O5=M5A8ST11NW4%O6=M5A8ST11) WIN(W1=1670%W2=1670%W3=1670%W4=1670%W5=1670%W6=1670) @@ -34426,7 +34426,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.21.4-eeepc #6 Mon May 5 11:38:34 EDT 2008 i686 GNU/Linux Fingerprint Linux 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.21 +CPE cpe:/o:linux:linux_kernel:2.6.21 SEQ(SP=C4-CE%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=6) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34444,7 +34444,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # ARCHLINUX 0.8 - 2.6.21-ARCH #1 SMP PREEMPT Sat May 5 15:01:53 CEST 2007 i686 Intel(R) Celeron(TM) CPU Fingerprint Linux 2.6.21 (Arch Linux 0.8, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.21 +CPE cpe:/o:linux:linux_kernel:2.6.21 SEQ(SP=C5-CF%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34464,7 +34464,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-11-generic #1 SMP Thu Jan 29 19:28:32 UTC 2009 x86_64 GNU/Linux Fingerprint Linux 2.6.21 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-D4%GCD=1-6%ISR=CB-D7%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O2=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O5=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34484,7 +34484,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-12-generic #43-Ubuntu SMP Fri May 1 19:27:06 UTC 2009 i686 GNU/Linux (Ubuntu Jaunty) Fingerprint Linux 2.6.21 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CA%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW6|M400CST11NW7%O2=M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW6|M400CST11NW7%O5=M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34502,7 +34502,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.21-gentoo-r4 #6 Fri Jul 20 11:57:41 EDT 2007 ppc 740/750 PowerMac1,1 GNU/Linux Fingerprint Linux 2.6.21-gentoo-r4 (PowerPC) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-C9%GCD=1-6%ISR=CA-D4%TI=Z%TS=8) OPS(O1=M564ST11NW5%O2=M564ST11NW5%O3=M564NNT11NW5%O4=M564ST11NW5%O5=M564ST11NW5%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34520,7 +34520,7 @@ IE(R=N) # Linux 2.6.21.1 #1 Tue May 8 17:34:06 EDT 2007 x86_64 GNU/Linux Fingerprint Linux 2.6.21.1 (x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.21.1 +CPE cpe:/o:linux:linux_kernel:2.6.21.1 SEQ(SP=FF-109%GCD=1-6%ISR=104-10E%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34542,7 +34542,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic (buildd@terranova) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=A2-D8%GCD=1-6%ISR=E9-FF%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW2|M400CST11NW3|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O2=M400CST11NW2|M400CST11NW3|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O3=M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9%O4=M400CST11NW2|M400CST11NW3|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O5=M400CST11NW2|M400CST11NW3|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34563,7 +34563,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.22-gentoo-r9 Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CA-D6%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW5|M400CST11NW6|M400CST11NW7%O2=M400CST11NW5|M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW5|M400CST11NW6|M400CST11NW7%O5=M400CST11NW5|M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34583,7 +34583,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C0-D7%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW4%O2=M400CST11NW4%O3=M400CNNT11NW4%O4=M400CST11NW4%O5=M400CST11NW4%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34601,7 +34601,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.4-65.fc7 #1 SMP Tue Aug 21 22:36:56 EDT 2007 i686 i686 i386 GNU/Linux (Fedora 7) Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C2-CE%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW5%O2=M400CST11NW5%O3=M400CNNT11NW5%O4=M400CST11NW5%O5=M400CST11NW5%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34619,7 +34619,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22 #1 SMP PREEMPT Sat Aug 25 22:45:11 BRT 2007 i686 Debian GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CB-D5%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW5%O2=M400CST11NW5%O3=M400CNNT11NW5%O4=M400CST11NW5%O5=M400CST11NW5%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34637,7 +34637,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-gentoo-r2 #3 SMP Tue Aug 21 12:27:56 x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CF-D9%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -34655,7 +34655,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-2-ixp4xx #1 Mon Sep 17 17:03:03 UTC 2007 armv5tel GNU/Linux/Debian (Debian experimental ARM EABI port on a Linksys NSLU2 device.) Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=A7-101%GCD=1-6%ISR=EA-FE%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW1%O2=M400CST11NW1%O3=M400CNNT11NW1%O4=M400CST11NW1%O5=M400CST11NW1%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34673,7 +34673,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=BF-C9%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34694,7 +34694,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux sheeva 2.6.22.18 #1 Thu Mar 19 14:46:22 IST 2009 armv5tejl GNU/Linux (Marvell SheevaPlug running stock Ubuntu) Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=B2-100%GCD=1-6%ISR=EA-FE%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1|M5B4NNSNW5|M5B4NNSNW7%O2=M5B4NNSNW1|M5B4NNSNW5|M5B4NNSNW7%O3=M5B4NW1|M5B4NW5|M5B4NW7%O4=M5B4NNSNW1|M5B4NNSNW5|M5B4NNSNW7%O5=M5B4NNSNW1|M5B4NNSNW5|M5B4NNSNW7%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -34712,7 +34712,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-server #1 SMP Sun Oct 14 23:34:23 GMT 2007 i686 GNU/Linux / Ubuntu-Server 7.10 Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CD-D7%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M5ACST11NW2%O2=M5ACST11NW2%O3=M5ACNNT11NW2%O4=M5ACST11NW2%O5=M5ACST11NW2%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -34730,7 +34730,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.7 #3 PREEMPT Wed Oct 31 19:18:27 MSK 2007 i686 GNU/Linux, Debian GNU/Linux lenny/sid Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CB-D7%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M5ACST11NW6%O2=M5ACST11NW6%O3=M5ACNNT11NW6%O4=M5ACST11NW6%O5=M5ACST11NW6%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34750,7 +34750,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Tue Dec 18 05:28:27 UTC 2007 x86_64 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CF-D9%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW4|M400CST11NW6|M400CST11NW7%O2=M400CST11NW4|M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW4|M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW4|M400CST11NW6|M400CST11NW7%O5=M400CST11NW4|M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34768,7 +34768,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.6 #1 Sun Sep 16 19:12:04 EDT 2007 i686 athlon-4 i386 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CC-D6%GCD=1-6%ISR=EA-F4%TI=Z%TS=U) OPS(O1=M5B4NNSNW5%O2=M5B4NNSNW5%O3=M5B4NW5%O4=M5B4NNSNW5%O5=M5B4NNSNW5%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -34786,7 +34786,7 @@ IE(R=N) # Linux 2.6.22.16-0.1-default #1 SMP 2008/01/23 14:28:52 UTC x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=Z%TS=8) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34804,7 +34804,7 @@ IE(R=N) # Linux 2.6.22-14-rt #1 SMP PREEMPT RT Tue Feb 12 09:57:10 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CB-F5%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M557ST11NW6%O2=M557ST11NW6%O3=M557NNT11NW6%O4=M557ST11NW6%O5=M557ST11NW6%O6=M557ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34822,7 +34822,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux (Ubuntu Gutsy Gibbon 7.10) Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C9-D3%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW5%O2=M400CST11NW5%O3=M400CNNT11NW5%O4=M400CST11NW5%O5=M400CST11NW5%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -34840,7 +34840,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-server #1 SMP Tue Feb 12 08:27:05 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CC-D6%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW4%O2=M400CST11NW4%O3=M400CNNT11NW4%O4=M400CST11NW4%O5=M400CST11NW4%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34858,7 +34858,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-gentoo-r10-3 #1 Fri Apr 4 22:58:00 CEST 2008 i686 VIA Esther processor 1200MHz CentaurHauls GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C4-CE%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=8) OPS(O1=M529ST11NW6%O2=M529ST11NW6%O3=M529NNT11NW6%O4=M529ST11NW6%O5=M529ST11NW6%O6=M529ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34876,7 +34876,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CD-D7%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34894,7 +34894,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.9 #4 Tue Oct 2 22:47:57 NZDT 2007 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CE-D8%GCD=1-6%ISR=EA-F4%TI=Z%TS=7|8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34912,7 +34912,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CD-D7%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CNNT11NW9%O2=M400CNNT11NW9%O3=M400CNNT11NW9%O4=M400CNNT11NW9%O5=M400CNNT11NW9%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -34930,7 +34930,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.7-57.fc6 #1 SMP Fri Sep 21 19:26:56 EDT 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=D1-E5%GCD=1-6%ISR=E9-F3%TI=Z%II=I%TS=A) OPS(O1=M536ST11NW7%O2=M536ST11NW7%O3=M536NNT11NW7%O4=M536ST11NW7%O5=M536ST11NW7%O6=M536ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34948,7 +34948,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.19 #5 Sun Mar 9 01:55:01 MST 2008 i686 Pentium II (Deschutes) GenuineIntel GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C0-CA%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34968,7 +34968,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.9-smp #26 SMP Sat May 3 19:00:06 CDT 2008 i686 AMD Athlon(tm)64 X2 Dual Core Processor 3800+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CB-D9%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -34986,7 +34986,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-386 #1 Sun Oct 14 22:36:54 GMT 2007 i686 GNU/Linux Ubuntu 6.04 dapper drake server Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=BB-D1%GCD=1-6%ISR=BF-DF%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35008,7 +35008,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # CentOS release 5.7 (Final) 2.6.18-274.17.1.el5 i386 GNU/Linux Fingerprint Linux 2.6.18 - 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 SEQ(SP=C8-12A%GCD=1-6%ISR=EA-116%TI=Z%CI=Z%II=I%TS=8|A) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35027,7 +35027,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Buffalo linkstation quad Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C7-D1%GCD=1-6%ISR=EA-F4%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35045,7 +35045,7 @@ IE(DFI=N%T=41%TG=40%CD=S) # Linux 2.6.22-14-386 #1 Sun Oct 14 22:36:54 GMT 2007 i686 GNU/Linux / Ubuntu 7.10 Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=D2-DC%GCD=1-6%ISR=EB-F5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M4BEST11NW4%O2=M4BEST11NW4%O3=M4BENNT11NW4%O4=M4BEST11NW4%O5=M4BEST11NW4%O6=M4BEST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35063,7 +35063,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.14-72.fc6 #1 SMP Wed Nov 21 13:44:07 EST 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C7-D1%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35081,7 +35081,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.9-server-1mdv #1 SMP Wed Sep 26 23:22:46 CEST 2007 x86_64 Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=D8-EC%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M556ST11NW7%O2=M556ST11NW7%O3=M556NNT11NW7%O4=M556ST11NW7%O5=M556ST11NW7%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35099,7 +35099,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.18 #1 Thu Mar 19 14:46:22 IST 2009 armv5tejl GNU/Linux Fingerprint Linux 2.6.22 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C7-12B%GCD=1-6%ISR=EA-100%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35117,7 +35117,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # debian 4.03r2 2.6.22-2 Fingerprint Linux 2.6.22 (Debian 4.0) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35135,7 +35135,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-2-amd64 #1 SMP Thu Aug 30 23:43:59 UTC 2007 x86_64, Debian lenny/sid (AMD64) Fingerprint Linux 2.6.22 (Debian, x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=BE-D4%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M558ST11NW7%O2=M558ST11NW7%O3=M558NNT11NW7%O4=M558ST11NW7%O5=M558ST11NW7%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35164,7 +35164,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Netgear WNDR4000 router / wireless access point Firmware V1.0.0.60_8.0.49 Fingerprint Linux 2.6.22 (embedded, ARM) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C4-126%GCD=1-6%ISR=E8-100%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW2|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35182,7 +35182,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.9-91.fc7 #1 SMP Thu Sep 27 20:47:39 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux (Fedora 7) Fingerprint Linux 2.6.22 (Fedora 7) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CE-D8%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -35202,7 +35202,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.2-42.fc6 #1 SMP Wed Aug 15 12:34:26 EDT 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.22 (Fedora Core 6) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=D0-DA%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW4|M5B4ST11NW6%O2=M5B4ST11NW4|M5B4ST11NW6%O3=M5B4NNT11NW4|M5B4NNT11NW6%O4=M5B4ST11NW4|M5B4ST11NW6%O5=M5B4ST11NW4|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35220,7 +35220,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-ck1-xbox #3 PREEMPT Wed Dec 19 05:35:31 CST 2007 i686 Celeron (Coppermine) GenuineIntel GNU/Linux (modified original Xbox running Gentoo Linux). Fingerprint Linux 2.6.22 (Gentoo, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CC-D6%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW1%O2=M400CST11NW1%O3=M400CNNT11NW1%O4=M400CST11NW1%O5=M400CST11NW1%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35238,7 +35238,7 @@ IE(DFI=N%T=45%TG=80%CD=S) # Linux 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.22 (Kubuntu, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CB-D5%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW5%O2=M400CST11NW5%O3=M400CNNT11NW5%O4=M400CST11NW5%O5=M400CST11NW5%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35256,7 +35256,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Sun Oct 14 21:45:15 GMT 2007 x86_64 GNU/LinuxMCE 7.10r2 Fingerprint Linux 2.6.22 (LinuxMCE) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CD-D7%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35274,7 +35274,7 @@ IE(DFI=N%T=FF80%TG=FF%CD=S) # Linux 2.6.22 #17 Sun Jul 22 11:17:12 CEST 2007 sparc64 sun4u TI UltraSparc II (BlackBird) GNU/Linux on Gentoo/sparc64 2007.0 Fingerprint Linux 2.6.22 (SPARC) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CA-D4%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35292,7 +35292,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux (Ubuntu 7.04) Fingerprint Linux 2.6.22 (Ubuntu 7.04, x86, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CC-D6%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5ACST11NW5%O2=M5ACST11NW5%O3=M5ACNNT11NW5%O4=M5ACST11NW5%O5=M5ACST11NW5%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -35311,7 +35311,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-server #1 SMP Tue Feb 12 08:27:05 UTC 2008 i686 GNU/Linux / Ubuntu 7.10 Fingerprint Linux 2.6.22 (Ubuntu 7.10) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CA-D8%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=7) OPS(O1=M400CST11NW2%O2=M400CST11NW2%O3=M400CNNT11NW2%O4=M400CST11NW2%O5=M400CST11NW2%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35330,7 +35330,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Ubuntu 7.10 (i386) Linux PC15348 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.22 (Ubuntu 7.10, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C6-D4%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CST11%O2=M400CST11%O3=M400CNNT11%O4=M400CST11%O5=M400CST11%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35348,7 +35348,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Ubuntu 7.10 Linux 2.6.22-14-generic #1 SMP Tue Dec 18 05:28:27 UTC 2007 x86_64 GNU/Linux Fingerprint Linux 2.6.22 (Ubuntu 7.10, x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CE-D8%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35366,7 +35366,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.22-14-server #1 SMP / Ubuntu 8.04 Server (VMware) Fingerprint Linux 2.6.22 (Ubuntu 8.04 Server Edition) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=C9-D3%GCD=1-6%ISR=E2-EC%TI=Z%II=I%TS=6) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35384,7 +35384,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 GNU/Linux (Edubuntu) Fingerprint Linux 2.6.22 (Ubuntu, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=CC-D6%GCD=1-6%ISR=EA-F4%TI=Z%TS=8|B) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35412,7 +35412,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22 #3 Fri Sep 7 01:59:56 BST 2007 ppc GNU/Linux, Buffalo Kurobox (see www.revogear.com) running Linux 2.6.22 under Ubuntu 7.04 Fingerprint Linux 2.6.22 - 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-E7%GCD=1-6%ISR=EA-FF%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35431,7 +35431,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.23-rc5 #1 PREEMPT Sun Sep 2 10:20:23 CEST 2007 i686 Intel(R) Pentium(R) 4 CPU 2.00GHz GenuineIntel GNU/Linux / Gentoo linux Fingerprint Linux 2.6.22 - 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B7-D9%GCD=1-6%ISR=EA-F4%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW4|M400CST11NW5|M400CST11NW6%O2=M400CST11NW4|M400CST11NW5|M400CST11NW6%O3=M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6%O4=M400CST11NW4|M400CST11NW5|M400CST11NW6%O5=M400CST11NW4|M400CST11NW5|M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35449,7 +35449,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.4-45.fc6 #1 SMP Tue Aug 21 18:29:10 EDT 2007 i686 i686 i386 GNU/Linux/Fedora Core 6 (Zod) Fingerprint Linux 2.6.22 - 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D8%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35467,7 +35467,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-gentoo-r9 #1 SMP Wed Nov 21 18:12:07 CET 2007 i686 Intel(R) Pentium(R) D CPU 2.80GHz GenuineIntel GNU/Linux, through an openVPN connection (using TAP interface) Fingerprint Linux 2.6.22 - 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=D0-DA%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M536ST11NW6%O2=M536ST11NW6%O3=M536NNT11NW6%O4=M536ST11NW6%O5=M536ST11NW6%O6=M536ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35488,7 +35488,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22-14-generic #1 SMP Tue Dec 18 08:02:57 UTC 2007 i686 GNU/Linux - Distro: Ubuntu 7.10 Fingerprint Linux 2.6.22 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D8%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=U) OPS(O1=M400C%O2=M400C%O3=M400C%O4=M400C%O5=M400C%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -35508,7 +35508,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux v2.7; 2.6.36-hardened-r9; i586 Pentium MMX GenuineIntel GNU/Linux Fingerprint Linux 2.6.22 - 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C6-D8%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW1|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35526,7 +35526,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.1-32.fc6 #1 SMP Wed Aug 1 15:15:33 EDT 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.22.1-32.fc6 (x86, SMP) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=D1-EF%GCD=1-6%ISR=EB-F5%TI=Z%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35544,7 +35544,7 @@ IE(R=N) # Linux 2.6.23.11 #2 Sun Dec 16 18:08:14 EST 2007 i586 AMD-K6(tm) 3D processor AuthenticAMD GNU/Linux Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=CA-D4%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=8) OPS(O1=M548ST11NW2%O2=M548ST11NW2%O3=M548NNT11NW2%O4=M548ST11NW2%O5=M548ST11NW2%O6=M548ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35562,7 +35562,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.23 #2 Sun Sep 23 19:47:10 UTC 2007 i686 GNU/Linux Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C5-CF%GCD=1-6%ISR=EA-F4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW3%O2=M5B4ST11NW3%O3=M5B4NNT11NW3%O4=M5B4ST11NW3%O5=M5B4ST11NW3%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35580,7 +35580,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.23.9-85.fc8 #1 SMP Fri Dec 7 15:49:36 EST 2007 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C5-CF%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35598,7 +35598,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.23.11-grsec #5 Sat Dec 15 12:29:44 CET 2007 i686 unknown Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C8-D2%GCD=1-6%ISR=CD-D7%TI=Z%TS=A) OPS(O1=M2FD8ST11NW7%O2=M2FD8ST11NW7%O3=M2FD8NNT11NW7%O4=M2FD8ST11NW7%O5=M2FD8ST11NW7%O6=M2FD8ST11) WIN(W1=5F98%W2=5F98%W3=5F98%W4=5F98%W5=5F98%W6=5F98) @@ -35616,7 +35616,7 @@ IE(R=N) # Linux 2.6.23-gentoo-r9 #1 SMP Sun Mar 2 20:13:56 EST 2008 i686 Pentium III (Katmai) GenuineIntel GNU/Linux Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C2-CC%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35634,7 +35634,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.23.17-linode43 #1 Wed Mar 5 13:57:22 EST 2008 i686 GNU/Linux Debian 4.0 Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C3-CD%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M556ST11NW7%O2=M556ST11NW7%O3=M556NNT11NW7%O4=M556ST11NW7%O5=M556ST11NW7%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35652,7 +35652,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.23.17-general #1 SMP Mon Jul 7 16:59:01 EST 2008 i686 GNU/Linux Fingerprint Linux 2.6.23 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C7-D1%GCD=1-6%ISR=C5-CF%TI=Z%TS=8) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35670,7 +35670,7 @@ IE(R=N) # Linux 2.6.23-gentoo-r3 #12 SMP Sat Oct 18 10:57:19 CEST 2008 i686 AMD Athlon(tm) 64 Processor 3500+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.23 (Gentoo) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C4-CE%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=RI%TS=8) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35690,7 +35690,7 @@ IE(DFI=S%T=3B-45%TG=40%CD=S) # Linux 2.6.29.5-191.fc11.x86_64 #1 SMP Tue Jun 16 23:23:21 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.23 - 2.6.29 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-D3%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=A) OPS(O1=M400CNNT11NW6|M400CNNT11NW9%O2=M400CNNT11NW6|M400CNNT11NW9%O3=M400CNNT11NW6|M400CNNT11NW9%O4=M400CNNT11NW6|M400CNNT11NW9%O5=M400CNNT11NW6|M400CNNT11NW9%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -35712,7 +35712,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.35.7-I09100XWKE1-CL181974, Android 2.3.3 (possibly with samsung tweeks) on Samsung galaxy S ii GT-I9100. Fingerprint Linux 2.6.23 - 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BB-D7%GCD=1-6%ISR=BE-D8%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35730,7 +35730,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.23-gentoo-r3 #8 SMP Fingerprint Linux 2.6.23-gentoo-r3 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C9-D3%GCD=1-6%ISR=C7-D1%TI=Z%TS=7) OPS(O1=M5B4NNT11%O2=M5B4NNT11%O3=M5B4NNT11%O4=M5B4NNT11%O5=M5B4NNT11%O6=M5B4NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35748,7 +35748,7 @@ IE(R=N) # Linux 2.6.24-tuxonice-r3 #1 Tue Apr 1 23:12:42 CEST 2008 i686 Intel(R) Pentium(R) M processor 1.73GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=CA-D8%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35766,7 +35766,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-reiser4-r3 #1 Fri Mar 14 14:34:25 CET 2008 i686 Intel(R) Pentium(R) M processor 1.60GHz GenuineIntel GNU/Linux / Gentoo Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(R=N) OPS(R=N) WIN(R=N) @@ -35786,7 +35786,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux gentoo 2.6.24-gentoo-r8 #1 SMP Mon Nov 10 10:55:53 CET 2008 i686 Intel(R) Pentium(R) 4 CPU 3.00GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C4-CE%GCD=1-6%ISR=BE-D6%TI=Z%II=I%TS=U) OPS(O1=M400CNW6|M400CNW7%O2=M400CNW6|M400CNW7%O3=M400CNW6|M400CNW7%O4=M400CNW6|M400CNW7%O5=M400CNW6|M400CNW7%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -35804,7 +35804,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=BB-C5%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=7) OPS(O1=M556ST11NW6%O2=M556ST11NW6%O3=M556NNT11NW6%O4=M556ST11NW6%O5=M556ST11NW6%O6=M556ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35822,7 +35822,7 @@ IE(DFI=N%T=41%TG=40%CD=S) # Linux 2.6.24-19-generic #1 SMP Wed Aug 20 17:53:40 UTC 2008 x86_64 GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C5-CF%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=8) OPS(O1=M55EST11NW7%O2=M55EST11NW7%O3=M55ENNT11NW7%O4=M55EST11NW7%O5=M55EST11NW7%O6=M55EST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35840,7 +35840,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-19-generic #1 SMP Wed Aug 20 22:56:21 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C5-D1%GCD=1-6%ISR=CA-D6%TI=Z%II=I%TS=8) OPS(O1=M58CST11NW7%O2=M58CST11NW7%O3=M58CNNT11NW7%O4=M58CST11NW7%O5=M58CST11NW7%O6=M58CST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35858,7 +35858,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-23-server #1 SMP Mon Jan 26 00:55:21 UTC 2009 i686 GNU/Linux (Ubuntu 8.04 Server Edition) Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D7%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35876,7 +35876,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-19-server #1 SMP Wed Aug 20 23:54:28 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=B1-C7%GCD=1-6%ISR=C3-CD%TI=Z%TS=U) OPS(O1=M5B4NW5%O2=M5B4NW5%O3=M5B4NW5%O4=M5B4NW5%O5=M5B4NW5%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -35894,7 +35894,7 @@ IE(R=N) # Linux 2.6.24-23-server #1 SMP Wed Apr 1 22:22:14 UTC 2009 i686 GNU/Linux / Ubuntu server 8.10 Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C7-D1%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35913,7 +35913,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-274.el5 #1 SMP Fri Jul 8 17:39:55 EDT 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.18 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C4-D2%GCD=1-6%ISR=CD-D7%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW7%O2=M5B4NNSNW7%O3=M5B4NW7%O4=M5B4NNSNW7%O5=M5B4NNSNW7%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -35931,7 +35931,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-22-generic #1 SMP Mon Nov 24 18:32:42 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C9-D3%GCD=1-6%ISR=CE-D8%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M564ST11NW7%O2=M564ST11NW7%O3=M564NNT11NW7%O4=M564ST11NW7%O5=M564ST11NW7%O6=M564ST11) WIN(W1=1560%W2=1560%W3=1560%W4=1560%W5=1560%W6=1560) @@ -35949,7 +35949,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.24-27-server Ubuntu 8.04.4 LTS Fingerprint Linux 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=F7-103%GCD=1-6%ISR=FB-109%TI=Z%II=I%TS=7) OPS(O1=M564ST11NW4%O2=M564ST11NW4%O3=M564NNT11NW4%O4=M564ST11NW4%O5=M564ST11NW4%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35967,7 +35967,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24Leonardo #1 SMP Fri Jan 25 15:34:30 PST 2008 i686 GNU/Linux / Debian(Etch) Fingerprint Linux 2.6.24 (Debian) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C4-CE%GCD=1-6%ISR=CC-D6%TI=Z%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -35985,7 +35985,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-etchnhalf.1-686 #1 SMP Sat Aug 15 16:51:49 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.24 (Debian) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C8-D2%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M4D8ST11NW6%O2=M4D8ST11NW6%O3=M4D8NNT11NW6%O4=M4D8ST11NW6%O5=M4D8ST11NW6%O6=M4D8ST11) WIN(W1=1330%W2=1330%W3=1330%W4=1330%W5=1330%W6=1330) @@ -36003,7 +36003,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-gentoo-r4 GNU/Linux Fingerprint Linux 2.6.24 (Gentoo) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C1-CF%GCD=1-6%ISR=C6-D4%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW0%O2=M5B4NNSNW0%O3=M5B4NW0%O4=M5B4NNSNW0%O5=M5B4NNSNW0%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -36021,7 +36021,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-gentoo-r8-rupasov #1 Mon Jul 7 09:28:02 CEST 2008 i686 Intel(R) Pentium(R) M processor 1.73GHz GenuineIntel GNU/Linux / Gentoo Fingerprint Linux 2.6.24 (Gentoo, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C7-D1%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=8) OPS(O1=M8CAST11NW6%O2=M8CAST11NW6%O3=M8CANNT11NW6%O4=M8CAST11NW6%O5=M8CAST11NW6%O6=M8CAST11) WIN(W1=1A3A%W2=1A3A%W3=1A3A%W4=1A3A%W5=1A3A%W6=1A3A) @@ -36039,7 +36039,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-19-server #1 SMP Sat Jul 12 00:40:01 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.24 (Ubuntu 8.04) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=C5-CF%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36057,7 +36057,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-21-generic #1 SMP Mon Aug 25 17:32:09 UTC 2008 i686 GNU/Linux -- Ubuntu Hardy Heron Fingerprint Linux 2.6.24 (Ubuntu 8.04) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=BD-C7%GCD=1-6%ISR=C0-CA%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36076,7 +36076,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-26-server #1 SMP Tue Dec 1 18:26:43 UTC 2009 x86_64 GNU/Linux Fingerprint Linux 2.6.24 - 2.6.25 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BB-CF%GCD=1-6%ISR=C7-D7%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36096,7 +36096,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-1-686 #1 SMP Sat Jan 10 18:29:31 UTC 2009 i686 GNU/Linux / Distribution: Debian Lenny Fingerprint Linux 2.6.24 - 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B8-D8%GCD=1-6%ISR=C5-D5%TI=Z%II=I%TS=8) OPS(O1=M218ST11NW4|M218ST11NW5|M218ST11NW6|M218ST11NW7%O2=M218ST11NW4|M218ST11NW5|M218ST11NW6|M218ST11NW7%O3=M218NNT11NW4|M218NNT11NW5|M218NNT11NW6|M218NNT11NW7%O4=M218ST11NW4|M218ST11NW5|M218ST11NW6|M218ST11NW7%O5=M218ST11NW4|M218ST11NW5|M218ST11NW6|M218ST11NW7%O6=M218ST11) WIN(W1=830%W2=830%W3=830%W4=830%W5=830%W6=830) @@ -36115,7 +36115,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Tue Mar 9 17:35:51 UTC 2010 i686 GNU/Linux (Debian) Fingerprint Linux 2.6.24 - 2.6.26 (Debian) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=CA-D4%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36135,7 +36135,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-14-generic #47-Ubuntu SMP Sat Jul 25 00:28:35 UTC 2009 i586 GNU/Linux Fingerprint Linux 2.6.24 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36154,7 +36154,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-ARCH #1 SMP PREEMPT Sun Mar 8 10:55:58 CET 2009 x86_64 Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.24 - 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=C3-CF%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW6|M400CST11NW7%O2=M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW6|M400CST11NW7%O5=M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -36173,7 +36173,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.33-zen2 #6 ZEN SMP PREEMPT Fri Mar 19 16:16:39 EET 2010 x86_64 Intel(R) Core(TM) i5 CPU 750 @ 2.67GHz GenuineIntel GNU/Linux/Gentoo Linux Fingerprint Linux 2.6.24 - 2.6.33 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=U) OPS(O1=M400CNW4|M400CNW9%O2=M400CNW4|M400CNW9%O3=M400CNW4|M400CNW9%O4=M400CNW4|M400CNW9%O5=M400CNW4|M400CNW9%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -36196,7 +36196,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.36-gentoo-r5 #5 SMP Thu Jan 13 14:37:58 MSK 2011 i686 Intel(R) Core(TM)2 Duo CPU T5750 @ 2.00GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.24 - 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B7-D1%GCD=1-6%ISR=BE-DA%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9|M5B4ST11NWA%O2=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9|M5B4ST11NWA%O3=M5B4NNT11NW2|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW9|M5B4NNT11NWA%O4=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9|M5B4ST11NWA%O5=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW9|M5B4ST11NWA%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36214,7 +36214,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.25-ARCH #1 SMP PREEMPT Fri May 16 14:52:43 CEST 2008 i686 Pentium III (Katmai) GenuineIntel GNU/Linux Fingerprint Linux 2.6.25 (Arch Linux) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.25 +CPE cpe:/o:linux:linux_kernel:2.6.25 SEQ(SP=C3-CD%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=U) OPS(O1=M400CNNSNW5%O2=M400CNNSNW5%O3=M400CNW5%O4=M400CNNSNW5%O5=M400CNNSNW5%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -36232,7 +36232,7 @@ IE(DFI=N%T=3D%TG=40%CD=S) # Linux 2.6.25-gentoo-r9 #1 SMP i686 Intel(R) Xeon(TM) CPU 2.80GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.25 (Gentoo) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.25 +CPE cpe:/o:linux:linux_kernel:2.6.25 SEQ(SP=C3-CD%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=7) OPS(O1=M1FC0ST11NW7%O2=M1FC0ST11NW7%O3=M1FC0NNT11NW7%O4=M1FC0ST11NW7%O5=M1FC0ST11NW7%O6=M1FC0ST11) WIN(W1=3F68%W2=3F68%W3=3F68%W4=3F68%W5=3F68%W6=3F68) @@ -36250,7 +36250,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.25.11-0.1-default #1 SMP 2008-07-13 20:48:28 +0200 i686 i686 - OpenSuSE 11.0 Fingerprint Linux 2.6.25 (openSUSE 11.0) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.25 +CPE cpe:/o:linux:linux_kernel:2.6.25 SEQ(SP=C3-CD%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=8) OPS(O1=M5ACST11NW4%O2=M5ACST11NW4%O3=M5ACNNT11NW4%O4=M5ACST11NW4%O5=M5ACST11NW4%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -36268,7 +36268,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-gentoo-r1 #1 SMP PREEMPT Tue Aug 19 18:01:13 UTC 2008 x86_64 Intel(R) Xeon(R) CPU E5430 @ 2.66GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=CA-D4%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NWE%O2=M5B4ST11NWE%O3=M5B4NNT11NWE%O4=M5B4ST11NWE%O5=M5B4ST11NWE%O6=M5B4ST11) WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=FFFF%W6=16A0) @@ -36286,7 +36286,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26 #2 SMP PREEMPT Tue Oct 7 21:22:34 CEST 2008 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=B4-BE%GCD=1-6%ISR=C6-D0%TI=Z%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36304,7 +36304,7 @@ IE(R=N) # Linux 2.6.26.6-49.fc8 #1 SMP Fri Oct 17 15:33:32 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C7-D1%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=A) OPS(O1=MF78ST11NW7%O2=MF78ST11NW7%O3=MF78NNT11NW7%O4=MF78ST11NW7%O5=MF78ST11NW7%O6=MF78ST11) WIN(W1=2E44%W2=2E44%W3=2E44%W4=2E44%W5=2E44%W6=2E44) @@ -36322,7 +36322,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-1-amd64 #1 SMP Sat Nov 8 18:25:23 UTC 2008 x86_64 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BC-C6%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36341,7 +36341,7 @@ IE(DFI=N%T=41%TG=40%CD=S) # Linux ubuntu 2.6.32-25-generic #45-Ubuntu SMP Sat Oct 16 19:52:42 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C2-D4%GCD=1-6%ISR=CE-D8%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW7|M5B4NNSNW9%O2=M5B4NNSNW7|M5B4NNSNW9%O3=M5B4NW7|M5B4NW9%O4=M5B4NNSNW7|M5B4NNSNW9%O5=M5B4NNSNW7|M5B4NNSNW9%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -36359,7 +36359,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-1-686 #1 SMP Fri Mar 13 18:08:45 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C3-CD%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36377,7 +36377,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-sparc64 #1 Thu May 28 20:55:52 UTC 2009 sparc64 GNU/Linux, Debian lenny Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BE-CE%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=8) OPS(O1=M57AST11NW6%O2=M57AST11NW6%O3=M57ANNT11NW6%O4=M57AST11NW6%O5=M57AST11NW6%O6=M57AST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36395,7 +36395,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.26-1-686 debian lenny Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C6-D0%GCD=1-6%ISR=CF-D9%TI=Z%II=I%TS=U) OPS(O1=M5B4NW5%O2=M5B4NW5%O3=M5B4NW5%O4=M5B4NW5%O5=M5B4NW5%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -36413,7 +36413,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26.5 #1 Fri Apr 24 11:17:08 CEST 2009 ppc GNU/Linux Debian Etch, Bubba2 miniserver from Excito Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=CB-D5%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36431,7 +36431,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Thu May 28 15:39:35 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BB-D1%GCD=1-6%ISR=C3-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M54BST11NW6%O2=M54BST11NW6%O3=M54BNNT11NW6%O4=M54BST11NW6%O5=M54BST11NW6%O6=M54BST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36449,7 +36449,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Wed May 12 21:56:10 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C4-CE%GCD=1-6%ISR=C4-CE%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M535ST11NW6%O2=M535ST11NW6%O3=M535NNT11NW6%O4=M535ST11NW6%O5=M535ST11NW6%O6=M535ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36467,7 +36467,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-1-686 #1 SMP Fri Mar 13 18:08:45 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BC-C6%GCD=1-6%ISR=C3-CD%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M52CST11NW6%O2=M52CST11NW6%O3=M52CNNT11NW6%O4=M52CST11NW6%O5=M52CST11NW6%O6=M52CST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36485,7 +36485,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-amd64 #1 SMP Thu Feb 11 00:59:32 UTC 2010 x86_64 GNU/Linux Debian Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C0-CA%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=8) OPS(O1=M559ST11NW8%O2=M559ST11NW8%O3=M559NNT11NW8%O4=M559ST11NW8%O5=M559ST11NW8%O6=M559ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36503,7 +36503,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Thu Sep 16 19:35:51 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C7-D1%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M1BF8ST11NW5%O2=M1BF8ST11NW5%O3=M1BF8NNT11NW5%O4=M1BF8ST11NW5%O5=M1BF8ST11NW5%O6=M1BF8ST11) WIN(W1=37D8%W2=37D8%W3=37D8%W4=37D8%W5=37D8%W6=37D8) @@ -36521,7 +36521,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-amd64 #1 SMP Thu Nov 25 04:30:55 UTC 2010 x86_64 GNU/Linux / Debian Lenny x64 Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=CB-D5%GCD=1-6%ISR=CF-D9%TI=Z%II=I%TS=8) OPS(O1=M594ST11NW6%O2=M594ST11NW6%O3=M594NNT11NW6%O4=M594ST11NW6%O5=M594ST11NW6%O6=M594ST11) WIN(W1=1620%W2=1620%W3=1620%W4=1620%W5=1620%W6=1620) @@ -36539,7 +36539,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-amd64 #1 SMP Thu Nov 5 02:23:12 UTC 2009 x86_64 GNU/Linux Debian/lenny Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BC-C6%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36557,7 +36557,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Thu Nov 25 01:53:57 UTC 2010 i686 GNU/Linux / Debian Squeeze 6.0 Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B0ST11NW6%O2=M5B0ST11NW6%O3=M5B0NNT11NW6%O4=M5B0ST11NW6%O5=M5B0ST11NW6%O6=M5B0ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36575,7 +36575,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.26-2-amd64 #1 SMP Fri Aug 14 07:12:04 UTC 2009 x86_64 GNU/Linux Debian 5.0.2 Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CA%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=8|A) OPS(O1=M4ECST11NW7%O2=M4ECST11NW7%O3=M4ECNNT11NW7%O4=M4ECST11NW7%O5=M4ECST11NW7%O6=M4ECST11) WIN(W1=1380%W2=1380%W3=1380%W4=1380%W5=1380%W6=1380) @@ -36596,7 +36596,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.54-0.3-pae #1 SMP 2012-01-27 17:38:56 +0100 i686 i686 i386 GNU/Linux / SLED11sp1 SuSE Linux Enterprise Desktop 11 SP1 Fingerprint Linux 2.6.26 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=FA-10E%GCD=1-6%ISR=104-10E%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW6|M400CST11NW7%O2=M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW6|M400CST11NW7%O5=M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36614,7 +36614,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-2-686 #1 SMP Wed Sep 21 03:35:47 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.26 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=101-10B%GCD=1-6%ISR=103-10D%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36632,7 +36632,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # (PCLinuxOS p.93) Linux 2.6.26.8.tex1 #1 SMP Mon Nov 24 23:24:12 GMT 2008 i686 AMD Sempron(tm) Processor 2800+ GNU/Linux Fingerprint Linux 2.6.26 (PCLinuxOS) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BA-CE%GCD=1-6%ISR=BF-D3%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36655,7 +36655,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.26-1-486-vyatta #1 SMP Fri Feb 27 01:04:20 GMT 2009 i686 GNU/ Linux (Vyatta router) Fingerprint Linux 2.6.26 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B5-D1%GCD=1-6%ISR=C7-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=ST11M5B4NW4|ST11M5B4NW6%O2=ST11M5B4NW4|ST11M5B4NW6%O3=NNT11M5B4NW4|NNT11M5B4NW6%O4=ST11M5B4NW4|ST11M5B4NW6%O5=ST11M5B4NW4|ST11M5B4NW6%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36676,7 +36676,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.4-linode14 #1 SMP Thu Nov 6 09:22:58 EST 2008 i686 GNU/Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C1-D1%GCD=1-6%ISR=C8-D6%TI=Z%II=I%TS=A) OPS(O1=ST11M400CNW5%O2=ST11M400CNW5%O3=NNT11M400CNW5%O4=ST11M400CNW5%O5=ST11M400CNW5%O6=ST11M400C) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36698,7 +36698,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 1.5 Cupcake - Barnes & Noble Nook 1st Gen. Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=AD-C9%GCD=1-6%ISR=BA-D6%TI=Z%CI=Z%II=I%TS=8) OPS(O1=ST11M5B4NW1|ST11M5B4NW5%O2=ST11M5B4NW1|ST11M5B4NW5%O3=NNT11M5B4NW1|NNT11M5B4NW5%O4=ST11M5B4NW1|ST11M5B4NW5%O5=ST11M5B4NW1|ST11M5B4NW5%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36719,7 +36719,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Panasonic DMP-DB75 Blu-ray Player Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=BD-CD%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=ST11M5B4NW3|ST11M5B4NW7%O2=ST11M5B4NW3|ST11M5B4NW7%O3=NNT11M5B4NW3|NNT11M5B4NW7%O4=ST11M5B4NW3|ST11M5B4NW7%O5=ST11M5B4NW3|ST11M5B4NW7%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36743,7 +36743,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.27-ARCH Arch Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=BE-D2%GCD=1-6%ISR=C3-D5%TI=Z%II=I%TS=8) OPS(O1=ST11M400CNW4|ST11M400CNW6|ST11M400CNW7%O2=ST11M400CNW4|ST11M400CNW6|ST11M400CNW7%O3=NNT11M400CNW4|NNT11M400CNW6|NNT11M400CNW7%O4=ST11M400CNW4|ST11M400CNW6|ST11M400CNW7%O5=ST11M400CNW4|ST11M400CNW6|ST11M400CNW7%O6=ST11M400C) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36763,7 +36763,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.4-linode14 #1 SMP Thu Nov 6 09:22:58 EST 2008 i686 GNU/Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=B9-D5%GCD=1-6%ISR=BC-CD%TI=Z%II=I%TS=A) OPS(O1=ST11M400CNW6%O2=ST11M400CNW6%O3=NNT11M400CNW6%O4=ST11M400CNW6%O5=ST11M400CNW6%O6=ST11M400C) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36781,7 +36781,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-wl-edith #1 Sun Oct 12 15:53:19 EDT 2008 i686 GNU/Linux (wireless-testing tree) Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C1-D1%GCD=1-6%ISR=C9-D3%TI=Z%TS=A) OPS(O1=ST11M5B4NW4%O2=ST11M5B4NW4%O3=NNT11M5B4NW4%O4=ST11M5B4NW4%O5=ST11M5B4NW4%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36800,7 +36800,7 @@ IE(R=N) # Linux 2.6.27-desktop-0.rc8.2mnb #1 SMP Thu Oct 2 05:49:37 EDT 2008 x86_64, Intel(R) Xeon(TM) CPU 3.00GHz GNU/Linux, Mandriva Linux release 2009.0 (Official) for x86_64 Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C5-CF%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=ST11M5B4NW6%O2=ST11M5B4NW6%O3=NNT11M5B4NW6%O4=ST11M5B4NW6%O5=ST11M5B4NW6%O6=NNT11|ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36818,7 +36818,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-ARCH Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C2-CC%GCD=1-6%ISR=C1-CB%TI=Z%II=I%TS=8) OPS(O1=ST11M400CNW5%O2=ST11M400CNW5%O3=NNT11M400CNW5%O4=ST11M400CNW5%O5=ST11M400CNW5%O6=ST11M400C) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36837,7 +36837,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Kemp Technologies LoadMaster (Load Balancer) Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C1-CF%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW3%O2=M5B4NNSNW3%O3=M5B4NW3%O4=M5B4NNSNW3%O5=M5B4NNSNW3%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -36855,7 +36855,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-ARCH #1 SMP PREEMPT Fri Oct 17 06:51:57 UTC 2008 x86_64 Intel(R) Core(TM)2 Duo CPU T7100 @ 1.80GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C4-CE%GCD=1-6%ISR=D0-DA%TI=Z%II=I%TS=8) OPS(O1=ST11M5B4NW7%O2=ST11M5B4NW7%O3=NNT11M5B4NW7%O4=ST11M5B4NW7%O5=ST11M5B4NW7%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36873,7 +36873,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-9-generic #1 Thu Nov 20 22:15:32 UTC 2008 x86_64 GNU/Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -36891,7 +36891,7 @@ IE(R=N) # Linux 2.6.27-zen3eee #5 SMP PREEMPT Thu May 21 04:35:26 CEST 2009 i686 Intel(R) Atom(TM) CPU N270 @ 1.60GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C9-D3%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=9) OPS(O1=ST11M400CNW6%O2=ST11M400CNW6%O3=NNT11M400CNW6%O4=ST11M400CNW6%O5=ST11M400CNW6%O6=ST11M400C) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36909,7 +36909,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-14-generic #1 SMP Wed Apr 15 19:29:46 UTC 2009 x86_64 GNU/Linux Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=I%II=I%SS=S%TS=U) OPS(O1=M5B4NNSNW3%O2=M5B4NNSNW3%O3=M5B4NW3%O4=M5B4NNSNW3%O5=M5B4NNSNW3%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -36928,7 +36928,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Philips Blu-Ray player BDP3100 Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C0-CA%GCD=1-6%ISR=C0-D0%TI=Z%CI=Z%II=I%TS=A) OPS(O1=ST11M5B4NW5%O2=ST11M5B4NW5%O3=NNT11M5B4NW5%O4=ST11M5B4NW5%O5=ST11M5B4NW5%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -36946,7 +36946,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.7-9-pae #1 SMP 2008-12-04 18:10:04 +0100 i686 Fingerprint Linux 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=BF-C9%GCD=1-6%ISR=C3-CD%TI=Z%II=I%TS=8) OPS(O1=M550ST11NW6%O2=M550ST11NW6%O3=M550NNT11NW6%O4=M550ST11NW6%O5=M550ST11NW6%O6=M550ST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -36964,7 +36964,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # LINUX 2.6.27-ARCH #1 SMP PREEMPT Fri Oct 24 07:23:05 PDT 2008 i686 Intel(R) Core(TM)2 Duo CPU T7500 @2.20GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.27 (Arch Linux) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C6-D0%GCD=1-6%ISR=D1-DB%TI=Z%II=I%TS=8) OPS(O1=ST11M400CNW6%O2=ST11M400CNW6%O3=NNT11M400CNW6%O4=ST11M400CNW6%O5=ST11M400CNW6%O6=ST11M400C) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -36982,7 +36982,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-zen3eee, Arch Linux Fingerprint Linux 2.6.27 (Arch Linux) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=9) OPS(O1=ST11M5B4NW6%O2=ST11M5B4NW6%O3=NNT11M5B4NW6%O4=ST11M5B4NW6%O5=ST11M5B4NW6%O6=ST11M5B4) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37000,7 +37000,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.23-0.1-default #1 SMP 2009-05-26 17:02:05 -0400 x86_64 x86_64 x86_64 GNU/Linux/opensuse11.1 Fingerprint Linux 2.6.27 (openSUSE 11.1) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=B5-BF%GCD=1-6%ISR=BC-C6%TI=RD%II=RI%TS=8) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37018,7 +37018,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27-11-generic #1 SMP Fri Dec 19 16:29:52 UTC 2008 i686 GNU/Linux / Ubuntu 8.10 Fingerprint Linux 2.6.27 (Ubuntu 8.10) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 SEQ(SP=C0-CA%GCD=1-6%ISR=C6-D0%TI=Z%TS=8|A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37039,7 +37039,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Centos 5.5 Fingerprint Linux 2.6.27 - 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D0%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M2300ST11NW6|M2300ST11NW7%O2=M2300ST11NW6|M2300ST11NW7%O3=M2300NNT11NW6|M2300NNT11NW7%O4=M2300ST11NW6|M2300ST11NW7%O5=M2300ST11NW6|M2300ST11NW7%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -37057,7 +37057,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.21-grsec #3 Fri May 1 12:34:59 EEST 2009 i686 GNU/Linux Fingerprint Linux 2.6.27.21-grsec Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=CB-D5%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=8) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -37076,7 +37076,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28.3-x86_64-linode5 #1 SMP Wed Feb 4 10:51:30 EST 2009 x86_64 Intel(R) Xeon(R) CPU L5420 @ 2.50GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C2-CC%GCD=1-6%ISR=CF-D9%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW8%O2=M5B4ST11NW8%O3=M5B4NNT11NW8%O4=M5B4ST11NW8%O5=M5B4ST11NW8%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37094,7 +37094,7 @@ IE(DFI=N%T=41%TG=40%CD=S) # Linux 2.6.28-gentoo-r3 #1 SMP PREEMPT Sun Mar 8 20:34:40 MSK 2009 x86_64 Dual-Core AMD Opteron(tm) Processor 1218 AuthenticAMD GNU/Linux Fingerprint Linux 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C4-CE%GCD=1-6%ISR=C2-CC%TI=Z%II=I%TS=A) OPS(O1=M8CAST11NW7%O2=M8CAST11NW7%O3=M8CANNT11NW7%O4=M8CAST11NW7%O5=M8CAST11NW7%O6=M8CAST11) WIN(W1=1A3A%W2=1A3A%W3=1A3A%W4=1A3A%W5=1A3A%W6=1A3A) @@ -37112,7 +37112,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC2009 i686 GNU/Linux Fingerprint Linux 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C2-CC%GCD=1-6%ISR=C5-CF%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5A2ST11NW6%O2=M5A2ST11NW6%O3=M5A2NNT11NW6%O4=M5A2ST11NW6%O5=M5A2ST11NW6%O6=M5A2ST11) WIN(W1=1658%W2=1658%W3=1658%W4=1658%W5=1658%W6=1658) @@ -37131,7 +37131,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-19-generic #65-Ubuntu SMP Thu Sep 16 14:14:28 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.28 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C7-D1%GCD=1-6%ISR=C1-CD%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37149,7 +37149,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-gentoo-r3 #2 SMP Thu Mar 19 12:07:45 MDT 2009 i686 Intel(R) Xeon(R) CPU 5130 @ 2.00GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.28 (Gentoo) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C2-CC%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37167,7 +37167,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:58:03 UTC 2009 x86_64 GNU/Linux Fingerprint Linux 2.6.28 (Ubuntu) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=B5-CF%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=7) OPS(O1=NNT11|M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=B50%W2=B50%W3=B50%W4=B50%W5=B50%W6=B50) @@ -37186,7 +37186,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # U1.RID=0-FFFF matches apparently random RID values --Ed. Fingerprint Linux 2.6.28 (Ubuntu) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C1-CB%GCD=1-6%ISR=C0-CA%TI=Z%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37204,7 +37204,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.29.6-217.2.8.fc11.x86_64 #1 SMP Sat Aug 15 01:06:26 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.29 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.29 +CPE cpe:/o:linux:linux_kernel:2.6.29 SEQ(SP=FE-108%GCD=1-6%ISR=104-10E%TI=RD%II=I%TS=21) OPS(O1=M5B4NW4ST11%O2=M578NW4ST11%O3=M280NW4NNT11%O4=M5B4NW4ST11%O5=M218NW4ST11%O6=M109ST11) WIN(W1=FECC%W2=FECC%W3=FECC%W4=FECC%W5=FECC%W6=FECC) @@ -37222,7 +37222,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.29.1-desktop-4mnb #1 SMP Mon Apr 20 18:57:56 EDT 2009 i686 Intel(R) Pentium(R) Dual CPU E2200 @ 2.20GHz GNU/Linux Fingerprint Linux 2.6.29 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.29 +CPE cpe:/o:linux:linux_kernel:2.6.29 SEQ(SP=C4-CE%GCD=1-6%ISR=C1-D9%TI=Z%II=I%TS=8) OPS(O1=M550ST11NW7%O2=M550ST11NW7%O3=M550NNT11NW7%O4=M550ST11NW7%O5=M550ST11NW7%O6=M550ST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -37240,7 +37240,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.29.6-host #1 SMP Fri Mar 26 21:30:44 PDT 2010 i686 GNU/Linux Fingerprint Linux 2.6.29 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.29 +CPE cpe:/o:linux:linux_kernel:2.6.29 SEQ(SP=C6-D0%GCD=1-6%ISR=C5-CF%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NWB%O2=M5B4ST11NWB%O3=M5B4NNT11NWB%O4=M5B4ST11NWB%O5=M5B4ST11NWB%O6=M5B4ST11) WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=16A0) @@ -37258,7 +37258,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.29-hardened #2 SMP Tue Oct 13 11:02:11 YEKST 2009 i686 Intel(R) Xeon(TM) CPU 2.80GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.29 (Gentoo) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.29 +CPE cpe:/o:linux:linux_kernel:2.6.29 SEQ(SP=BC-D6%GCD=1-6%ISR=C3-D5%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37278,7 +37278,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31-15-generic #50-Ubuntu SMP Tue Nov 10 14:54:29 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.29 - 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D3%GCD=1-6%ISR=C7-D5%TI=Z%CI=I%II=I%TS=A) OPS(O1=M5B4ST11NW1|M5B4ST11NW6%O2=M5B4ST11NW1|M5B4ST11NW6%O3=M5B4NNT11NW1|M5B4NNT11NW6%O4=M5B4ST11NW1|M5B4ST11NW6%O5=M5B4ST11NW1|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37296,7 +37296,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.30.4-2009080102 #2 Sat Aug 1 19:37:02 CDT 2009 i686 AMD Athlon(tm) 64 Processor 3500+ AuthenticAMD GNU/Linux, Gentoo Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=C4-CE%GCD=1-6%ISR=D1-DB%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37314,7 +37314,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.30-ARCH #1 SMP PREEMPT Wed Sep 9 12:37:32 UTC 2009 i686 AMD Athlon(tm) XP 2000+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=C1-CB%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW6%O2=M5B4NNSNW6%O3=M5B4NW6%O4=M5B4NNSNW6%O5=M5B4NNSNW6%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -37332,7 +37332,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.30-gentoo-r4 Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=C6-D0%GCD=1-6%ISR=CE-D8%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5ACST11NW4%O2=M5ACST11NW4%O3=M5ACNNT11NW4%O4=M5ACST11NW4%O5=M5ACST11NW4%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37350,7 +37350,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.30-2-686 #1 SMP Fri Dec 4 00:53:20 UTC 2009 i686 GNU/Linux, using TAP0 over OpenVPN Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=C2-CC%GCD=1-6%ISR=C4-CE%TI=Z%II=I%TS=8) OPS(O1=M536ST11NW6%O2=M536ST11NW6%O3=M536NNT11NW6%O4=M536ST11NW6%O5=M536ST11NW6%O6=M536ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37368,7 +37368,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.30-voyage #1 PREEMPT Wed Dec 30 18:39:44 GMT 2009 i586 GNU/Linux / Voyage 0.6 Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=BF-D1%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=A) OPS(O1=M538ST11NW4%O2=M538ST11NW4%O3=M538NNT11NW4%O4=M538ST11NW4%O5=M538ST11NW4%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37386,7 +37386,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.30-2-amd64 #1 SMP Mon Dec 7 05:21:45 UTC 2009 x86_64 GNU/Linux (Arch) Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=C6-D0%GCD=1-6%ISR=CF-D9%TI=RD%II=RI%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37404,7 +37404,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.30-bpo.2-686 #1 SMP Fri Dec 11 18:12:58 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.30 +CPE cpe:/o:linux:linux_kernel:2.6.30 SEQ(SP=C1-CB%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=U) OPS(O1=M5B4NW6%O2=M5B4NW6%O3=M5B4NW6%O4=M5B4NW6%O5=M5B4NW6%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -37422,7 +37422,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31-14-generic #48-Ubuntu SMP Fri Oct 16 14:05:01 UTC 2009 x86_64 GNU/Linux; Ubuntu karmic Koala Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=BD-C7%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37440,7 +37440,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # linux 2.6.31-14-generic #48-Ubuntu SMP Fri Oct 16 14:04:26 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C3-107%GCD=1-6%ISR=AA-114%TI=Z%CI=Z%II=I%TS=B) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37458,7 +37458,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.31-17-generic #54-Ubuntu SMP x86_64, Ubuntu 9.10 Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C2-CC%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M558ST11NW7%O2=M558ST11NW7%O3=M558NNT11NW7%O4=M558ST11NW7%O5=M558ST11NW7%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37476,7 +37476,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31.12-174.2.3.fc12.x86_64 #1 SMP Mon Jan 18 19:52:07 UTC 2010 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=BD-C7%GCD=1-6%ISR=C0-CA%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M584ST11NW7%O2=M584ST11NW7%O3=M584NNT11NW7%O4=M584ST11NW7%O5=M584ST11NW7%O6=M584ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37494,7 +37494,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31-20-generic #58-Ubuntu SMP [TIME] i686 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C6-D0%GCD=1-6%ISR=C4-CE%TI=Z%TS=8) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -37512,7 +37512,7 @@ IE(R=N) # Linux 2.6.31-34-fitpc2 #5 SMP Thu Jan 7 13:49:08 IST 2010 i686 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C5-CF%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%TS=8) OPS(O1=M5ACST11NW6%O2=M5ACST11NW6%O3=M5ACNNT11NW6%O4=M5ACST11NW6%O5=M5ACST11NW6%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37530,7 +37530,7 @@ IE(R=N) # Linux 2.6.31-20-generic #58-Ubuntu SMP Fri Mar 12 04:38:19 UTC 2010 x86_64 GNU/Linux / Ubuntu Karmic Koala 9.10 64-bit Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=F6-100%GCD=1-6%ISR=FD-107%TI=Z%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37548,7 +37548,7 @@ IE(R=N) # Linux 2.6.31-14-server #48-Ubuntu SMP Fri Oct 16 15:07:34 UTC 2009 x86_64 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C0-CA%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=9) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37566,7 +37566,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31-22-generic #60-Ubuntu SMP Thu May 27 02:41:03 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=BF-C9%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -37584,7 +37584,7 @@ IE(DFI=N%T=3C-46%TG=40%CD=S) # OS: 2.6.31-14-server Ubuntu SMP x86_64 GNU/Linux Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C9-D3%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37602,7 +37602,7 @@ IE(DFI=N%T=49-53%TG=80%CD=S) # Gentoo Linux running kernel 2.6.31-r6, It is a VMware guest running on ESX3.5i Fingerprint Linux 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.31 +CPE cpe:/o:linux:linux_kernel:2.6.31 SEQ(SP=C2-CC%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=8|9) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37621,7 +37621,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux box 2.6.32-5-686 #1 SMP Sat Oct 30 22:47:19 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.31 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D2%GCD=1-6%ISR=C7-D3%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37641,7 +37641,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # D-Link DWA-160 HW ver A2 FW Ver 1.80 Fingerprint Linux 2.6.31 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BC-D0%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW5|M400CST11NW6%O2=M400CST11NW5|M400CST11NW6%O3=M400CNNT11NW5|M400CNNT11NW6%O4=M400CST11NW5|M400CST11NW6%O5=M400CST11NW5|M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -37660,7 +37660,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-24-generic #39-Ubuntu SMP Wed Jul 28 06:07:29 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.31 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=CE-D8%TI=Z%CI=Z%II=I%TS=8) OPS(R=N) WIN(R=N) @@ -37679,7 +37679,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-22-generic #36-Ubuntu SMP Thu Jun 3 19:31:57 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.31 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D2%GCD=1-6%ISR=C4-D4%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -37698,7 +37698,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.31-14-generic #48-Ubuntu SMP Fri Oct 16 14:04:26 UTC 2009 i686 GNU/Linux, Linux mint 8 Fingerprint Linux 2.6.31 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-D3%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW6|M400CST11NW7%O2=M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW6|M400CST11NW7%O5=M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -37720,7 +37720,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android Mobile Phone. Samsung GT-S5830 Android Version 2.2.1 Fingerprint Linux 2.6.31 - 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-D2%GCD=1-6%ISR=BC-DA%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37743,7 +37743,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-11-generic #47-Ubuntu SMP Fri Jul 15 19:27:09 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux (Ubuntu 11.04, current updates) Fingerprint Linux 2.6.31 - 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D0%GCD=1-6%ISR=C3-D7%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW8%O2=M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW8%O3=M400CNW5|M400CNW6|M400CNW7|M400CNW8%O4=M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW8%O5=M400CNNSNW5|M400CNNSNW6|M400CNNSNW7|M400CNNSNW8%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -37765,7 +37765,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Iomega StorCenter ix2-200, system software version 3.1.14.995 2011-09-09 15:37, Running Linux version 2.6.31.8 (soho@bsoho128.lss.emc.com) (gcc version 4.3.2 (Sourcery G++ Lite 2008q3-72) ) #1 Thu Sep 8 12:14:38 EDT 2011 Fingerprint Linux 2.6.31 - 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D1%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M2300ST11NW2|M2300ST11NW3|M2300ST11NW4|M2300ST11NW5|M2300ST11NW6|M2300ST11NW7%O2=M2300ST11NW2|M2300ST11NW3|M2300ST11NW4|M2300ST11NW5|M2300ST11NW6|M2300ST11NW7%O3=M2300NNT11NW2|M2300NNT11NW3|M2300NNT11NW4|M2300NNT11NW5|M2300NNT11NW6|M2300NNT11NW7%O4=M2300ST11NW2|M2300ST11NW3|M2300ST11NW4|M2300ST11NW5|M2300ST11NW6|M2300ST11NW7%O5=M2300ST11NW2|M2300ST11NW3|M2300ST11NW4|M2300ST11NW5|M2300ST11NW6|M2300ST11NW7%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -37792,9 +37792,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Sheevaplug Linux 3.0.0-1-kirkwood #1 Mon Jul 25 07:04:14 UTC 2011 armv5tel GNU/Linux Fingerprint Linux 2.6.31 - 3.0 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=B8-D2%GCD=1-6%ISR=BE-D6%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O2=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O3=M400CNNT11NW1|M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW9%O4=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O5=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -37812,7 +37812,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Debian testing, kernel 2.6.32 Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=BF-C9%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M558ST11NW7%O2=M558ST11NW7%O3=M558NNT11NW7%O4=M558ST11NW7%O5=M558ST11NW7%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37830,7 +37830,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-trunk-amd64 #1 SMP Sun Jan 10 22:40:40 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C1-CB%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=8) OPS(O1=M538ST11NW7%O2=M538ST11NW7%O3=M538NNT11NW7%O4=M538ST11NW7%O5=M538ST11NW7%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37849,7 +37849,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Vyatta VC6.0-2010.06.01 Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C2-D0%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37867,7 +37867,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-trunk-686 #1 SMP Sun Jan 10 06:32:16 UTC 2010 i686 GNU/Linux (Debian squeeze) Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C8-D2%GCD=1-6%ISR=CD-D7%TI=Z%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37885,7 +37885,7 @@ IE(R=N) # Linux 2.6.32-22-server #33-Ubuntu SMP Wed Apr 28 14:34:48 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C9-D3%GCD=1-6%ISR=CF-D9%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37903,7 +37903,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-22-generic #33-Ubuntu SMP Wed Apr 28 13:27:30 UTC 2010 i586 GNU/Linux / Ubuntu 10.04 Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=BF-D3%GCD=1-6%ISR=C9-D7%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M564ST11NW3|M564ST11NW5%O2=M564ST11NW3|M564ST11NW5%O3=M564NNT11NW3|M564NNT11NW5%O4=M564ST11NW3|M564ST11NW5%O5=M564ST11NW3|M564ST11NW5%O6=M564ST11) WIN(W1=1560%W2=1560%W3=1560%W4=1560%W5=1560%W6=1560) @@ -37924,7 +37924,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 2.3.4 Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C4-CE%GCD=1-6%ISR=C1-D3%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW4|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW4|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W1|W4=16A0%W5=16A0%W6=16A0) @@ -37942,7 +37942,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-22-generic #33-Ubuntu SMP Wed Apr 28 13:27:30 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C8-D2%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -37960,7 +37960,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-21-server #32-Ubuntu SMP Fri Apr 16 09:17:34 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=B4-D0%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37978,7 +37978,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-22-generic-pae #36-Ubuntu SMP Thu Jun 3 23:14:23 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=B5-BF%GCD=1-6%ISR=BE-C8%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -37996,7 +37996,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-24-generic #38-Ubuntu SMP Mon Jul 5 09:20:59 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C0-CA%GCD=1-6%ISR=C5-CF%TI=I%CI=Z%II=I%SS=S%TS=7) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -38014,7 +38014,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-24-generic #38-Ubuntu SMP Mon Jul 5 09:20:59 UTC 2010 x86_64 GNU/Linux, Ubuntu 10.04 Lucid Lynx Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C9-D3%GCD=1-6%ISR=CF-D9%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38033,7 +38033,7 @@ IE(DFI=S%T=3C-46%TG=40%CD=S) # Linux 2.6.32-25-generic-pae #45-Ubuntu SMP Sat Oct 16 21:01:33 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C3-CD%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M550ST11NW6|M550ST11NW7%O2=M550ST11NW6|M550ST11NW7%O3=M550NNT11NW6|M550NNT11NW7%O4=M550ST11NW6|M550ST11NW7%O5=M550ST11NW6|M550ST11NW7%O6=M550ST11) WIN(W1=1510%W2=1510%W3=1510%W4=1510%W5=1510%W6=1510) @@ -38051,7 +38051,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.12-x86_64-linode15 #1 SMP Sun Jul 25 22:20:38 UTC 2010 x86_64 GNU/Linux / Ubuntu 10.04.1 LTS Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C7-F1%GCD=1-6%ISR=CA-EE%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M396ST11NW5%O2=M396ST11NW5%O3=M396NNT11NW5%O4=M396ST11NW5%O5=M396ST11NW5%O6=M396ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38069,7 +38069,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-trunk-amd64 #1 SMP Sat Dec 26 17:13:29 UTC 2009 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=CA-D4%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M538ST11NW1%O2=M538ST11NW1%O3=M538NNT11NW1%O4=M538ST11NW1%O5=M538ST11NW1%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38087,7 +38087,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.2-xxxx-grs-ipv4-32 #1 SMP Tue Dec 29 14:41:18 UTC 2009 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C3-CD%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=8) OPS(O1=M400CNNT11NW5%O2=M400CNNT11NW5%O3=M400CNNT11NW5%O4=M400CNNT11NW5%O5=M400CNNT11NW5%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -38105,7 +38105,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-24-generic #42-Ubuntu SMP Fri Aug 20 14:24:04 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=CC-D6%GCD=1-6%ISR=CD-D7%TI=Z%CI=RI%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38123,7 +38123,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-25-generic #43-Ubuntu SMP Wed Sep 1 09:46:13 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=B5-BF%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11%O2=M400CST11%O3=M400CNNT11%O4=M400CST11%O5=M400CST11%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -38141,7 +38141,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-25-server #44-Ubuntu SMP Fri Sep 17 21:13:39 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=CA-D4%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B0ST11NW7%O2=M5B0ST11NW7%O3=M5B0NNT11NW7%O4=M5B0ST11NW7%O5=M5B0ST11NW7%O6=M5B0ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38159,7 +38159,7 @@ IE(DFI=N%T=3C-46%TG=40%CD=S) # Linux 2.6.32-25-generic #44-Ubuntu SMP Fri Sep 17 20:05:27 UTC 2010 x86_64 GNU/Linux (Ubuntu 10.04) Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C2-CC%GCD=1-6%ISR=C4-CE%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M596ST11NW7%O2=M596ST11NW7%O3=M596NNT11NW7%O4=M596ST11NW7%O5=M596ST11NW7%O6=M596ST11) WIN(W1=1628%W2=1628%W3=1628%W4=1628%W5=1628%W6=1628) @@ -38177,7 +38177,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-powerpc #1 Sat Oct 30 23:26:42 UTC 2010 ppc GNU/LinuxDebian Squeeze Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C4-CE%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M526ST11NW7%O2=M526ST11NW7%O3=M526NNT11NW7%O4=M526ST11NW7%O5=M526ST11NW7%O6=M526ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38195,7 +38195,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-27-generic #49-Ubuntu SMP Thu Dec 2 00:51:09 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=BF-C9%GCD=1-6%ISR=C3-CD%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -38213,7 +38213,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-686 #1 SMP Fri Dec 10 16:12:40 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C4-CE%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M559ST11NW4%O2=M559ST11NW4%O3=M559NNT11NW4%O4=M559ST11NW4%O5=M559ST11NW4%O6=M559ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38231,7 +38231,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-27-generic-pae #49-Ubuntu SMP Thu Dec 2 00:07:52 UTC 2010 i686 GNU/Linux; Distro: Ubuntu Server 10.04.1 LTS Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=BA-C4%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M536ST11NW6%O2=M536ST11NW6%O3=M536NNT11NW6%O4=M536ST11NW6%O5=M536ST11NW6%O6=M536ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38249,7 +38249,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux version 2.6.32-5-sparc64-smp (Debian 2.6.32-30) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Wed Jan 12 05:23:55 UTC 2011 Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=BB-C5%GCD=1-6%ISR=C4-CE%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5ACST11NW5%O2=M5ACST11NW5%O3=M5ACNNT11NW5%O4=M5ACST11NW5%O5=M5ACST11NW5%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38267,7 +38267,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-30-generic-pae #59-Ubuntu SMP Tue Mar 1 23:01:33 UTC 2011 i686 GNU/Linux Ubuntu 10.04 LTS Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C7-D1%GCD=1-6%ISR=CE-D8%TI=Z%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38286,7 +38286,7 @@ IE(R=N) # Linux 2.6.32-32-server #62-Ubuntu SMP Wed Apr 20 22:07:43 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C6-D0%GCD=1-6%ISR=C6-D6%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38304,7 +38304,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.32-314-ec2 #27-Ubuntu SMP Wed Mar 2 22:53:38 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NW9%O2=M5B4NW9%O3=M5B4NW9%O4=M5B4NW9%O5=M5B4NW9%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -38322,7 +38322,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-26-generic-pae #48-Ubuntu SMP Wed Nov 24 10:31:20 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M514ST11NW6%O2=M514ST11NW6%O3=M514NNT11NW6%O4=M514ST11NW6%O5=M514ST11NW6%O6=M514ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38341,7 +38341,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-amd64 #1 SMP Mon Oct 3 03:59:20 UTC 2011 x86_64 GNU/Linux/Debian Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-115%GCD=1-6%ISR=C6-118%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38359,7 +38359,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.32.27 #1 SMP i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-CB%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -38377,7 +38377,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-32-generic #62-Ubuntu SMP Wed Apr 20 21:52:38 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M536ST11NW6%O2=M536ST11NW6%O3=M536NNT11NW6%O4=M536ST11NW6%O5=M536ST11NW6%O6=M536ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38395,7 +38395,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-amd64 #1 SMP Tue Jun 14 09:42:28 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-CD%GCD=1-6%ISR=BF-C9%TI=Z%TS=8) OPS(O1=M5ACST11NW5%O2=M5ACST11NW5%O3=M5ACNNT11NW5%O4=M5ACST11NW5%O5=M5ACST11NW5%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38413,7 +38413,7 @@ IE(R=N) # Linux 2.6.32-5-amd64 #1 SMP Fri Sep 9 20:23:16 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=101-10B%GCD=1-6%ISR=108-112%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M58CST11NW7%O2=M58CST11NW7%O3=M58CNNT11NW7%O4=M58CST11NW7%O5=M58CST11NW7%O6=M58CST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38431,7 +38431,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-33-server #72-Ubuntu SMP Fri Jul 29 21:21:55 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=EA-112%GCD=1-6%ISR=FB-10B%TI=Z%CI=RD%II=I%TS=7) OPS(O1=M564ST11NW7%O2=M564ST11NW7%O3=M564NNT11NW7%O4=M564ST11NW7%O5=M564ST11NW7%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38449,7 +38449,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-amd64 #1 SMP Mon Oct 3 03:59:20 UTC 2011 x86_64 GNU/Linux, Debian 6.0.3 squeeze 64bit Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F9-10F%GCD=1-6%ISR=101-10D%TI=Z%II=I%TS=8|A) OPS(O1=M564ST11NW7%O2=M564ST11NW7%O3=M564NNT11NW7%O4=M564ST11NW7%O5=M564ST11NW7%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38467,7 +38467,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-ixp4xx #1 Mon Oct 3 12:19:10 UTC 2011 armv5tel GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F9-103%GCD=1-6%ISR=109-113%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38485,7 +38485,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-36-server #79-Ubuntu SMP Tue Nov 8 22:44:38 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F9-103%GCD=1-6%ISR=100-10A%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M2300ST11NW5%O2=M2300ST11NW5%O3=M2300NNT11NW5%O4=M2300ST11NW5%O5=M2300ST11NW5%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -38503,7 +38503,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-35-generic #78-Ubuntu SMP Tue Oct 11 16:11:24 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=FD-107%GCD=1-6%ISR=105-10F%TI=Z%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38521,7 +38521,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-37-generic #81-Ubuntu SMP Fri Dec 2 20:35:14 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=FF-109%GCD=1-6%ISR=103-10D%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M558ST11NW6%O2=NNT11|M558ST11NW6%O3=M558NNT11NW6%O4=M558ST11NW6%O5=M558ST11NW6%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38539,7 +38539,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-33-generic #72-Ubuntu SMP Fri Jul 29 2011 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=90-D0%GCD=1-6%ISR=BC-D2%TI=Z%CI=Z%II=I%TS=8|9|A) OPS(O1=M594ST11NW6%O2=M594ST11NW6%O3=M594NNT11NW6%O4=M594ST11NW6%O5=M594ST11NW6%O6=M594ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38558,7 +38558,7 @@ IE(DFI=N%T=3C-46%TG=40%CD=S) # Linux 2.6.33.2 #1 date armv5tel unknown, Qnap 3.5.1 ( Firmware Version 3.5.1 Build 1002T ) Fingerprint Linux 2.6.32 - 2.6.33 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38578,7 +38578,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.12 #1354 Sat Oct 23 00:47:31 CST 2010 ppc GNU/Linux synology_ppc853x_410 Fingerprint Linux 2.6.32 - 2.6.34 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=C8-D7%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M2300ST11NW5|M2300ST11NW6|M2300ST11NW9%O2=M2300ST11NW5|M2300ST11NW6|M2300ST11NW9%O3=M2300NNT11NW5|M2300NNT11NW6|M2300NNT11NW9%O4=M2300ST11NW5|M2300ST11NW6|M2300ST11NW9%O5=M2300ST11NW5|M2300ST11NW6|M2300ST11NW9%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -38597,7 +38597,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35.14-96.fc14.x86_64 #1 SMP Thu Sep 1 11:59:56 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux / Fedora release 14 (Laughlin) Fingerprint Linux 2.6.32 - 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=C6-D0%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38617,7 +38617,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-31-generic-pae #62-Ubuntu SMP Tue Nov 8 15:43:23 UTC 2011 i686 GNU/Linux / Ubuntu 10.10 maverick Fingerprint Linux 2.6.32 - 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F0-10C%GCD=1-6%ISR=FD-111%TI=Z%CI=Z%II=I%TS=7|8|A) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38636,7 +38636,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.36-ARCH #1 SMP PREEMPT Mon Jan 24 18:41:03 CET 2011 x86_64 ArchLinux Fingerprint Linux 2.6.32 - 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BD-F7%GCD=1-6%ISR=C1-E5%TI=Z%II=I%TS=8) OPS(O1=M5ACST11NW6%O2=M5ACST11NW6%O3=M5ACNNT11NW6%O4=M5ACST11NW6%O5=M5ACST11NW6%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -38655,7 +38655,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.32 - 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-DA%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=7|8) OPS(O1=M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -38677,7 +38677,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Voyage-MPD 0.7.5 GNU Debian based Linux Fingerprint Linux 2.6.32 - 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 SEQ(SP=AC-D0%GCD=1-6%ISR=C5-D5%TI=Z%CI=Z%II=I%TS=7|A) OPS(O1=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -38697,7 +38697,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.39-dfl61-20112910 #1 PREEMPT Fri Aug 19 21:10:50 EEST 2011 armv7l GNU/Linux, Nokia N9 MeeGo 1.2 Harmattan 10.2011.34-1_PR_001 Fingerprint Linux 2.6.32 - 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B6-D8%GCD=1-6%ISR=BE-DA%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -38719,9 +38719,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.1.10-gentoo-r1 #1 SMP Thu Feb 9 09:13:08 EST 2012 i686 Intel(R) Atom(TM) CPU 230 @ 1.60GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.32 - 3.1 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=F1-10B%GCD=1-6%ISR=FE-10E%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O2=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O3=M400CNNT11NW1|M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9%O4=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O5=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -38749,9 +38749,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.42.3-2.fc15.x86_64 #1 SMP Thu Feb 9 01:42:06 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux /etc/redhat-release: Fedora release 15 (Lovelock) Fingerprint Linux 2.6.32 - 3.2 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=E2-10A%GCD=1-6%ISR=EA-110%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O2=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O3=M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7|M400CNNT11NW8|M400CNNT11NW9%O4=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O5=M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7|M400CST11NW8|M400CST11NW9%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -38772,9 +38772,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.2.0-rc5/slackware 13.37 Fingerprint Linux 2.6.32 - 3.2 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=F5-10B%GCD=1-6%ISR=FC-110%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O2=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW1|M400CNNT11NW2|M400CNNT11NW3|M400CNNT11NW4|M400CNNT11NW5|M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O5=M400CST11NW1|M400CST11NW2|M400CST11NW3|M400CST11NW4|M400CST11NW5|M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W1|W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -38792,7 +38792,7 @@ IE(DFI=N%T=3C-46%TG=40%CD=S) # 2.6.33-1.fc13.x86_64 #1 SMP Wed Feb 24 19:55:32 UTC 2010 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.33 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.33 +CPE cpe:/o:linux:linux_kernel:2.6.33 SEQ(SP=BD-C7%GCD=1-6%ISR=C1-CB%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38810,7 +38810,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.33-gentoo #1 SMP Thu Mar 18 22:26:44 CET 2010 x86_64 Intel(R) Xeon(R) CPU E5520 @ 2.27GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.33 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.33 +CPE cpe:/o:linux:linux_kernel:2.6.33 SEQ(SP=C6-D0%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400C%O2=M400C%O3=M400C%O4=M400C%O5=M400C%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -38828,7 +38828,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.33-grml Fingerprint Linux 2.6.33 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.33 +CPE cpe:/o:linux:linux_kernel:2.6.33 SEQ(SP=E8-F2%GCD=1-6%ISR=E6-F0%CI=Z%TS=A) OPS(O1=M5B4NW0NNT11%O2=M578NW0NNT11%O3=M280NW0NNT11%O4=M5B4NW0NNT11%O5=M218NW0NNT11%O6=M109NNT11) WIN(W1=B50%W2=AD8%W3=9D0%W4=B50%W5=830%W6=7E8) @@ -38846,7 +38846,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.34-gentoo-r1 #1 SMP Thu Jun 17 19:28:10 EEST 2010 i686 AMD Athlon(tm) MP 2000+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.34 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.34 +CPE cpe:/o:linux:linux_kernel:2.6.34 SEQ(SP=C5-CF%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M538ST11NW6%O2=M538ST11NW6%O3=M538NNT11NW6%O4=M538ST11NW6%O5=M538ST11NW6%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38864,7 +38864,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.34-gentoo-r1 #27 SMP PREEMPT Tue Jul 20 10:29:48 CEST 2010 i686 AMD Athlon(tm) X2 Dual Core Processor BE-2400 AuthenticAMD GNU/Linux Fingerprint Linux 2.6.34 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.34 +CPE cpe:/o:linux:linux_kernel:2.6.34 SEQ(SP=C9-D3%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -38882,7 +38882,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.34.7-56.fc13.x86_64 #1 SMP Wed Sep 15 03:36:55 UTC 2010 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.34 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.34 +CPE cpe:/o:linux:linux_kernel:2.6.34 SEQ(SP=C1-D1%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38900,7 +38900,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.34.8-68.fc13.i686.PAE #1 SMP Thu Feb 17 14:54:10 UTC 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.34 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.34 +CPE cpe:/o:linux:linux_kernel:2.6.34 SEQ(SP=C4-CE%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M588ST11NW5%O2=M588ST11NW5%O3=M588NNT11NW5%O4=M588ST11NW5%O5=M588ST11NW5%O6=M588ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38918,7 +38918,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-gentoo-r5 #2 SMP Sun Sep 12 17:00:22 EDT 2010 ppc64 PPC970, altivec supported PowerMac7,2 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C7-D1%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M55CST11NW7%O2=M55CST11NW7%O3=M55CNNT11NW7%O4=M55CST11NW7%O5=M55CST11NW7%O6=M55CST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38936,7 +38936,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-22-server #34-Ubuntu SMP Sun Oct 10 10:54:55 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=FD-10B%GCD=1-6%ISR=102-110%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M57EST11NW7%O2=M578ST11NW7%O3=M280NNT11NW7%O4=M22CST11NW7%O5=M218ST11NW7%O6=M109ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38954,7 +38954,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-23-generic #37-Ubuntu SMP Fri Nov 5 19:17:11 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C6-D0%GCD=1-6%ISR=CD-D7%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5A0ST11NW6%O2=M5A0ST11NW6%O3=M5A0NNT11NW6%O4=M5A0ST11NW6%O5=M5A0ST11NW6%O6=M5A0ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -38972,7 +38972,7 @@ IE(DFI=N%T=3C-46%TG=40%CD=S) # Ubuntu Linux omap 2.6.35.7-l6 #1 PREEMPT armv7l GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C8-D2%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW5%O2=M5ACST11NW5%O3=M5ACNNT11NW5%O4=M5ACST11NW5%O5=M5ACST11NW5%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -38990,7 +38990,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-22-generic-pae #33-Ubuntu SMP Sun Sep 19 12:34:43 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C1-CB%GCD=1-6%ISR=CF-D9%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M582ST11NW2%O2=M582ST11NW2%O3=M582NNT11NW2%O4=M582ST11NW2%O5=M582ST11NW2%O6=M582ST11) WIN(W1=15D8%W2=15D8%W3=15D8%W4=15D8%W5=15D8%W6=15D8) @@ -39008,7 +39008,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-23-generic #41-Ubuntu SMP Wed Nov 24 11:55:36 UTC 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C5-CF%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M4ECST11NW7%O2=M4ECST11NW7%O3=M4ECNNT11NW7%O4=M4ECST11NW7%O5=M4ECST11NW7%O6=M4ECST11) WIN(W1=1380%W2=1380%W3=1380%W4=1380%W5=1380%W6=1380) @@ -39026,7 +39026,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35.10-74.fc14.x86_64 (Fedora 14) Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=BA-DA%GCD=1-6%ISR=B9-D7%TI=Z%CI=Z%TS=U) OPS(O1=M400CNW9%O2=M400CNW9%O3=M400CNW9%O4=M400CNW9%O5=M400CNW9%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -39044,7 +39044,7 @@ IE(R=N) # Linux 2.6.35.10-74.fc14.i686 #1 SMP Thu Dec 23 16:17:40 UTC 2010 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C0-CA%GCD=1-6%ISR=C4-D6%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39062,7 +39062,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-24-generic #42-Ubuntu SMP Thu Dec 2 01:41:57 UTC 2010 i686 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C8-D2%GCD=1-6%ISR=CC-D6%TI=Z%CI=I%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39081,7 +39081,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Vyatta Router. VC6.2-2011.02.09 Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C3-CD%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M5B0ST11NW6|M5B0ST11NW7%O2=M5B0ST11NW6|M5B0ST11NW7%O3=M5B0NNT11NW6|M5B0NNT11NW7%O4=M5B0ST11NW6|M5B0ST11NW7%O5=M5B0ST11NW6|M5B0ST11NW7%O6=M5B0ST11) WIN(W1=1690%W2=1690%W3=1690%W4=1690%W5=1690%W6=1690) @@ -39099,7 +39099,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35.11-83.fc14.x86_64 #1 SMP Mon Feb 7 07:06:44 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux / Fedora 14 Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C9-D3%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=MD84ST11NW7%O2=MD84ST11NW7%O3=MD84NNT11NW7%O4=MD84ST11NW7%O5=MD84ST11NW7%O6=MD84ST11) WIN(W1=2868%W2=2868%W3=2868%W4=2868%W5=2868%W6=2868) @@ -39117,7 +39117,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35.11-83.fc14.i686.PAE #1 SMP Mon Feb 7 06:57:55 UTC 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=F9-107%GCD=1-6%ISR=FD-10F%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW5%O2=M564ST11NW5%O3=M564NNT11NW5%O4=M564ST11NW5%O5=M564ST11NW5%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39135,7 +39135,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-28-generic-pae #49-Ubuntu SMP Tue Mar 1 14:58:06 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=BF-C9%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M538ST11NW6%O2=M538ST11NW6%O3=M538NNT11NW6%O4=M538ST11NW6%O5=M538ST11NW6%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39153,7 +39153,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-27-server #48-Ubuntu SMP Tue Feb 22 21:53:16 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C3-CD%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M558ST11NW7%O2=M558ST11NW7%O3=M558NNT11NW7%O4=M558ST11NW7%O5=M558ST11NW7%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39171,7 +39171,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-1-586-vyatta, ALTELL NEO 110 Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C6-D0%GCD=1-6%ISR=C5-CF%TI=Z%CI=Z%TS=8) OPS(O1=M564ST11NW6%O2=M564ST11NW6%O3=M564NNT11NW6%O4=M564ST11NW6%O5=M564ST11NW6%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39189,7 +39189,7 @@ IE(R=N) # Linux 2.6.35-30-generic #57-Ubuntu SMP Tue Aug 9 18:00:33 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CA%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39207,7 +39207,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.35-25-generic #44-Ubuntu SMP Fri Jan 21 17:40:48 UTC 2011 i686 GNU/Linux, VirtualBox Fingerprint Linux 2.6.35 (Ubuntu) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.35 +CPE cpe:/o:linux:linux_kernel:2.6.35 SEQ(SP=C6-D0%GCD=1-6%ISR=C8-D4%TI=Z%TS=8) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39225,7 +39225,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.36-stable+ #16 SMP Sun Nov 7 11:40:54 EET 2010 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.36 +CPE cpe:/o:linux:linux_kernel:2.6.36 SEQ(SP=C3-CD%GCD=1-6%ISR=CD-D7%TI=I%II=I%SS=S%TS=A) OPS(O1=M400CST11NW8%O2=M400CST11NW8%O3=M400CNNT11NW8%O4=M400CST11NW8%O5=M400CST11NW8%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39243,7 +39243,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Linux l 2.6.36-zen055+ #5 ZEN SMP PREEMPT Wed Oct 27 03:51:45 CEST 2010 i686 AMD Sempron(tm) 2400+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.36 +CPE cpe:/o:linux:linux_kernel:2.6.36 SEQ(SP=C3-D3%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=U) OPS(O1=M5B4NW5%O2=M5B4NW5%O3=M5B4NW5%O4=M5B4NW5%O5=M5B4NW5%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -39262,7 +39262,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39-gentoo-r3 #1 SMP Mon Sep 26 14:11:19 EEST 2011 x86_64 Genuine Intel(R) CPU 2160 @ 1.80GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.36 - 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.36 +CPE cpe:/o:linux:linux_kernel:2.6.36 SEQ(SP=C3-CD%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M2300ST11NW6|M2300ST11NW7%O2=M2300ST11NW6|M2300ST11NW7%O3=M2300NNT11NW6|M2300NNT11NW7%O4=M2300ST11NW6|M2300ST11NW7%O5=M2300ST11NW6|M2300ST11NW7%O6=M2300ST11) WIN(W1=45E8%W2=45E8%W3=45E8%W4=45E8%W5=45E8%W6=45E8) @@ -39280,7 +39280,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.36-hardened-r6 #3 SMP Sun Dec 26 15:24:10 CET 2010 x86_64 AMD Athlon(tm) 64 Processor 3000+ AuthenticAMD GNU/Linux Fingerprint Linux 2.6.36 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.36 +CPE cpe:/o:linux:linux_kernel:2.6.36 SEQ(SP=BF-C9%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW4%O2=M5B4ST11NW4%O3=M5B4NNT11NW4%O4=M5B4ST11NW4%O5=M5B4ST11NW4%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -39300,7 +39300,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.36.1 #1 SMP Tue Nov 30 11:37:44 ART 2010 x86_64 GNU/Linux Fingerprint Linux 2.6.36 - 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BC-CE%GCD=1-6%ISR=BB-D7%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39320,7 +39320,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Model: ReadyNAS Ultra 2 [X-RAID2] Serial: 2PG1170Txxxxx Firmware: RAIDiator 4.2.17 Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C1-CF%GCD=1-6%ISR=C5-D3%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39338,7 +39338,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # ArchLinux (Linux dev5 2.6.37-ARCH #1 SMP PREEMPT Sat Jan 29 19:40:04 UTC 2011 i686 Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz GenuineIntel GNU/Linux) Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C4-CE%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M548ST11NW6%O2=M548ST11NW6%O3=M548NNT11NW6%O4=M548ST11NW6%O5=M548ST11NW6%O6=M548ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39356,7 +39356,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37-ARCH #1 SMP PREEMPT Tue Mar 15 11:40:49 UTC 2011 i686 Intel(R) Pentium(R) 4 CPU 3.20GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39374,7 +39374,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37-hardened #1 PREEMPT Sat Jan 22 19:06:50 MSK 2011 i686 Intel(R) Celeron(R) CPU 743 @ 1.30GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C6-D0%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39393,7 +39393,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37.1-1.2-default #1 SMP 2011-02-21 10:34:10 +0100 i686 i686 i386 GNU/Linux openSUSE 11.4 Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C3-D3%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=8|A) OPS(O1=M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39411,7 +39411,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686 Intel(R) Pentium(R) III CPU family 1133MHz GenuineIntel GNU/Linux / Slackware Linux 13.37 Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C6-D0%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39429,7 +39429,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37.6-smp #2 SMP Sat Apr 9 23:39:07 CDT 2011 i686 Intel(R) Pentium(R) 4 CPU 2.80GHz GenuineIntel GNU/Linux Slackware 13.37 Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=C3-CD%GCD=1-6%ISR=CD-D7%TI=Z%CI=Z%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39447,7 +39447,7 @@ IE(R=N) # Gentoo Linux 2.6.37-hardened-r7 Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C5-CF%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39465,7 +39465,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37.6-0.7-desktop #1 SMP PREEMPT 2011-07-21 02:17:24 +0200 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.37 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=CD-D7%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39484,7 +39484,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Open Suse 11.4, Linux 2.6.37.6-0.7-desktop #1 SMP PREEMPT 2011-07-21 02:17:24 +0200 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.37 (OpenSUSE 11.4) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.37 +CPE cpe:/o:linux:linux_kernel:2.6.37 SEQ(SP=B6-D0%GCD=1-6%ISR=C4-D2%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39503,7 +39503,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39.3 #21 SMP PREEMPT Sat Jul 23 09:48:39 CEST 2011 i686 GNU/Linux Fingerprint Linux 2.6.37 - 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=10F8%W2=10F8%W3=10F8%W4=10F8%W5=10F8%W6=10F8) @@ -39521,7 +39521,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 i686 i6 86 i386 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.38 +CPE cpe:/o:linux:linux_kernel:2.6.38 SEQ(SP=C2-D0%GCD=1-6%ISR=C7-D3%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39539,7 +39539,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Fedora 15 Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.38 +CPE cpe:/o:linux:linux_kernel:2.6.38 SEQ(SP=BD-C7%GCD=1-6%ISR=C5-CF%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M550ST11NW7%O2=M550ST11NW7%O3=M550NNT11NW7%O4=M550ST11NW7%O5=M550ST11NW7%O6=M550ST11) WIN(W1=34A8%W2=34A8%W3=34A8%W4=34A8%W5=34A8%W6=34A8) @@ -39557,7 +39557,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.38 +CPE cpe:/o:linux:linux_kernel:2.6.38 SEQ(SP=C3-CD%GCD=1-6%ISR=C4-CE%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=3908%W2=3908%W3=3908%W4=3908%W5=3908%W6=3908) @@ -39575,7 +39575,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38.6-27.fc15.i686.PAE #1 SMP Sun May 15 17:39:47 UTC 2011 i686 i686 i386 GNU/Linux, Fedora 15 Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.38 +CPE cpe:/o:linux:linux_kernel:2.6.38 SEQ(SP=BF-C9%GCD=1-6%ISR=CD-D7%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39593,7 +39593,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-8-server #42-Ubuntu SMP Mon Apr 11 03:49:04 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B4-BE%GCD=1-6%ISR=C0-CA%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39611,7 +39611,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux, Ubuntu 11.04 Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-C3%GCD=1-6%ISR=C6-D2%TI=Z%TS=7|9) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39630,7 +39630,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-D1%GCD=1-6%ISR=C4-D2%TI=Z%CI=Z%II=I%TS=7|8) OPS(O1=M400CST11NW6|M400CST11NW7%O2=M400CST11NW6|M400CST11NW7%O3=M400CNNT11NW6|M400CNNT11NW7%O4=M400CST11NW6|M400CST11NW7%O5=M400CST11NW6|M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39648,7 +39648,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-10-generic #46-Ubuntu SMP Tue Jun 28 15:07:17 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BD-C7%GCD=1-6%ISR=C3-CD%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11NW0%O2=M400CST11NW0%O3=M400CNNT11NW0%O4=M400CST11NW0%O5=M400CST11NW0%O6=M400CST11) WIN(W1=3000%W2=3000%W3=3000%W4=3000%W5=3000%W6=3000) @@ -39666,7 +39666,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-11-generic #49-Ubuntu SMP Mon Aug 29 20:47:07 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux, Kubuntu. Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=CA-D4%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CNNT11NW9%O2=M400CNNT11NW9%O3=M400CNNT11NW9%O4=M400CNNT11NW9%O5=M400CNNT11NW9%O6=M400CNNT11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39685,7 +39685,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Mandriva 2011 (free) Kernel: Linux 2.6.38.7 Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CA%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%TS=A) OPS(O1=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39703,7 +39703,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-11-generic #50-Ubuntu SMP Mon Sep 12 21:18:14 UTC 2011 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-CB%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW5%O2=M400CST11NW5%O3=M400CNNT11NW5%O4=M400CST11NW5%O5=M400CST11NW5%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39721,7 +39721,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-11-generic #50-Ubuntu SMP Mon Sep 12 21:17:25 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C9-D3%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5ACST11NW7%O2=M5ACST11NW7%O3=M5ACNNT11NW7%O4=M5ACST11NW7%O5=M5ACST11NW7%O6=M5ACST11) WIN(W1=3840%W2=3840%W3=3840%W4=3840%W5=3840%W6=3840) @@ -39739,7 +39739,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C3-CD%GCD=1-6%ISR=C3-CD%TI=Z%CI=Z%TS=8) OPS(O1=M550ST11NW5%O2=M550ST11NW5%O3=M550NNT11NW5%O4=M550ST11NW5%O5=M550ST11NW5%O6=M550ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39757,7 +39757,7 @@ IE(R=N) # Linux 2.6.38-12-generic-pae #51-Ubuntu SMP Wed Sep 28 16:11:32 UTC 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=102-10C%GCD=1-6%ISR=109-113%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -39775,7 +39775,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-13-generic-pae #52-Ubuntu SMP Tue Nov 8 17:50:45 UTC 2011 i686 i686 i386 GNU/Linux / UBUNTU Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=FB-105%GCD=1-6%ISR=109-113%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39793,7 +39793,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-2-amd64 #1 SMP Sun May 8 13:51:57 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=CB-D5%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M1BC6ST11NW7%O2=M1BC6ST11NW7%O3=M1BC6NNT11NW7%O4=M1BC6ST11NW7%O5=M1BC6ST11NW7%O6=M1BC6ST11) WIN(W1=3774%W2=3774%W3=3774%W4=3774%W5=3774%W6=3774) @@ -39811,7 +39811,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39-2-686-pae #1 SMP Tue Jul 5 03:48:49 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.38 - 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=CA-D4%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M558ST11NW4|M558ST11NW5|M558ST11NW6|M558ST11NW7%O2=M558ST11NW4|M558ST11NW5|M558ST11NW6|M558ST11NW7%O3=M558NNT11NW4|M558NNT11NW5|M558NNT11NW6|M558NNT11NW7%O4=M558ST11NW4|M558ST11NW5|M558ST11NW6|M558ST11NW7%O5=M558ST11NW4|M558ST11NW5|M558ST11NW6|M558ST11NW7%O6=M558ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39832,9 +39832,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.1 #2 PREEMPT Fri Aug 5 19:33:04 MDT 2011 armv5tel GNU/Linux Fingerprint Linux 2.6.38 - 3.0 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 +CPE cpe:/o:linux:linux_kernel:3 SEQ(SP=B9-CF%GCD=1-6%ISR=C2-D8%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39854,9 +39854,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-rc3-00256-gde505e7 #1 SMP PREEMPT Sun Jun 19 16:46:25 EDT 2011 i686 Intel(R) Atom(TM) CPU N270 @ 1.60GHz GenuineIntel GNU/Linux (distro is Gentoo) Fingerprint Linux 2.6.38 - 3.0 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=BA-D4%GCD=1-A%ISR=C2-DA%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39877,9 +39877,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0-ARCH #1 SMP PREEMPT Sat Aug 6 16:49:00 CEST 2011 i686 Intel(R) Atom(TM) CPU N270 @ 1.60GHz GenuineIntel GNU/Linux Fingerprint Linux 2.6.38 - 3.0 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=B9-D3%GCD=1-6%ISR=C2-D6%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39903,9 +39903,9 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.2.0-4-generic-pae #10-Ubuntu SMP Sat Dec 10 19:49:35 UTC 2011 i686 i686 i386 GNU/Linux, Ubuntu 12.04 alpha 1 Fingerprint Linux 2.6.38 - 3.2 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=F5-10B%GCD=1-6%ISR=F7-111%TI=Z%CI=Z%II=I%TS=7|8|A|C) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39923,7 +39923,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39.1-linode34 #1 SMP Tue Jun 21 10:29:24 EDT 2011 i686 GNU/Linux Fingerprint Linux 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.39 +CPE cpe:/o:linux:linux_kernel:2.6.39 SEQ(SP=C6-D0%GCD=1-6%ISR=C5-D8%TI=Z%II=I%TS=A) OPS(O1=M5ACST11NW5%O2=M5ACST11NW5%O3=M5ACNNT11NW5%O4=M5ACST11NW5%O5=M5ACST11NW5%O6=M5ACST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39941,7 +39941,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39.1-linode34 #1 SMP Tue Jun 21 10:29:24 EDT 2011 i686 GNU/Linux Fingerprint Linux 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW5%O2=M5B4ST11NW5%O3=M5B4NNT11NW5%O4=M5B4ST11NW5%O5=M5B4ST11NW5%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39959,7 +39959,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39-2-amd64 #1 SMP Tue Jul 5 02:51:22 UTC 2011 x86_64 GNU/Linux / Debian wheezy/sid Fingerprint Linux 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=C6-D0%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M556ST11NW7%O2=M556ST11NW7%O3=M556NNT11NW7%O4=M556ST11NW7%O5=M556ST11NW7%O6=M556ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39977,7 +39977,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.39.1-linode34 #1 SMP Tue Jun 21 10:29:24 EDT 2011 i686 GNU/Linux Fingerprint Linux 2.6.39 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C2-D0%GCD=1-6%ISR=C0-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -39995,7 +39995,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.97-pseries64 #1 SMP Fri Jul 2 14:21:59 UTC 2004 ppc64 ppc64 ppc64 GNU/Linux Fingerprint Linux 2.6.5 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.5 +CPE cpe:/o:linux:linux_kernel:2.6.5 SEQ(SP=C8-D2%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40013,7 +40013,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.202.7-smp #1 SMP Tue Nov 29 14:32:53 UTC 2005 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.5 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.5 +CPE cpe:/o:linux:linux_kernel:2.6.5 SEQ(SP=B8-C2%GCD=1-6%ISR=BD-C7%TI=Z%II=I%TS=U) OPS(O1=M400CNNSNW0%O2=M400CNNSNW0%O3=M400CNW0%O4=M400CNNSNW0%O5=M400CNNSNW0%O6=M400CNNS) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -40031,7 +40031,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.244-sn2 #1 SMP Mon Dec 12 18:32:25 UTC 2005 ia64 ia64 ia64 GNU/Linux, SUSE LINUX Enterprise Server 9 (ia64) Fingerprint Linux 2.6.5 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.5 +CPE cpe:/o:linux:linux_kernel:2.6.5 SEQ(SP=C6-D0%GCD=1-6%ISR=C1-CB%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40049,7 +40049,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.244-smp #1 SMP Mon Dec 12 18:32:25 UTC 2005 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.5 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.5 +CPE cpe:/o:linux:linux_kernel:2.6.5 SEQ(SP=F3-105%GCD=1-6%ISR=F6-108%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW0%O2=M564ST11NW0%O3=M564NNT11NW0%O4=M564ST11NW0%O5=M564ST11NW0%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40067,7 +40067,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-1.358 #1 Sat May 8 09:04:50 EDT 2004 i686 i686 i386 Fedora Core 2 GNU/Linux Fingerprint Linux 2.6.5 (Fedora Core 2) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.5 +CPE cpe:/o:linux:linux_kernel:2.6.5 SEQ(SP=BD-C7%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=A) OPS(O1=M538ST11NW0%O2=M538ST11NW0%O3=M538NNT11NW0%O4=M538ST11NW0%O5=M538ST11NW0%O6=M538ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40085,7 +40085,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.244-smp #1 SMP Mon Dec 12 18:32:25 UTC 2005 i686 i686 i386 GNU/Linux, SUSE LINUX Enterprise Server 9 (i586) Fingerprint Linux 2.6.5 (SUSE Enterprise Server 9) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.5 +CPE cpe:/o:linux:linux_kernel:2.6.5 SEQ(SP=C7-D1%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40108,7 +40108,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.12-gentoo-r6 #7 Fingerprint Linux 2.6.5 - 2.6.12 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BC-CE%GCD=1-6%ISR=BC-D6%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40127,7 +40127,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 12:03:43 EST 2008 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.5 - 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-D4%GCD=1-6%ISR=C5-D3%TI=Z%CI=I%II=I%TS=A) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40147,7 +40147,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.19-1.2895.fc6 #1 SMP Wed Jan 10 19:28:18 EST 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.5 - 2.6.19 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-D2%GCD=1-6%ISR=CA-D8%TI=Z%II=I%TS=C) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40168,7 +40168,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-1.358 #1 Sat May 8 09:04:50 EDT 2004 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.5 - 2.6.9 (x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D1%GCD=1-6%ISR=C5-D1%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW0%O2=M400CST11NW0%O3=M400CNNT11NW0%O4=M400CST11NW0%O5=M400CST11NW0%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -40186,7 +40186,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.5-7.283-smp #1 SMP Wed Nov 29 16:55:53 UTC 2006 i686 i686 i386 GNU/Linux SUSE LINUX Enterprise Server 9 (i586) Fingerprint Linux 2.6.5-7.283-smp (SuSE Enterprise Server 9, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=A) OPS(O1=M558ST11NW0%O2=M558ST11NW0%O3=M558NNT11NW0%O4=M558ST11NW0%O5=M558ST11NW0%O6=M558ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40204,7 +40204,7 @@ IE(DFI=N%T=3A-44%TG=40%CD=S) # Linux 2.6.6 #1 SMP Sun Jun 13 16:38:12 BST 2004 i686 GNU/Linux - "Debian 3.1" Fingerprint Linux 2.6.6 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.6 +CPE cpe:/o:linux:linux_kernel:2.6.6 SEQ(SP=B2-C8%GCD=1-6%ISR=C0-CA%TI=Z%II=I%TS=A) OPS(O1=M4BEST11NW0%O2=M4BEST11NW0%O3=M4BENNT11NW0%O4=NNT11|M4BEST11NW0%O5=M4BEST11NW0%O6=M4BEST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40222,7 +40222,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.8-3-686 #1 Tue Dec 5 21:26:38 UTC 2006 i686 GNU/Linux / Debian 3.1 Fingerprint Linux 2.6.8 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.8 +CPE cpe:/o:linux:linux_kernel:2.6.8 SEQ(SP=C7-D1%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=9) OPS(O1=M4BEST11NW0%O2=M4BEST11NW0%O3=M4BENNT11NW0%O4=M4BEST11NW0%O5=M4BEST11NW0%O6=M4BEST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40240,7 +40240,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.8-1-686 #1 Thu Nov 25 04:34:30 UTC 2004 i686 GNU/Debian 3.1 Fingerprint Linux 2.6.8 (Debian 3.1) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.8 +CPE cpe:/o:linux:linux_kernel:2.6.8 SEQ(SP=CA-D4%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M4C2ST11NW0%O2=M4C2ST11NW0%O3=M4C2NNT11NW0%O4=M4C2ST11NW0%O5=M4C2ST11NW0%O6=M4C2ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40258,7 +40258,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.8-3-686-smp i686 Debian Sarge Fingerprint Linux 2.6.8 (Debian Sarge) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.8 +CPE cpe:/o:linux:linux_kernel:2.6.8 SEQ(SP=C5-CF%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A) OPS(O1=M586ST11NW0%O2=M586ST11NW0%O3=M586NNT11NW0%O4=M586ST11NW0%O5=M586ST11NW0%O6=M586ST11) WIN(W1=15E8%W2=15E8%W3=15E8%W4=15E8%W5=15E8%W6=15E8) @@ -40276,7 +40276,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.8-2-386 #1 Tue Aug 16 12:46:35 UTC 2005 i686 GNU/Linux debian Fingerprint Linux 2.6.8 (Debian, x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.8 +CPE cpe:/o:linux:linux_kernel:2.6.8 SEQ(SP=C4-CE%GCD=1-6%ISR=CD-D7%TI=Z%TS=A) OPS(O1=M5ACST11NW0%O2=M5ACST11NW0%O3=M5ACNNT11NW0%O4=M5ACST11NW0%O5=M5ACST11NW0%O6=M5ACST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -40294,7 +40294,7 @@ IE(R=N) # Linux 2.6.8-2-686 #1 Tue Aug 16 13:22:48 UTC 2005 i686 GNU/Linux Fingerprint Linux 2.6.8 (x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.8 +CPE cpe:/o:linux:linux_kernel:2.6.8 SEQ(SP=C6-D0%GCD=1-6%ISR=CA-D4%TI=Z%II=I%TS=A) OPS(O1=M584ST11NW0%O2=M584ST11NW0%O3=M584NNT11NW0%O4=M584ST11NW0%O5=M584ST11NW0%O6=M584ST11) WIN(W1=1680%W2=1680%W3=1680%W4=1680%W5=1680%W6=1680) @@ -40324,7 +40324,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux version 2.6.8.1 (root@localhost.localdomain) (gcc version 3.4.2) #1 Wed Jul 2 19:28:36 CST 2008 Fingerprint Linux 2.6.8 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B6-D2%GCD=1-6%ISR=C3-D5%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40351,7 +40351,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.32-33-generic #72-Ubuntu SMP Fri Jul 29 21:08:37 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.8 - 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B3-D1%GCD=1-6%ISR=B7-D7%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -40369,7 +40369,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-55.0.2.ELsmp #1 SMP Tue Jun 12 17:59:08 EDT 2007 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=BB-C7%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=A|C) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40388,7 +40388,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Telsey CPVA500 router. Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C3-CD%GCD=1-6%ISR=C3-D3%TI=Z%II=I%TS=B|C) OPS(O1=M5B4ST11NW2|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40406,7 +40406,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-34.ELsmp #1 SMP Fri Feb 24 16:54:53 EST 2006 i686 i686 i386 GNU/Linux (in a virtual machine under ESX) Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=CB-D5%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=A) OPS(O1=M5B0ST11NW2%O2=M5B0ST11NW2%O3=M5B0NNT11NW2%O4=M5B0ST11NW2%O5=M5B0ST11NW2%O6=M5B0ST11) WIN(W1=1690%W2=1690%W3=1690%W4=1690%W5=1690%W6=1690) @@ -40424,7 +40424,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.9-42.ELsmp, running on NCTUns simulator (http://nsl10.csie.nctu.edu.tw/) Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C1-CB%GCD=1-6%ISR=C3-CD%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40442,7 +40442,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:27:17 EDT 2006 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=FC-106%GCD=1-6%ISR=103-10F%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW2%O2=M564ST11NW2%O3=M280NNT11NW2%O4=M22CST11NW2%O5=M218ST11NW2%O6=M109ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40460,7 +40460,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-78.0.13.EL #1 Wed Jan 14 16:00:26 EST 2009 i686 i686 i386 GNU/Linux CentOS release 4.7 (Final) Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C4-CE%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400CNNS%O2=M400CNNS%O3=M400C%O4=M400CNNS%O5=M400CNNS%O6=M400CNNS) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -40479,7 +40479,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux node24 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=B3-CF%GCD=1-6%ISR=CB-D5%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40497,7 +40497,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-67.ELsmp #1 SMP Wed Nov 7 13:58:04 EST 2007 Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C8-D2%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M45BST11NW2%O2=M45BST11NW2%O3=M45BNNT11NW2%O4=M45BST11NW2%O5=M45BST11NW2%O6=M45BST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40515,7 +40515,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-89.0.23.ELsmp #1 SMP Wed Mar 17 06:55:21 EDT 2010 i686 i686 i386 GNU/Linux (CentOS 4.8) Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C2-CC%GCD=1-6%ISR=C6-D0%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40533,7 +40533,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-22.0.1.ELsmp #1 SMP Thu Oct 27 13:14:25 CDT 2005 i686 athlon i386 GNU/Linux (CentOS 4.2) Fingerprint Linux 2.6.9 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=BF-C9%GCD=1-6%ISR=CB-D5%TI=Z%CI=I%II=I%TS=A) OPS(O1=M7A8ST11NW2%O2=M7A8ST11NW2%O3=M7A8NNT11NW2%O4=M7A8ST11NW2%O5=M7A8ST11NW2%O6=M7A8ST11) WIN(W1=16D4%W2=16D4%W3=16D4%W4=16D4%W5=16D4%W6=16D4) @@ -40551,7 +40551,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.9-34.ELsmp CentOS release 4.3 (Final) Fingerprint Linux 2.6.9 (CentOS 4.3) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C6-D0%GCD=1-6%ISR=CC-D6%TI=Z%CI=I%II=I%TS=A) OPS(O1=M578ST11NW2%O2=M578ST11NW2%O3=M578NNT11NW2%O4=M578ST11NW2%O5=M578ST11NW2%O6=M578ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40569,7 +40569,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-42.ELsmp #1 SMP Sat Aug 12 09:39:11 CDT 2006 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.9 (CentOS 4.4) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=CA-D4%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40587,7 +40587,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-67.ELsmp #1 SMP Wed Nov 7 13:56:44 EST 2007 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.9 (Red Hat Enterprise Linux, x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.9 +CPE cpe:/o:linux:linux_kernel:2.6.9 SEQ(SP=C1-CB%GCD=1-6%ISR=C8-D2%TI=Z%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40606,7 +40606,7 @@ IE(DFI=N%T=5F-69%TG=80%CD=S) # Linux 2.6.11 #5 Mon Jan 26 22:38:00 CET 2009 i686 unknown unknown GNU/Linux Fingerprint Linux 2.6.9 - 2.6.11 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-C9%GCD=1-6%ISR=BD-D1%TI=Z%CI=I%II=I%TS=U) OPS(O1=M400CNNSNW2%O2=M400CNNSNW2%O3=M400CNW2%O4=M400CNNSNW2%O5=M400CNNSNW2%O6=M400CNNS) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -40625,7 +40625,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.14.4 #1 PREEMPT Fri Feb 17 09:59:01 GMT 2006 i686 unknown unknown GNU/Linux slackware linux Fingerprint Linux 2.6.9 - 2.6.14 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-D0%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=A) OPS(O1=M58CST11NW2|M58CST11NW7%O2=M58CST11NW2|M58CST11NW7%O3=M58CNNT11NW2|M58CNNT11NW7%O4=M58CST11NW2|M58CST11NW7%O5=M58CST11NW2|M58CST11NW7%O6=M58CST11) WIN(W1=1600%W2=1600%W3=1600%W4=1600%W5=1600%W6=1600) @@ -40651,7 +40651,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.15-23-386 #1 PREEMPT Tue May 23 13:49:40 UTC 2006 i686 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.15 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AE-CE%GCD=1-6%ISR=C4-DB%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW2%O2=M400CST11NW2%O3=M400CNNT11NW2%O4=M400CST11NW2%O5=M400CST11NW2%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -40670,7 +40670,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-89.ELlargesmp #1 SMP Mon Apr 20 10:43:12 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F0-10C%GCD=1-6%ISR=FA-10E%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW2|M564ST11NW3|M564ST11NW4|M564ST11NW5|M564ST11NW6|M564ST11NW7|M564ST11NW8%O2=M564ST11NW2|M564ST11NW3|M564ST11NW4|M564ST11NW5|M564ST11NW6|M564ST11NW7|M564ST11NW8%O3=M564NNT11NW2|M564NNT11NW3|M564NNT11NW4|M564NNT11NW5|M564NNT11NW6|M564NNT11NW7|M564NNT11NW8%O4=M564ST11NW2|M564ST11NW3|M564ST11NW4|M564ST11NW5|M564ST11NW6|M564ST11NW7|M564ST11NW8%O5=M564ST11NW2|M564ST11NW3|M564ST11NW4|M564ST11NW5|M564ST11NW6|M564ST11NW7|M564ST11NW8%O6=M564ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40693,7 +40693,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux dm8000 2.6.18-7.4-dm8000 #1 SMP Sun Oct 17 23:24:05 UTC 2010 7400d0-smp GNU/Linux Fingerprint Linux 2.6.9 - 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BA-D4%GCD=1-6%ISR=AE-D4%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40712,7 +40712,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # CentOS 4.6 - 2.6.9-34.0.2.ELsmp #1 SMP Fri Jul 7 19:52:49 CDT 2006 i686 i686 i386 GNU/Linux (trixbox 2.6.x) Fingerprint Linux 2.6.9 - 2.6.18 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=FD-10B%GCD=1-6%ISR=104-10E%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2|M5B4ST11NW4|M5B4ST11NW7%O2=M578ST11NW2|M578ST11NW4|M578ST11NW7%O3=M280NNT11NW2|M280NNT11NW4|M280NNT11NW7%O4=M22CST11NW2|M22CST11NW4|M22CST11NW7%O5=M218ST11NW2|M218ST11NW4|M218ST11NW7%O6=M109ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40737,7 +40737,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys 4410N Wireless Access Point Fingerprint Linux 2.6.9 - 2.6.19 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AB-D5%GCD=1-6%ISR=C0-D6%TI=Z%CI=I%II=I%TS=A) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40757,7 +40757,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:27:17 EDT 2006 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.21 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-D0%GCD=1-6%ISR=C7-D5%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW7|M5B4NNSNW9%O2=M5B4NNSNW7|M5B4NNSNW9%O3=M5B4NW7|M5B4NW9%O4=M5B4NNSNW7|M5B4NNSNW9%O5=M5B4NNSNW7|M5B4NNSNW9%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -40780,7 +40780,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.24-1-686 #1 SMP Sat Apr 19 00:37:55 UTC 2008 i686 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C0-CE%GCD=1-6%ISR=C7-D5%TI=Z%CI=Z%II=I%TS=9) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40800,7 +40800,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-55.EL x86 GNU/Linux - CentOS release 4.5 (Final) Fingerprint Linux 2.6.9 - 2.6.24 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C6-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4NNT11NW2|M5B4NNT11NW8|M5B4NNT11NW9%O2=M5B4NNT11NW2|M5B4NNT11NW8|M5B4NNT11NW9%O3=M5B4NNT11NW2|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4NNT11NW2|M5B4NNT11NW8|M5B4NNT11NW9%O5=M5B4NNT11NW2|M5B4NNT11NW8|M5B4NNT11NW9%O6=M5B4NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40823,7 +40823,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys SWR2008MP Fingerprint Linux 2.6.9 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B6-D2%GCD=1-6%ISR=B5-D9%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW2|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW2|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW2|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW2|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40848,7 +40848,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.35-170.2.94.fc10.i686 #1 SMP Thu Oct 1 14:58:51 EDT 2009 i686 i686 i386 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-D2%GCD=1-6%ISR=BF-D9%TI=Z%II=I%TS=A|B) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40875,7 +40875,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.27.24-170.2.68.fc10.i686 #1 SMP Wed May 20 23:10:16 EDT 2009 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.27 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BF-D1%GCD=1-6%ISR=C2-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NWA%O2=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NWA%O3=M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NWA%O4=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NWA%O5=M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NWA%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40919,7 +40919,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.40.6-0.fc15.i686 i686 i686 i386 GNU/Linux (Fedora 15) Fingerprint Linux 2.6.9 - 2.6.30 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=AF-DE%GCD=1-6%ISR=B9-D9%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9|M5B4NNT11NWA%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -40986,7 +40986,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-15-generic-pae #24-Ubuntu SMP Mon Dec 12 17:21:42 UTC 2011 i686 athlon i386 GNU/Linux Fingerprint Linux 2.6.9 - 2.6.31 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=A6-E1%GCD=1-6%ISR=B4-DF%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9|M5B4NNT11NWA%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9|M5B4ST11NWA%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41004,7 +41004,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-022stab078.19-enterprise #1 SMP Mon Aug 28 15:41:53 MSD 2006 i686 athlon i386 GNU/Linux CentOS 4.2 Fingerprint Linux 2.6.9-022stab078.19-enterprise (CentOS 4.2 x86) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C8-D2%GCD=1-6%ISR=CE-D8%TI=Z%TS=A) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41022,7 +41022,7 @@ IE(R=N) # Linux 2.6.9-22.0.1.EL x86 CentOS 4.4 Fingerprint Linux 2.6.9-22.0.1.EL (CentOS 4.4) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=A) OPS(O1=M5B4NNT11%O2=M5B4NNT11%O3=M5B4NNT11%O4=M5B4NNT11%O5=M5B4NNT11%O6=M5B4NNT11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41040,7 +41040,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:32:02 EDT 2006 x86_64 x86_64 x86_64 GNU/Linux Redhat Enterprise Linux AS release 4 AMD64 Fingerprint Linux 2.6.9-42.ELsmp (Red Hat Enterprise Linux AS release 4, x86_64) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BE-C8%GCD=1-6%ISR=C3-CD%TI=Z%II=I%TS=A) OPS(O1=M400CST11NW4%O2=M400CST11NW4%O3=M400CNNT11NW4%O4=M400CST11NW4%O5=M400CST11NW4%O6=M400CST11) WIN(W1=7FFF%W2=7FFF%W3=7FFF%W4=7FFF%W5=7FFF%W6=7FFF) @@ -41058,7 +41058,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.9-55.0.2.EL #1 Tue Jun 12 17:47:10 EDT 2007 i686 athlon i386 GNU/Linux - Red Hat Enterprise Linux ES release 4 (Nahant Update 5) Fingerprint Linux 2.6.9-55.0.2.EL (Red Hat Enterprise Linux) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41076,7 +41076,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-028stab045 #1 SMP Wed Oct 3 20:08:06 CEST 2007 x86_64 GNU/Linux / Debian GNU/Linux 4.0, patched kernel with the OpenVZ virtualization system Fingerprint OpenVZ Linux virtualization kernel (Linux 2.6.18-028stab045) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW3%O2=M5B4ST11NW3%O3=M5B4NNT11NW3%O4=M5B4ST11NW3%O5=M5B4ST11NW3%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41094,7 +41094,7 @@ IE(DFI=N%T=41%TG=40%CD=S) # Linux 2.6.16.60 #1 Wed Mar 5 13:23:42 GMT 2008 i686 GNU/Linux, SmoothWall Express 3.0-polar-i386 3.0 Fingerprint Smoothwall Express 3.0 (Linux 2.6.16) Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.16 +CPE cpe:/o:linux:linux_kernel:2.6.16 SEQ(SP=FF-109%GCD=1-6%ISR=103-10D%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW2%O2=M578ST11NW2%O3=M280NNT11NW2%O4=M22CST11NW2%O5=M218ST11NW2%O6=M109ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41112,7 +41112,7 @@ IE(DFI=N%T=40%TG=40%CD=S) # Linux 2.6.36.4Tiamat-Xoom_v1.4.1--g1fb3f0e #7 SMP PREEMPT Sun May 1 23:37:50 PDT 2011 armv7l GNU/Linux, Motorola XooM, Android 3.x Tablet Fingerprint Android 3 (Linux 2.6.36) Class Linux | Linux | 2.6.X | media device -CPE cpe:/o:linux:kernel:2.6.36 +CPE cpe:/o:linux:linux_kernel:2.6.36 SEQ(SP=C0-CA%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41132,7 +41132,7 @@ IE(R=N) Fingerprint Dish Network VIP 722k DVR (Linux 2.6) Class Linux | Linux | 2.6.X | media device CPE cpe:/h:dish:vip_722k -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=CA-DA%TI=Z%CI=Z%II=I%TS=A|B) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41150,7 +41150,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux dm800 2.6.12-5.1-brcmstb-dm800 #1 Thu Dec 10 21:10:32 CET 2009 7401c0-nand unknown, chinese clone of a Dreambox DM800C running Gemini 4.6 (distro) Fingerprint Linux 2.6.12 (Dreambox derivative) Class Linux | Linux | 2.6.X | media device -CPE cpe:/o:linux:kernel:2.6.12 +CPE cpe:/o:linux:linux_kernel:2.6.12 SEQ(SP=B5-BF%GCD=1-6%ISR=C2-CC%TI=RD%II=RI%TS=A) OPS(O1=M5B4ST11NW2%O2=M5B4ST11NW2%O3=M5B4NNT11NW2%O4=M5B4ST11NW2%O5=M5B4ST11NW2%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41168,7 +41168,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18-53.1.19.el5 #1 SMP Wed May 7 08:20:19 EDT 2008 i686 i686 i386 GNU/Linux, Elastix (Asterix on Centos 5.2) Fingerprint Elastix PBX (Linux 2.6.18) Class Linux | Linux | 2.6.X | PBX -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=BB-C5%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=A|B) OPS(O1=M555ST11NW7%O2=M555ST11NW7%O3=M555NNT11NW7%O4=M555ST11NW7%O5=M555ST11NW7%O6=M555ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41187,7 +41187,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 2.1 Fingerprint Android 1.1 (Linux 2.6.25) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.25 +CPE cpe:/o:linux:linux_kernel:2.6.25 CPE cpe:/o:google:android:1.1 SEQ(SP=C6-D0%GCD=1-6%ISR=CD-D9%TI=Z%CI=Z%II=I%TS=7|A) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) @@ -41206,7 +41206,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 2.6.27-8dd6deee/ Android 1.5 Fingerprint Android 1.5 (Linux 2.6.27) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 CPE cpe:/o:google:android:1.5 SEQ(SP=C3-CD%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=7) OPS(O1=ST11M5B4NW2%O2=ST11M5B4NW2%O3=NNT11M5B4NW2%O4=ST11M5B4NW2%O5=ST11M5B4NW2%O6=ST11M5B4) @@ -41229,7 +41229,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 1.6 (Donut) Linux (kernel 2.6.27)based system Fingerprint Android 1.5 - 1.6 (Linux 2.6.27) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.27 +CPE cpe:/o:linux:linux_kernel:2.6.27 CPE cpe:/o:google:android:1 SEQ(SP=AE-CE%GCD=1-6%ISR=C6-D4%TI=Z%CI=Z%II=I%TS=7) OPS(O1=ST11M5B4NW1%O2=ST11M5B4NW1%O3=NNT11M5B4NW1%O4=ST11M5B4NW1%O5=ST11M5B4NW1%O6=ST11M5B4) @@ -41249,7 +41249,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) Fingerprint Android 2.0.1 (Linux 2.6) Class Linux | Linux | 2.6.X | phone CPE cpe:/o:google:android:2.0.1 -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M550ST11NW1%O2=M550ST11NW1%O3=M550NNT11NW1%O4=M550ST11NW1%O5=M550ST11NW1%O6=M550ST11) WIN(W1=1510%W2=1510%W3=1510%W4=1510%W5=1510%W6=1510) @@ -41270,7 +41270,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 2.1 Fresh 2.3.3 mod Fingerprint Android 2.1-update1 (Linux 2.6.29) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.29 +CPE cpe:/o:linux:linux_kernel:2.6.29 CPE cpe:/o:google:android:2.1:rev1 SEQ(SP=BA-D0%GCD=1-6%ISR=BF-D3%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1|M5B4ST11NW2%O2=M5B4ST11NW1|M5B4ST11NW2%O3=M5B4NNT11NW1|M5B4NNT11NW2%O4=M5B4ST11NW1|M5B4ST11NW2%O5=M5B4ST11NW1|M5B4ST11NW2%O6=M5B4ST11) @@ -41289,7 +41289,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 2.1-update1 Fingerprint Android 2.1-update1 (Linux 2.6.29) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.29 +CPE cpe:/o:linux:linux_kernel:2.6.29 CPE cpe:/o:google:android:2.1:rev1 SEQ(SP=C9-D3%GCD=1-6%ISR=CD-D7%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) @@ -41309,7 +41309,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) Fingerprint Android 2.2 (Linux 2.6) Class Linux | Linux | 2.6.X | phone CPE cpe:/o:google:android:2.2 -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BB-C5%GCD=1-6%ISR=C0-CA%TI=Z%CI=Z%II=I%TS=7) OPS(O1=%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=FAF0%W2=FAF0%W3=FAF0%W4=FAF0%W5=FAF0%W6=FAF0) @@ -41328,7 +41328,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) Fingerprint Android 2.2 (Linux 2.6) Class Linux | Linux | 2.6.X | phone CPE cpe:/o:google:android:2.2 -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-D2%GCD=1-6%ISR=C7-D1%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=FAF0%W2=FAF0%W3=FAF0%W4=FAF0%W5=FAF0%W6=FAF0) @@ -41346,7 +41346,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # HTC "Desire" mobile phone, Android 2.2, Kernel 2.6.32.15-g6a358a9 htc-kernel@and18-2#1, Build number 2.10.751.3 Fingerprint Android 2.2 (Linux 2.6.32) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 CPE cpe:/o:google:android:2.2 SEQ(SP=C6-D0%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) @@ -41365,7 +41365,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Andriod 2.2 Kernel 2.6.32.9 FROYO-BOJJ3 Fingerprint Android 2.2 (Linux 2.6.32) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 CPE cpe:/o:google:android:2.2 SEQ(SP=BC-C8%GCD=1-6%ISR=C2-DE%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) @@ -41386,7 +41386,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Android 2.2.1 running on a Samsung Galaxy S (GT-I9000) Fingerprint Android 2.2 - 2.2.1 (Linux 2.6.32) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 CPE cpe:/o:google:android:2 SEQ(SP=BD-CF%GCD=1-6%ISR=BD-D1%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW2|M5B4NNSNW3%O2=M5B4NNSNW2|M5B4NNSNW3%O3=M5B4NW2|M5B4NW3%O4=M5B4NNSNW2|M5B4NNSNW3%O5=M5B4NNSNW2|M5B4NNSNW3%O6=M5B4NNS) @@ -41407,7 +41407,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.37.6-cyanogenmod-01509-g8913be8 #1 PREEMPT Wed Jul 27 21:31:24 EDT 2011 armv7l GNU/Linux, Google Nexus One (HTC phone), Cyanogenmod 7. Fingerprint Android 2.2 - 2.3.3 (Linux 2.6.32 - 2.6.37) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 CPE cpe:/o:google:android:2 SEQ(SP=C4-D2%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) @@ -41438,7 +41438,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) Fingerprint Android 2.2 - 2.3.5 (Linux 2.6.32 - 2.6.36) Class Linux | Linux | 2.6.X | phone CPE cpe:/o:google:android:2 -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BA-D0%GCD=1-6%ISR=BF-D7%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW6%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW6%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW6%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW6%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=FAF0%W2=FAF0%W3=FAF0%W4=FAF0%W5=FAF0%W6=FAF0) @@ -41457,7 +41457,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) Fingerprint Android 2.3.4 (Linux 2.6) Class Linux | Linux | 2.6.X | phone CPE cpe:/o:google:android:2.3.4 -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C4-CE%GCD=1-6%ISR=CA-D4%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41476,7 +41476,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) Fingerprint Android 2.3.5 (Linux 2.6.35) Class Linux | Linux | 2.6.X | phone CPE cpe:/o:google:android:2 -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-CB%GCD=1-6%ISR=C4-CE%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW3%O2=M5B4ST11NW3%O3=M5B4NNT11NW3%O4=M5B4ST11NW3%O5=M5B4ST11NW3%O6=M5B4ST11) WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=FFFF%W6=FFFF) @@ -41494,7 +41494,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux castle 2.6.24-palm-joplin-3430 #1 175.1.23.1.1.1.1 armv7l unknown (Palm Pre, Model P100EWW, running Firmware CC1.2(335), Palm webOS 1.2.1) Fingerprint Linux 2.6.24 (Palm Pre mobile phone) Class Linux | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.24 +CPE cpe:/o:linux:linux_kernel:2.6.24 SEQ(SP=BF-C9%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=7|8) OPS(O1=NNT11|M5B4ST11NW4%O2=NNT11|M5B4ST11NW4%O3=NNT11|M5B4NNT11NW4%O4=NNT11|M5B4ST11NW4%O5=NNT11|M5B4ST11NW4%O6=NNT11|M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41512,7 +41512,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Google Mini Search Appliance v.4.6.4G66 Fingerprint Google Mini search appliance v.4.6.4G66 Class Linux | Linux | 2.6.X | specialized -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C7-D1%GCD=1-6%ISR=CB-D5%TI=Z%TS=7) OPS(O1=M550ST11NW9%O2=M550ST11NW9%O3=M550NNT11NW9%O4=M550ST11NW9%O5=M550ST11NW9%O6=M550ST11) WIN(W1=1510%W2=1510%W3=1510%W4=1510%W5=1510%W6=1510) @@ -41530,7 +41530,7 @@ IE(R=N) # WANEM, WANEM is a Wide Area Network EMulator. It is Debian based and can only be run via the LiveCD. Fingerprint WANEM network emulator (Linux 2.6) Class Linux | Linux | 2.6.X | specialized -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B9-C3%GCD=1-6%ISR=C1-CB%TI=I%CI=Z%II=I%SS=S%TS=8) OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41548,7 +41548,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.16 #1 PREEMPT Thu Jun 8 23:38:13 PDT 2006 armv5tel GNU/Linux Linksys NSLU2 with SlugOS (SlugOS/LE) bootstraped with Debian Sarge Fingerprint Linksys NSLU2 NAS device running SlugOS/LE (Linux 2.6.16) Class Linux | Linux | 2.6.X | storage-misc -CPE cpe:/o:linux:kernel:2.6.16 +CPE cpe:/o:linux:linux_kernel:2.6.16 SEQ(SP=C0-CA%GCD=1-6%ISR=C7-D1%TI=Z%II=I%TS=7) OPS(O1=M59CST11NW1%O2=M59CST11NW1%O3=M59CNNT11NW1%O4=M59CST11NW1%O5=M59CST11NW1%O6=M59CST11) WIN(W1=1640%W2=1640%W3=1640%W4=1640%W5=1640%W6=1640) @@ -41567,7 +41567,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux NetworkSpace 2.6.12.6-arm1 #3 Tue Feb 3 14:04:45 CET 2009 armv5tejl unknown, LaCie 1TB Gigabit Ethernet NAS, Fingerprint Linux 2.6.12 Class Linux | Linux | 2.6.X | storage-misc -CPE cpe:/o:linux:kernel:2.6.12 +CPE cpe:/o:linux:linux_kernel:2.6.12 SEQ(SP=C4-CE%GCD=1-6%ISR=C1-CB%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41585,7 +41585,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # FRITZ!Box Fon WLAN 7170 (UI) Firmware-Version 29.04.87 Fingerprint AVM FRITZ!Box FON WLAN 7170 WAP (Linux 2.6) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6 +CPE cpe:/o:linux:linux_kernel:2.6 SEQ(SP=C7-D1%GCD=1-6%ISR=CF-D9%TI=Z%II=RI%TS=7) OPS(O1=M5ACST11NW1%O2=M5ACST11NW1%O3=M5ACNNT11NW1%O4=M5ACST11NW1%O5=M5ACST11NW1%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41603,7 +41603,7 @@ IE(DFI=S%T=3B-45%TG=40%CD=S) # Linux fritz.fonwlan.box 2.6.13.1-ohio #1 Wed Jan 27 13:20:43 CET 2010 mips unknown, AVM FRITZ!Box WLAN 7170 29.04.80 (Jan 27 2010) - LAN Fingerprint AVM FRITZ!Box FON WLAN 7170 WAP (Linux 2.6.13) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.13 +CPE cpe:/o:linux:linux_kernel:2.6.13 SEQ(SP=C5-CF%GCD=1-6%ISR=CF-D9%TI=Z%CI=RD|RI%II=RI%TS=7|9|A) OPS(O1=M5ACST11NW1%O2=M5ACST11NW1%O3=M5ACNNT11NW1%O4=M5ACST11NW1%O5=M5ACST11NW1%O6=M5ACST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41622,7 +41622,7 @@ IE(DFI=S%T=3B-45%TG=40%CD=S) # TRENDnet TEW-652BRP Fingerprint DD-WRT (Linux 2.6.23, MIPS) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.23 +CPE cpe:/o:linux:linux_kernel:2.6.23 SEQ(SP=C0-CC%GCD=1-6%ISR=C5-D1%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41642,7 +41642,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys E4200 wireless-N router, firmware Version: 1.0.02 (updated factory firmware) Fingerprint DD-WRT v24 (Linux 2.6.22) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=B0-102%GCD=1-6%ISR=E9-FF%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41661,7 +41661,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux WRT400N 2.6.34.7-svn15501 #1763 Sun Nov 21 10:03:42 CET 2010 mips unknown/DD-WRT, Linksys WRT400N running DD-WRT v24-sp2 (revision 15778). Fingerprint DD-WRT v24-sp2 (Linux 2.6.34) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.34 +CPE cpe:/o:linux:linux_kernel:2.6.34 SEQ(SP=BF-D5%GCD=1-6%ISR=C8-D2%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41683,7 +41683,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Yealink Enterprise IP Phone, model SIP-T22P Fingerprint Linux 2.6.13 (embedded) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.13 +CPE cpe:/o:linux:linux_kernel:2.6.13 SEQ(SP=A4-D0%GCD=1-6%ISR=BE-D8%TI=Z%CI=I%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41716,7 +41716,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Cisco WRT160NL Wireless-N Broadband Router Fingerprint Linux 2.6.15 (likely TP-Link WAP) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.15 +CPE cpe:/o:linux:linux_kernel:2.6.15 SEQ(SP=B6-D0%GCD=1-6%ISR=A9-D3%TI=Z%CI=I%II=I%TS=A) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41734,7 +41734,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32.16 #1 Wed Aug 25 15:20:15 PDT 2010 mips GNU/Linux, Netgear WNDR3700 router running openWRT Fingerprint OpenWrt (Linux 2.6.32) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.32 +CPE cpe:/o:linux:linux_kernel:2.6.32 SEQ(SP=BD-C7%GCD=1-6%ISR=BF-C9%TI=Z%CI=Z%TS=U) OPS(O1=M538NNSNW1%O2=M538NNSNW1%O3=M538NW1%O4=M538NNSNW1%O5=M538NNSNW1%O6=M538NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -41755,7 +41755,7 @@ IE(R=N) # Linux 2.6.23.1 #2 Tue Nov 6 08:01:41 GMT 2007 mips unknown, OpenWRT KAMIKAZE (bleeding edge, r9504) Fingerprint OpenWrt Kamikaze 7.09 (Linux 2.6.17 - 2.6.23) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=B2-D2%GCD=1-6%ISR=B4-D4%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -41776,7 +41776,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linksys WRT54GL v.2.0 running kamikaze 7.09, Linux OpenWrt 2.6.22 #5 Thu Jan 17 12:58:41 CET 2008 mips unknown Fingerprint OpenWrt Kamikaze 7.09 (Linux 2.6.22) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(SP=A2-104%GCD=1-6%ISR=E9-101%TI=Z%II=I%TS=U) OPS(R=N) WIN(R=N) @@ -41797,7 +41797,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Bifferboard embedded RDC SoC (486) running firmware 1.4 (based on OpenWrt Kamikaze) Linux 2.6.27.5. http://bifferos.bizhat.com/ Fingerprint OpenWrt Kamikaze 8.09 (Linux 2.6.26) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.26 +CPE cpe:/o:linux:linux_kernel:2.6.26 SEQ(SP=BD-D7%GCD=1-6%ISR=C8-D6%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -41815,7 +41815,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.22.19 #4 Fri Oct 15 02:55:59 EDT 2010 mips GNU/Linux, Tomato Firmware v1.28.9052 MIPSR2-beta23 K26 USB Ext Fingerprint Tomato 1.28 (Linux 2.6.22) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.22 +CPE cpe:/o:linux:linux_kernel:2.6.22 SEQ(CI=Z%II=I) OPS(R=N) WIN(R=N) @@ -41834,7 +41834,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Belkin Play Max N600 HD modem / wireless router Fingerprint Tomato 1.28 (Linux 2.6.22) Class Linux | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C1-E3%GCD=1-6%ISR=BF-101%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -41852,7 +41852,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux OpenWrt 3.0.3 #2 Fri Sep 16 16:06:18 PDT 2011 mips GNU/Linux Fingerprint OpenWRT (Linux 3.0) Class Linux | Linux | 3.X | broadband router -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FF-109%GCD=1-6%ISR=108-112%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW1%O2=M5B4NNSNW1%O3=M5B4NW1%O4=M5B4NNSNW1%O5=M5B4NNSNW1%O6=M5B4NNS) WIN(W1=3908%W2=3908%W3=3908%W4=3908%W5=3908%W6=3908) @@ -41870,7 +41870,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.2.5 mips GNU/Linux, OpenWrt ar71xx trunk r30513 Fingerprint OpenWRT (Linux 3.2) Class Linux | Linux | 3.X | broadband router -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=101-10B%GCD=1-6%ISR=104-10E%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW2%O2=M5B4NNSNW2%O3=M5B4NW2%O4=M5B4NNSNW2%O5=M5B4NNSNW2%O6=M5B4NNS) WIN(W1=3908%W2=3908%W3=3908%W4=3908%W5=3908%W6=3908) @@ -41888,7 +41888,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0-ARCH Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FE-108%GCD=1-6%ISR=104-10E%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4%O2=M5B4%O3=M5B4%O4=M5B4%O5=M5B4%O6=M5B4) WIN(W1=3908%W2=3908%W3=3908%W4=3908%W5=3908%W6=3908) @@ -41906,7 +41906,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-11-generic #18-Ubuntu SMP Tue Sep 13 23:38:01 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FB-105%GCD=1-6%ISR=FE-108%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -41924,7 +41924,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # 3.0.3-gentoo #1 SMP Tue Aug 23 23:21:03 CEST 2011 x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ AuthenticAMD GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=102-10C%GCD=1-6%ISR=106-110%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -41943,7 +41943,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-13-generic #22-Ubuntu SMP Wed Nov 2 13:25:36 UTC 2011 i686 athlon i386 GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FA-104%GCD=1-6%ISR=108-112%TI=Z%II=I%TS=8|A) OPS(O1=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O2=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O3=M5B4NNT11NW1|M5B4NNT11NW2|M5B4NNT11NW3|M5B4NNT11NW4|M5B4NNT11NW5|M5B4NNT11NW6|M5B4NNT11NW7|M5B4NNT11NW8|M5B4NNT11NW9%O4=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O5=M5B4ST11NW1|M5B4ST11NW2|M5B4ST11NW3|M5B4ST11NW4|M5B4ST11NW5|M5B4ST11NW6|M5B4ST11NW7|M5B4ST11NW8|M5B4ST11NW9%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -41961,7 +41961,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.40.4-5.fc15.x86_64 #1 SMP Tue Aug 30 14:38:32 UTC 2011 x86_64 GNU/Linux, Fedora 15 64bit x86 Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=101-10B%GCD=1-6%ISR=FF-109%TI=Z%CI=Z%TS=U) OPS(O1=M400CNNSNW8%O2=M400CNNSNW8%O3=M400CNW8%O4=M400CNNSNW8%O5=M400CNNSNW8%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -41979,7 +41979,7 @@ IE(R=N) # Fedora 15 Linux 2.6.40.6-0.fc15.x86_64 #1 SMP Tue Oct 4 00:39:50 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FC-10A%GCD=1-6%ISR=101-10B%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M400CST11NW7%O2=M400CST11NW7%O3=M400CNNT11NW7%O4=M400CST11NW7%O5=M400CST11NW7%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -41997,7 +41997,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-36-generic #79-Ubuntu SMP Tue Nov 8 22:29:26 UTC 2011 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=103-10D%GCD=1-6%ISR=105-10F%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11NW6%O2=M400CST11NW6%O3=M400CNNT11NW6%O4=M400CST11NW6%O5=M400CST11NW6%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -42015,7 +42015,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-1-686-pae #1 SMP Sat Aug 27 16:41:03 UTC 2011 i686 GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=101-10B%GCD=1-6%ISR=108-112%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400C%O2=M400C%O3=M400C%O4=M400C%O5=M400C%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -42033,7 +42033,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.40.6-0.fc15.i686.PAE #1 SMP Tue Oct 4 00:44:38 UTC 2011 i686 i686 i386 GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FB-105%GCD=1-6%ISR=103-10D%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400CNNSNW4%O2=M400CNNSNW4%O3=M400CNW4%O4=M400CNNSNW4%O5=M400CNNSNW4%O6=M400CNNS) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -42051,7 +42051,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-13-myserver30 #22~lucid1 SMP Sun Nov 6 19:22:44 CET 2011 x86_64 GNU/Linux Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=100-10A%GCD=1-6%ISR=109-113%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M1168ST11NW6%O2=M1168ST11NW6%O3=M1168NNT11NW6%O4=M1168ST11NW6%O5=M1168ST11NW6%O6=M1168ST11) WIN(W1=3414%W2=3414%W3=3414%W4=3414%W5=3414%W6=3414) @@ -42070,7 +42070,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-13-server #22-Ubuntu SMP Wed Nov 2 15:09:08 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 3.0 - 3.1 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FD-107%GCD=1-6%ISR=107-111%TI=Z%CI=Z%II=I%TS=8|A) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -42088,7 +42088,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.1.0-1-686-pae #1 SMP Mon Nov 14 08:24:20 UTC 2011 i686 GNU/Linux debian wheezy/sid Fingerprint Linux 3.1 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FD-107%GCD=1-6%ISR=107-111%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M400CST11%O2=M400CST11%O3=M400CNNT11%O4=M400CST11%O5=M400CST11%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -42106,7 +42106,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux CentOS5 2.6.18-8.el5 #1 SMP Thu Mar 15 19:46:53 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 2.6.18 (CentOS 5, x86_64, SMP) Class Linux | Linux || general purpose -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=F-CF%GCD=FA|1F4|2EE|3E8|4E2%ISR=8A-C2%TI=I%TS=U) OPS(O1=M218%O2=M218%O3=M218%O4=M218%O5=M218%O6=M218) WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=FFFF%W6=FFFF) @@ -42124,7 +42124,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # 2.6.25.5-1.1-pae #1 SMP 2008-06-07 01:55:22 +0200 i686 i686 i386 GNU/Linux, OpenSUSE 11.0 Fingerprint Linux 2.6.25 Class Linux | Linux || general purpose -CPE cpe:/o:linux:kernel:2.6.25 +CPE cpe:/o:linux:linux_kernel:2.6.25 SEQ(SP=C4-CE%GCD=1-6%ISR=CC-D6%TI=Z%II=I%TS=8) OPS(O1=M514ST11NW6%O2=M514ST11NW6%O3=M514NNT11NW6%O4=M514ST11NW6%O5=M514ST11NW6%O6=M514ST11) WIN(W1=1420%W2=1420%W3=1420%W4=1420%W5=1420%W6=1420) @@ -42142,7 +42142,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.18_pro500-davinci_IPNC_1.0 #1 PREEMPT Wed Apr 28 12:01:58 MDT 2010 armv5tejl unknown, Logitech Alert 750i Camera Fingerprint Logitech Alert 750i camera (Linux 2.6.18) Class Logitech | Linux | 2.6.X | webcam -CPE cpe:/o:linux:kernel:2.6.18 +CPE cpe:/o:linux:linux_kernel:2.6.18 SEQ(SP=C2-D6%GCD=1-6%ISR=C5-D9%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW1%O2=M5B4ST11NW1%O3=M5B4NNT11NW1%O4=M5B4ST11NW1%O5=M5B4ST11NW1%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -53881,7 +53881,7 @@ IE(R=N) # Linux 2.4.17_mvl21-malta-mips_fp_le (root@home1.homework) (gcc version 2.95.3 20010315 (release/MontaVista)) Fingerprint MontaVista embedded Linux 2.4.17 Class MontaVista | Linux | 2.4.X | broadband router -CPE cpe:/o:montavista:linux:2.4 auto +CPE cpe:/o:montavista:linux_kernel:2.4 auto SEQ(SP=B8-C2%GCD=1-6%ISR=BA-C4%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11%O2=M5B4ST11%O3=M5B4NNT11%O4=M5B4ST11%O5=M5B4ST11%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -53916,7 +53916,7 @@ IE(DFI=N%T=FA-104%TG=FF%CD=S) # Vonage VOIP phone adapter and router. Model VT2142 Fingerprint MontaVista embedded Linux 2.4.17 Class MontaVista | Linux | 2.4.X | general purpose -CPE cpe:/o:montavista:linux:2.4 auto +CPE cpe:/o:montavista:linux_kernel:2.4 auto SEQ(SP=B3-D1%GCD=1-6%ISR=BF-DB%TI=Z%II=I%TS=7) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -56085,7 +56085,7 @@ IE(DFI=S%T=FA-104%TG=FF%CD=S) # Linux Nokia-N800-43-7 2.6.21-omap1 #1 Thu Dec 25 12:14:00 GMT 2008 armv6l unknown, Nokia N800, firmware (Maemo) versioned OS2008/Diablo, RX-34+RX-44+RX-48_DIABLO_5.2008.43-7_PR_MR0 Fingerprint Nokia N800 Internet tablet (Linux 2.6.21, ARM) Class Nokia | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6.21 +CPE cpe:/o:linux:linux_kernel:2.6.21 SEQ(SP=C4-CE%GCD=1-6%ISR=C8-D2%TI=Z%II=I%TS=7) OPS(O1=M400CST11%O2=M400CST11%O3=M400CNNT11%O4=M400CST11%O5=M400CST11%O6=M400CST11) WIN(W1=8000%W2=8000%W3=8000%W4=8000%W5=8000%W6=8000) @@ -56103,7 +56103,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.28-omap1 #1 PREEMPT Thu Apr 15 09:47:09 EEST 2010 armv7l unknown Fingerprint Nokia N900 mobile phone (Linux 2.6.28) Class Nokia | Linux | 2.6.X | phone -CPE cpe:/o:linux:kernel:2.6.28 +CPE cpe:/o:linux:linux_kernel:2.6.28 SEQ(SP=C0-CA%GCD=1-6%ISR=C0-CA%TI=Z%CI=Z%TS=7|9) OPS(O1=NNT11|M539ST11NW4%O2=NNT11|M539ST11NW4%O3=NNT11|M539NNT11NW4%O4=NNT11|M539ST11NW4%O5=NNT11|M539ST11NW4%O6=NNT11|M539ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -67913,7 +67913,7 @@ IE(R=N) # ZyXEL NWA570N with Firmware V1.00 (AAP.2) C0 is a WAP! Firmwareimage has String "Linux 2.6.17" Fingerprint Linux 2.6.17 (ZyXEL NWA570N WAP) Class ZyXEL | Linux | 2.6.X | WAP -CPE cpe:/o:linux:kernel:2.6.17 +CPE cpe:/o:linux:linux_kernel:2.6.17 CPE cpe:/h:zyxel:nwa570n SEQ(SP=B7-C1%GCD=1-6%ISR=BE-C8%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M576ST11NW1%O2=M576ST11NW1%O3=M576NNT11NW1%O4=M576ST11NW1%O5=M576ST11NW1%O6=M576ST11) @@ -68022,7 +68022,7 @@ IE(DFI=N%T=37-41%TG=40%CD=Z) # Linux 2.6.32-33-generic #70-Ubuntu SMP Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=BD-C7%GCD=1-6%ISR=C5-CF%TI=Z%II=I%TS=8|A) OPS(O1=NNT11|M5B4ST11NW6%O2=NNT11|M5B4ST11NW6%O3=NNT11|M5B4NNT11NW6%O4=NNT11|M5B4ST11NW6%O5=NNT11|M5B4ST11NW6%O6=NNT11|M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -68058,7 +68058,7 @@ IE(DFI=S%T=3B-45%TG=40%CD=S) # Linux 3.1.9-1.fc16.x86_64 Fingerprint Linux 3.1.9 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=FC-10A%GCD=1-6%ISR=108-112%TI=Z%II=I%TS=A) OPS(O1=M564ST11NW6%O2=M564ST11NW6%O3=M564NNT11NW6%O4=M564ST11NW6%O5=M564ST11NW6%O6=M564ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -68076,7 +68076,7 @@ IE(DFI=N%T=3A-44%TG=40%CD=S) # 2.6.38.2 mainline w/ Ubuntu patches, on Gentoo Linux Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C5-CF%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=A) OPS(O1=M5B4ST11NWE%O2=M5B4ST11NWE%O3=M5B4NNT11NWE%O4=M5B4ST11NWE%O5=M5B4ST11NWE%O6=M5B4ST11) WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=3890) @@ -68094,7 +68094,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.0-15-generic #26-Ubuntu SMP Fri Jan 20 17:23:00 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux / Ubuntu Linux 11.10 Fingerprint Linux 3.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=101-10B%GCD=1-6%ISR=108-112%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NWB%O2=M5B4ST11NWB%O3=M5B4NNT11NWB%O4=M5B4ST11NWB%O5=M5B4ST11NWB%O6=M5B4ST11) WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=FFFF%W6=3890) @@ -68202,7 +68202,7 @@ IE(DFI=N%T=7B-85%TG=80%CD=Z) # Ubuntu 11.04 (GNU/Linux 2.6.38-8-server x86_64) Over VPN. Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=C6-D0%GCD=1-6%ISR=CC-D6%TI=Z%CI=Z%II=I%TS=7) OPS(O1=M538ST11NW5%O2=M538ST11NW5%O3=M538NNT11NW5%O4=M538ST11NW5%O5=M538ST11NW5%O6=M538ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) @@ -68294,7 +68294,7 @@ IE(DFI=S%T=3C-46%TG=40%CD=S) # Linux 2.6.35-31-generic-pae #62-Ubuntu SMP Tue Nov 8 15:43:23 UTC 2011 i686 GNU/Linux / Distro: Ubuntu 10.10 Fingerprint Linux 2.6.32 - 2.6.35 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F9-10D%GCD=1-6%ISR=FA-10E%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW5|M5B4ST11NW6%O2=M5B4ST11NW5|M5B4ST11NW6%O3=M5B4NNT11NW5|M5B4NNT11NW6%O4=M5B4ST11NW5|M5B4ST11NW6%O5=M5B4ST11NW5|M5B4ST11NW6%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W5|W6=16A0) @@ -68312,7 +68312,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.32-5-amd64 #1 SMP Fri Sep 9 20:23:16 UTC 2011 x86_64 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=102-10C%GCD=1-6%ISR=107-111%TI=Z%II=I%TS=8|A) OPS(O1=M5ACST11NW7%O2=M578ST11NW7%O3=M280NNT11NW7%O4=M22CST11NW7%O5=M218ST11NW7%O6=M109ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -68366,7 +68366,7 @@ IE(DFI=S%T=3D-47%TG=40%CD=S) # Linux 3.2.1-4 #1 SMP Tue Jan 24 22:14:11 EST 2012 i686 i686 i386 GNU/Linux /OpenNA secure Linux 2.0.x, OpenNA Secure Linux release 2.0.0 (NYANA) Fingerprint Linux 3.2.1 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=CC-D6%GCD=1-6%ISR=C9-D3%TI=Z%II=I%TS=U) OPS(O1=M5B4NW9%O2=M5B4NW9%O3=M5B4NW9%O4=M5B4NW9%O5=M5B4NW9%O6=M5B4) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -68510,7 +68510,7 @@ IE(DFI=N%T=3C-46%TG=40%CD=S) # Linux 2.4.21-303-smp4G #1 SMP Tue Dec 6 12:33:10 UTC 2005 i686 i686 i386 GNU/Linux, SuSE Linux 9.0 Fingerprint Linux 2.4.21 Class Linux | Linux | 2.4.X | general purpose -CPE cpe:/o:linux:kernel:2.4 auto +CPE cpe:/o:linux:linux_kernel:2.4 auto SEQ(SP=C5-CF%GCD=1-6%ISR=C3-CD%TI=I|RD%II=I%SS=S%TS=A|B) OPS(O1=M5B4ST11NW0%O2=M5B4ST11NW0%O3=M5B4NNT11NW0%O4=M5B4ST11NW0%O5=M5B4ST11NW0%O6=M5B4ST11) WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0) @@ -68546,7 +68546,7 @@ IE(DFI=S%T=FA-104%TG=FF%CD=S) # Linux 2.6.32-38-generic #83-Ubuntu SMP Wed Jan 4 11:13:04 UTC 2012 i686 GNU/Linux Fingerprint Linux 2.6.32 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=101-10B%GCD=1-6%ISR=102-10C%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M400CNW9%O2=M400CNW9%O3=M400CNW9%O4=M400CNW9%O5=M400CNW9%O6=M400C) WIN(W1=8018%W2=8018%W3=8018%W4=8018%W5=8018%W6=8018) @@ -68582,7 +68582,7 @@ IE(DFI=N%T=7C-86%TG=80%CD=Z) # Linux 3.0.0-16-server #28-Ubuntu SMP Fri Jan 27 18:03:45 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux Fingerprint Linux 3.0.0 Class Linux | Linux | 3.X | general purpose -CPE cpe:/o:linux:kernel:3 auto +CPE cpe:/o:linux:linux_kernel:3 auto SEQ(SP=B8-C2%GCD=1-6%ISR=C9-D3%TI=Z%CI=Z%II=I%TS=U) OPS(O1=M5B4NNSNW4%O2=M5B4NNSNW4%O3=M5B4NW4%O4=M5B4NNSNW4%O5=M5B4NNSNW4%O6=M5B4NNS) WIN(W1=16D0%W2=16D0%W3=16D0%W4=16D0%W5=16D0%W6=16D0) @@ -68690,7 +68690,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 2.6.38-13-generic #0trisquel1 SMP Mon Feb 13 06:15:26 UTC 2012 i686 i686 i386 GNU/Linux | Trisquel 5.0 Dagda Fingerprint Linux 2.6.38 Class Linux | Linux | 2.6.X | general purpose -CPE cpe:/o:linux:kernel:2.6 auto +CPE cpe:/o:linux:linux_kernel:2.6 auto SEQ(SP=F9-103%GCD=1-6%ISR=106-110%TI=Z%CI=Z%II=I%TS=8) OPS(O1=M5B4ST11NW6%O2=M5B4ST11NW6%O3=M5B4NNT11NW6%O4=M5B4ST11NW6%O5=M5B4ST11NW6%O6=M5B4ST11) WIN(W1=3890%W2=3890%W3=3890%W4=3890%W5=3890%W6=3890) diff --git a/nmap-service-probes b/nmap-service-probes index 29535031b..513a17ff3 100644 --- a/nmap-service-probes +++ b/nmap-service-probes @@ -231,7 +231,7 @@ match cddbp m|^201 ([-\w_.]+) CDDBP server v([-\w.]+) ready at .*\r\n| p/freedb match ceph-cmds m|^ceph v([\w._-]+)\0\0\0\0\x1c\"\0\0\0\x02\x1a\x91\xac\x10#\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x02\xddA\xac\x10,,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0| p/Ceph distributed filesystem cmds daemon/ v/$1/ -match chargen m|^!"#\$%\&'\(\)\*\+,-\./0123456789:;<=>\?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]\^_`abcdefgh\r\n"#\$%\&'\(\)\*\+,-\./0123456789:;<=>\?\@ABCDEF| p/Linux chargen/ o/Linux/ cpe:/o:linux:kernel/a +match chargen m|^!"#\$%\&'\(\)\*\+,-\./0123456789:;<=>\?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]\^_`abcdefgh\r\n"#\$%\&'\(\)\*\+,-\./0123456789:;<=>\?\@ABCDEF| p/Linux chargen/ o/Linux/ cpe:/o:linux:linux_kernel/a # Redhat 7.2, xinetd 2.3.7 chargen match chargen m|^\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]\^_`abcdefghijklmnopq\r\n\+,-\./| p/xinetd chargen/ o/Unix/ # Sun Solaris 9; Windows @@ -398,7 +398,7 @@ match epp m|^\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalo match eve-online m|^7\0\0\0~\0\0\0\0\x14\x06\x04\xe8\x99\x02\0\x05\xeb\0\x04\xdf\x92\0\0\n\xd7\xa3p=\n\xd7\x18@\x04\x95\xf1\x01\0\x13\x13EVE-EVE-RELEASE@ccp$| p/EVE Online game server/ -match exec m|^\x01Where are you\?\n$| p/netkit-rsh rexecd/ o/Linux/ cpe:/o:linux:kernel/a +match exec m|^\x01Where are you\?\n$| p/netkit-rsh rexecd/ o/Linux/ cpe:/o:linux:linux_kernel/a # \x04 is the length, \x07\x08 is the command, following two bytes are an # offset into an XOR code book. http://titanfiesta.googlecode.com/svn/trunk/TitanFiesta/Common/XorTable.h. @@ -463,8 +463,8 @@ match ftp m|^220 ([\w._-]+) FTP version 1\.0 ready at | p/Netgear broadband rout match ftp m|^220 \(none\) FTP server \(GNU inetutils ([\w._-]+)\) ready\.\r\n| p/GNU Inetutils FTPd/ v/$1/ match ftp m|^220 ([-.\w]+) FTP server \(GNU inetutils (\d[-.\w ]+)\) ready\.\r\n| p/GNU Inetutils FTPd/ v/$2/ h/$1/ match ftp m|^220 .* \(glftpd (\d[-.0-9a-zA-Z]+)_(\w+)(?:\+TLS)?\) ready\.\r\n| p/glFTPd/ v/$1/ i/$2/ o/Unix/ -match ftp m|^220 .* \(glFTPd (\d[-.0-9a-zA-Z]+)_(\w+) Linux\+TLS\) ready\.?\r\n| p/glFTPd/ v/$1/ i/$2/ o/Linux/ cpe:/o:linux:kernel/a -match ftp m|^220 .* \(glFTPd (\d[-.0-9a-zA-Z]+) Linux\+TLS\) ready\.\r\n| p/glFTPd/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match ftp m|^220 .* \(glFTPd (\d[-.0-9a-zA-Z]+)_(\w+) Linux\+TLS\) ready\.?\r\n| p/glFTPd/ v/$1/ i/$2/ o/Linux/ cpe:/o:linux:linux_kernel/a +match ftp m|^220 .* \(glFTPd (\d[-.0-9a-zA-Z]+) Linux\+TLS\) ready\.\r\n| p/glFTPd/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a match ftp m|^220 .* \(glFTPd (\d[-.0-9a-zA-Z]+) FreeBSD\+TLS\) ready\.\r\n| p/glFTPd/ v/$1/ o/FreeBSD/ cpe:/o:freebsd:freebsd/a match ftp m|^220 ([-.\w]+) FTP server \(FirstClass v(\d[-.\w]+)\) ready\.\r\n| p/FirstClass FTP server/ v/$2/ h/$1/ match ftp m|^220 ([-.\w]+) FTP server \(Compaq Tru64 UNIX Version (\d[-.\w]+)\) ready\.\r\n| p/Compaq Tru64 ftp server/ v/$2/ o/Tru64 UNIX/ h/$1/ @@ -576,15 +576,15 @@ match ftp m|^220-MegaBit Gear (\S+).*FTP server ready| p/MegaBit Gear ftpd/ v/$1 match ftp m|^220.*WS_FTP Server (\d\S+)| p/WS FTPd/ v/$1/ o/Windows/ cpe:/o:microsoft:windows/a match ftp m|^220 Features: a p \.\r\n$| p/publicfile ftpd/ o/Unix/ match ftp m|^220 ([-.\w]+) FTP server \(Version (\S+) VFTPD, based on Version (\S+)\) ready\.\r\n$| p/Virtual FTPD/ v/$2/ i/based on $3/ o/Unix/ h/$1/ -match ftp m|220 ([-.\w]+) FTP server \(Version (\S+)/OpenBSD, linux port (\S+)\) ready\.\r\n| p/OpenBSD ftpd/ v/$2/ i/Linux port $3/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a -match ftp m|^220 ([-.\w]+) FTP server \(Version (\S+)/OpenBSD/Linux-ftpd-([-.\w]+)\) ready.\r\n$| p/OpenBSD ftpd/ v/$2/ i/Linux port $3/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match ftp m|220 ([-.\w]+) FTP server \(Version (\S+)/OpenBSD, linux port (\S+)\) ready\.\r\n| p/OpenBSD ftpd/ v/$2/ i/Linux port $3/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a +match ftp m|^220 ([-.\w]+) FTP server \(Version (\S+)/OpenBSD/Linux-ftpd-([-.\w]+)\) ready.\r\n$| p/OpenBSD ftpd/ v/$2/ i/Linux port $3/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match ftp m|^220 Interscan Version ([-\w.]+)|i p/InterScan VirusWall ftpd/ v/$1/ match ftp m|^220 InterScan FTP VirusWall NT (\d[-.\w]+) \(([-.\w]+) Mode\), Virus scan (\w+)\r\n$| p/InterScan VirusWall NT/ v/$1/ i/Virus scan $3; $2 mode/ o/Windows/ cpe:/o:microsoft:windows/a match ftp m|^220 ([-.\w]+) FTP server \(Version ([-.\w]+)/OpenBSD\) ready\.\r\n$| p/OpenBSD ftpd/ v/$2/ o/OpenBSD/ h/$1/ cpe:/o:openbsd:openbsd/ match ftp m|^220 ([-.\w]+) FTP server \(Version (6.0\w+)\) ready.\r\n| p/FreeBSD ftpd/ v/$2/ o/FreeBSD/ h/$1/ cpe:/o:freebsd:freebsd/a match ftp m|^220 FTP server \(Version ([\w.]+)\) ready\.\r\n| p/FreeBSD ftpd/ v/$1/ o/FreeBSD/ cpe:/o:freebsd:freebsd/a # Trolltech Troll-FTPD 1.28 (Only runs on Linux) -match ftp m|^220-Setting memory limit to 1024\+1024kbytes\r\n220-Local time is now \d+:\d+ and the load is [\d.]+\.\r\n220 You will be disconnected after \d+ seconds of inactivity.\r\n$| p/Trolltech Troll-FTPd/ o/Linux/ cpe:/o:linux:kernel/a +match ftp m|^220-Setting memory limit to 1024\+1024kbytes\r\n220-Local time is now \d+:\d+ and the load is [\d.]+\.\r\n220 You will be disconnected after \d+ seconds of inactivity.\r\n$| p/Trolltech Troll-FTPd/ o/Linux/ cpe:/o:linux:linux_kernel/a match ftp m|^220 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version (7.1.0.0)\) ready\.\r\n$| p/Hummingbird FTP server/ v/$1/ match ftp m|^220 FTP server \(Hummingbird Communications Ltd\. \(HCLFTPD\) Version ([\d.]+)\) ready\.\r\n| p/Hummingbird FTP server/ v/$1/ @@ -800,13 +800,13 @@ match ftp m|^220 ([-\w_.]+) GridFTP Server ([\w._-]+) \((gcc\w+), [-\d]+\) ready match ftp m|^220 ([\w._-]+) GridFTP Server ([\w._-]+) \((gcc\w+), [-\d]+\) \[Globus Toolkit ([\w._-]+)\] ready\.\r\n| p/Globus GridFTPd/ v/$2/ i/Globus Toolkit $4; $3/ h/$1/ match ftp m|^220 ([-\w_.]+) (?:[A-Z]+ )?GridFTP Server ([\d.]+) (GSSAPI type Globus/GSI wu-\S+) \(gcc\w+, [-\d]+\) ready\.\r\n| p/Globus GridFTPd/ v/$2/ i/$3/ h/$1/ match ftp m|^220 ([-\w_.]+) FTP server \(GridFTP Server ([\d.]+) \[(GSI patch v[\d\.]+)\] (wu-\S+) .+\) ready\.\r\n| p/Globus GridFTPd/ v/$2/ i/$4 $3/ h/$1/ -match ftp m|^220 Welcome to the OpenDreambox FTP service\.\r\n| p/Dreambox ftpd/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match ftp m|^220 Willkomen auf Ihrer Dreambox\.\r\n| p/Dreambox ftpd/ i/German/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match ftp m|^220 Welcome to the PLi dreambox FTP server\r\n| p/Dreambox ftpd/ i/PLi image/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match ftp m|^220 Welcome to the Pli Jade Server >> OpenDreambox FTP service <<\.\r\n| p/Dreambox ftpd/ i/PLi Jade image/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a +match ftp m|^220 Welcome to the OpenDreambox FTP service\.\r\n| p/Dreambox ftpd/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match ftp m|^220 Willkomen auf Ihrer Dreambox\.\r\n| p/Dreambox ftpd/ i/German/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match ftp m|^220 Welcome to the PLi dreambox FTP server\r\n| p/Dreambox ftpd/ i/PLi image/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match ftp m|^220 Welcome to the Pli Jade Server >> OpenDreambox FTP service <<\.\r\n| p/Dreambox ftpd/ i/PLi Jade image/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a match ftp m|^220 ([-\w_.]+) FTP server \(KONICA FTPD version ([\d.]+)\) ready\.\r\n| p/Konica Minolta printer ftpd/ v/$2/ d/printer/ h/$1/ match ftp m|^220 KONICA MINOLTA FTP server ready\.\r\n| p/Konica Minolta bizhub printer ftpd/ d/printer/ -match ftp m|^Error loading /etc/ssl/certs/ftpd\.pem:| p/Linux NetKit ftpd/ i/misconfigured/ o/Linux/ cpe:/o:linux:kernel/a +match ftp m|^Error loading /etc/ssl/certs/ftpd\.pem:| p/Linux NetKit ftpd/ i/misconfigured/ o/Linux/ cpe:/o:linux:linux_kernel/a match ftp m|^500 OOPS: cannot locate user entry:([-\w_]+)\r\n500 OOPS: child died\r\n| p/vsftpd/ i/misconfigured; ftp user $1/ cpe:/a:vsftpd:vsftpd/ match ftp m|^220 Welcome to Freebox FTP Server\.\r\n| p/Freebox ftpd/ d/media device/ match ftp m|^220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n| p/Zope Medusa ftpd/ v/$1/ @@ -927,8 +927,8 @@ match ftp m|^220 ([\w._-]+) pSOSystem FTP server \(Network Utilities for /68k-MR match ftp m|^220 Star IFBD-HE05/06 FTP Server\.\r\n| p/Star Micronics TSP828L printer ftpd/ d/printer/ match ftp m|^220 Welcome to Baby FTP Server\r\n| p/Baby FTP Server/ o/Windows/ cpe:/o:microsoft:windows/a match ftp m|^220 ([\w_.-]+) FTP server \(witelcom ([\d.]+)\) ready\r\n| p/Witelcom router ftpd/ v/$2/ d/router/ h/$1/ -match ftp m|^220 SwiFTP ready\r\n| p/SwiFTP/ i/Android phone/ d/phone/ o/Linux/ cpe:/o:linux:kernel/a -match ftp m|^220 SwiFTP ([\w._-]+) ready\r\n| p/SwiFTP/ v/$1/ i/Android phone/ d/phone/ o/Linux/ cpe:/o:linux:kernel/a +match ftp m|^220 SwiFTP ready\r\n| p/SwiFTP/ i/Android phone/ d/phone/ o/Linux/ cpe:/o:linux:linux_kernel/a +match ftp m|^220 SwiFTP ([\w._-]+) ready\r\n| p/SwiFTP/ v/$1/ i/Android phone/ d/phone/ o/Linux/ cpe:/o:linux:linux_kernel/a match ftp m|^220 EFI FTP Print server ready\.\r\n| p/EFI Fiery ftpd/ d/print server/ match ftp m|^220 infotec IS (\d+) FTP server \(([\w.]+)\) ready\.\r\n| p/Infotec IS $1 ftpd/ v/$2/ match ftp m|^220- Print Server ([\d.]+ \([^)]*\))\r\n220 FTP server \(Version ([^)]*)\) ready\.\r\n| p/Roland plotter print server ftpd/ v/$2/ i/print server version $1/ @@ -941,12 +941,12 @@ match ftp m|^220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n| p/vxTarge match ftp m|^220-Welcome to the S60 Dumb FTP Server \(dftpd\)\r\n| p/Dumb FTP Server (dftpd)/ d/phone/ o/SymbianOS/ match ftp m|^220-Local time is now [\d:]+\r\n220 You will be disconnected after 300 seconds of inactivity\.\r\n| p/DViCO TVIX 6500A set top box ftpd/ d/media device/ match ftp m|^220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n| p/Lexmark $2 series printer ftpd/ i/MAC: $1/ d/printer/ -match ftp m|^220 aFTPServer ready \(cwd is /\)\r\n$| p/FTPServer/ d/phone/ o/Linux/ cpe:/o:linux:kernel/a +match ftp m|^220 aFTPServer ready \(cwd is /\)\r\n$| p/FTPServer/ d/phone/ o/Linux/ cpe:/o:linux:linux_kernel/a match ftp m|^220 BCB1COOL Server \(Proftpd FTP Server\) \[([\w._-]+)\]\r\n| p/Proftpd FTP Server/ h/$1/ match ftp m|^220 FTP version ([\w.]+)\r\n| p/DrayTek Vigor 2820 ADSL router ftpd/ v/$1/ d/broadband router/ match ftp m|^220 FTP version ([\w.]+)\r\n331 Enter PASS command\r\n$| p/DrayTek Vigor 2820 ADSL router ftpd/ v/$1/ d/broadband router/ match ftp m|^220 Core FTP Server Version ([\w._-]+, build \d+), installed (\d+ days ago) Registered\r\n| p/Core FTP Server/ v/$1/ i/installed $2/ -match ftp m|^220-.*\r\n220 ([\w._-]+) FTP Server \(Apache/([\w._-]+) \(Linux/SUSE\)\) ready\.\r\n| p/Apache mod_ftpd/ v/$2/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match ftp m|^220-.*\r\n220 ([\w._-]+) FTP Server \(Apache/([\w._-]+) \(Linux/SUSE\)\) ready\.\r\n| p/Apache mod_ftpd/ v/$2/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match ftp m|^220 pyftpdlib ([\w._-]+) ready\.\r\n| p/pyftpdlib/ v/$1/ match ftp m|^220 Simple FTP daemon coming up!\r\n| p/A+V Link NVS-4000 surveillance system ftpd/ d/webcam/ match ftp m|^220 DiskStation FTP server ready\.\r\n| p/Synology DiskStation NAS ftpd/ d/storage-misc/ @@ -1085,7 +1085,7 @@ match giop m|^GIOP\x01...\0\0\0\0|s p/CORBA naming service/ # CompTek AquaGateKeeper (Telephony package) http://aqua.comptek.ru match H.323-gatekeeper m|^\x03\0\0.*@|s p/CompTek AquaGateKeeper/ # OpenH323 Gatekeeper 2.0.3 -match H.323-gatekeeper m|^\xff\xfd\x03\xff\xfb\x05.*Version:\r\nGatekeeper\(GNU\) Version\(([\d.]+)\) Ext\(.*\) Build\(.*\) Sys\(Linux .*\)\r\n| p/OpenH323 Gatekeeper/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match H.323-gatekeeper m|^\xff\xfd\x03\xff\xfb\x05.*Version:\r\nGatekeeper\(GNU\) Version\(([\d.]+)\) Ext\(.*\) Build\(.*\) Sys\(Linux .*\)\r\n| p/OpenH323 Gatekeeper/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a # Causes false matches with telnet. # match H.323-gatekeeper m|^\xff\xfd.$| p|GNU Gatekeeper| match H.323-gatekeeper m|^\xff\xfd\x03\xff\xfb\x05\xff\xfe\x01\r\nAccess forbidden!\r\n$| p/GNU Gatekeeper/ @@ -1244,7 +1244,7 @@ match imap m|^\* OK \[CAPABILITY (?:IMAP4 )?IMAP4REV1 .*IMAP4rev1 (200\d\.[-.\w] match imap m|^\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n| p/Cyrus imapd/ v/$2/ h/$1/ match imap m|^\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n| p/Cyrus imapd/ v/$2/ h/$1/ match imap m|^\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n| p/Cyrus imapd/ v/$2/ i/RedHat/ o/Linux/ h/$1/ cpe:/o:redhat:linux/ -match imap m|^\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/$2/ i|Debian/Ubuntu| o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match imap m|^\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/$2/ i|Debian/Ubuntu| o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match imap m|^\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n| p/Cyrus imapd/ v/$2/ i/Mac OS X $3/ o/Mac OS X/ h/$1/ cpe:/o:apple:mac_os_x/a match imap m|^\* OK \[[^\]]+\] ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-OS X Server ([\d.]+):| p/Cyrus imapd/ v/$2/ i/Mac OS X $3/ o/Mac OS X/ h/$1/ cpe:/o:apple:mac_os_x/a match imap m|^\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n| p/Cyrus Murder imapd/ v/$2/ h/$1/ @@ -1298,7 +1298,7 @@ match imap m|^\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready| p/A match imap m|^\* OK WebSTAR Mail ready\r\n| p/WebSTAR imapd/ o/Mac OS X/ cpe:/o:apple:mac_os_x/a match imap m|^\* OK \[CAPABILITY IMAP4rev1[\w+= -]*\] Atmail IMAP4 Server ready\. See COPYING for distribution information\.\r\n| p/Atmail imapd/ match imap m|^\* OK Dovecot DA ready\.\r\n| p/Dovecot DirectAdmin imapd/ -match imap m|^\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/$1/ i|Linux/i686| o/Linux/ cpe:/o:linux:kernel/a +match imap m|^\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/$1/ i|Linux/i686| o/Linux/ cpe:/o:linux:linux_kernel/a match imap m|^\* BYE Hi This is the IMAP SSL Redirect\r\n| p/Lotus Domino secure imapd/ i/SSL redirect/ match imap m|^\* OK Hi This is the IMAP SSL Server .*\r\n| p/Lotus Domino secure imapd/ match imap m|^\* OK TeamXchange IMAP4rev1 server \(([\w._-]+)\) ready\.\r\n| p/TeamXchange imapd/ h/$1/ @@ -1525,7 +1525,7 @@ match lisa m|^0 succeeded\n\0$| p/LAN Information Server/ match lmtp m|^220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n| p/Cyrus Imap Daemon lmtpd/ v/$2/ h/$1/ match lmtp m|^220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n| p/Cyrus lmtpd Murder/ v/$2/ h/$1/ -match lmtp m|^220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n| p/Cyrus Imap Daemon lmtpd/ v/$2/ i/on Red Hat/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match lmtp m|^220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n| p/Cyrus Imap Daemon lmtpd/ v/$2/ i/on Red Hat/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match lmtp m|^220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n| p/DBMail lmtpd/ h/$1/ match lmtp m|^220 DSPAM LMTP ([-\w_.]+) Ready\r\n| p/DSPAM lmtpd/ v/$1/ match lmtp m|^220 ([\w._-]+) Zimbra LMTP ready\r\n| p/Zimbra lmtpd/ h/$1/ @@ -1609,7 +1609,7 @@ match pcmiler m|^ALK PCMILER SERVER READY\n| p/PC*MILER truck routing and mileag match pso-login m|^\x64\x00\x00\x00\x00\x00\x3f\x01\x03\x04\x19\x55Tethealla Login\x00................................................................\x00\x00\x00\x00\x00\x00\x00\x00|s p/Phantasy Star Online game login/ match pso-gate m|^\xc8\x00\x03\x00\x00\x00\x00\x00Phantasy Star Online Blue Burst Game Server\. Copyright 1999-2004 SONICTEAM\.\x00Tethealla Gate v([\w._-]+)................................................................................................$|s p/Phantasy Star Online game server/ v/$1/ -match precomd m|^nduid: \x00([0-9a-f]{40})$| p/WebOS precomd/ i/nduid $1/ d/phone/ o/Linux/ cpe:/o:linux:kernel/a +match precomd m|^nduid: \x00([0-9a-f]{40})$| p/WebOS precomd/ i/nduid $1/ d/phone/ o/Linux/ cpe:/o:linux:linux_kernel/a match donkey m|^.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0|s p/MLdonkey multi-network P2P GUI port/ match donkey m|^\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n| p/MLDonkey multi-network P2P GUI port/ @@ -1698,9 +1698,9 @@ match netsaint m|^ERROR Client is not among hosts allowed to connect\.| p/Nagios match netsoul m|^salut \d+ [0-9a-f]{32} [\d.]+ \d+ \d+\n| p/Netsoul instant messaging/ # I love this service: -match netstat m|^Active Internet connections \(.*\)\nProto Recv-Q Send-Q Local Address Foreign Address State \n| o/Linux/ cpe:/o:linux:kernel/a +match netstat m|^Active Internet connections \(.*\)\nProto Recv-Q Send-Q Local Address Foreign Address State \n| o/Linux/ cpe:/o:linux:linux_kernel/a match netstat m|^Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n| o/QNX/ -match netstat m|^netstat: invalid option -- f\nusage: netstat \[-veenNcCF\]| p/Linux netstat/ i/broken/ o/Linux/ cpe:/o:linux:kernel/a +match netstat m|^netstat: invalid option -- f\nusage: netstat \[-veenNcCF\]| p/Linux netstat/ i/broken/ o/Linux/ cpe:/o:linux:linux_kernel/a match netstat m|^Process Software MultiNet V([\d.]+) Rev A-X, AlphaServer ([\d/ ]+), OpenVMS AXP V([\d.]+)\r\n\r\nProduct License Authorization Expiration Date\r\n| p/OpenVMS netstatd/ i/PSM $1; AlphaServer $2; OpenVMS AXP $3/ o/OpenVMS/ cpe:/o:hp:openvms/a match netsupport-dna m|^\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10}$| p/NetSupport DNA asset management/ @@ -1741,7 +1741,7 @@ match nntp m|^200 Leafnode NNTP daemon, version ([\w.]+) at ([-\w_.]+) \r\n| p/L match nntp m|^\nLeafnode must have a fully-qualified and globally unique domain name,\nnot just \"([-\w_.]+)\"\.\n| p/Leadnode nntpd/ i/misconfigured/ h/$1/ match nntp m|^20\d ([\w.-_]+) NNTPCache server V([\d.]+) \[see www\.nntpcache\.org\]| p/NNTPCache/ v/$2/ h/$1/ match nntp m|^502 access denied <[-\w_.]+@[-\w_.]+>, you do not have connect permissions in the nntpcache\.access file\.\r\n| p/NNTPCache/ i/Access denied/ -match nntp m|^200 ([-\w_.]+) InterNetNews NNRP server INN ([\d.]+) .* \(Debian\) ready \(posting ok\)\.\r\n| p/INN nntpd/ v/$2/ i/on Debian; posting ok/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match nntp m|^200 ([-\w_.]+) InterNetNews NNRP server INN ([\d.]+) .* \(Debian\) ready \(posting ok\)\.\r\n| p/INN nntpd/ v/$2/ i/on Debian; posting ok/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match nntp m|^200 ([-\w_.]+) InterNetNews (?:NNRP )?server INN ([\d.]+) .* ready \(posting ok\)\.\r\n| p/INN nntpd/ v/$2/ i/posting ok/ h/$1/ match nntp m|^201 ([-\w_.]+) InterNetNews (?:NNRP )?server INN ([\d.]+) .* ready \(no posting\)\.\r\n| p/INN nntpd/ v/$2/ i/no posting/ h/$1/ match nntp m|^200 ([-\w_.]+) InterNetNews (?:NNRP )?server INN ([\d.]+) .* ready\r\n| p/INN nntpd/ v/$2/ h/$1/ @@ -1795,7 +1795,7 @@ match parallels-server m|^PRLT\x06\0\0\x00([\w._-]+ \(\w\w\w, \d\d \w\w\w \d\d\d # http://www.papouch.com/shop/scripts/soft/tmedotnet/readme.asp match papouch-tme m|^\*B1E1([\+-]\d\d\d\.\d)\r$| p/Papouch TME Ethernet thermometer/ i/temperature: $1 C/ -match partimage m|^([\d.]+) SSL(?: LOG)?\0 +\0$| p/Partimage+SSL/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match partimage m|^([\d.]+) SSL(?: LOG)?\0 +\0$| p/Partimage+SSL/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a match patrol m|^\0\0\0\r..Who are you\?\n\0|s p/BMC Patrol Agent/ o/Unix/ match pcanywheredata m|^\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n|s p/Symantec pcAnywhere/ o/Windows/ cpe:/a:symantec:pcanywhere/ cpe:/o:microsoft:windows/a @@ -1889,7 +1889,7 @@ match pop3 m|^\+OK Lotus Notes POP3 server version Release ([-.\w]+) ready on | match pop3 m|^\+OK POP3 hotwayd v(\d[-.\w]+) -> The POP3-HTTPMail Gateway\.| p/hotwayd pop3d/ v/$1/ match pop3 m|^\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n| p/Netscape Messenging Server pop3/ v/$2/ i/built on $3/ h/$1/ match pop3 m|^\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready <| p/Cyrus pop3d/ v/$2/ h/$1/ -match pop3 m|^\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready <| p/Cyrus pop3d/ v/$2/ i/Red Hat/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match pop3 m|^\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready <| p/Cyrus pop3d/ v/$2/ i/Red Hat/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match pop3 m|^\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready <| p/Cyrus pop3d/ v/$2/ i/Mac OS X $3/ o/Mac OS X/ h/$1/ cpe:/o:apple:mac_os_x/a match pop3 m|^\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready| p/Cyrus pop3d/ v/$2/ i/Debian/ o/Linux/ h/$1/ cpe:/o:debian:debian_linux/ match pop3 m|^\+OK <[\d.]+@([\w._-]+)> [\w._-]+ Cyrus POP3 v([\w._-]+) server ready\r\n| p/Cyrus pop3d/ v/$2/ h/$1/ @@ -1988,7 +1988,7 @@ match pop3 m|^\+OK David\.fx Mail Access Server ready \(Tobit\.Software, Germany match pop3 m|^\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n| p/SurgeMail pop3d/ v/$2/ h/$1/ match pop3 m|^\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) <| p/Eudora Internet Mail Server X pop3d/ v/$2/ o/Mac OS X/ h/$1/ cpe:/o:apple:mac_os_x/a match pop3 m|^\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; | p/XMail pop3d/ v/$2/ h/$1/ -match pop3 m|^\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; | p/XMail pop3d/ v/$2/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match pop3 m|^\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; | p/XMail pop3d/ v/$2/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match pop3 m|^\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n| p/Samsung Contact pop3d/ h/$1/ match pop3 m|^\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\)| p/Sun Java System Messaging Server pop3d/ v/$2/ h/$1/ match pop3 m|^\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n| p/Sun Java System Messaging Multiplexor pop3d/ v/$1/ @@ -2145,7 +2145,7 @@ match printer m|^lpd \[@([-.\w]+)\]: Print-services are not available to your ho match printer m|^([-.\w]+): lpd: Your host does not have line printer access\n| p|BSD/Linux lpd| i/hostname denied/ h/$1/ match printer m|^lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd| i/source port denied/ h/$1/ # Linux 2.4.18 lpr 2000.05.07-4.2 -match printer m|^lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n$| p/Linux lpd/ i/client IP must resolve/ o/Linux/ cpe:/o:linux:kernel/a +match printer m|^lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n$| p/Linux lpd/ i/client IP must resolve/ o/Linux/ cpe:/o:linux:linux_kernel/a match printer m|^lpd: (.*)\n| p/lpd/ i/error: $1/ match printer m|^([\w._/-]+/lpd): (.*)\n| p/lpd/ i/path: $1; error: $2/ # Mac OS X? @@ -2203,7 +2203,7 @@ match remote-rac m|^\x10\0\0\0\t\xe7\xa0o\xde&\xdc\xfec\xbf\xb91\xef\xc3\?\xc9\x # Port 8610 match remote-rac m|^\x02\x00\x00\x00\xfe\x00\x00\x00\x00\x01\x00\x00.{256}$|s p/Remote Administrator Control/ d/remote management/ o/Windows/ cpe:/o:microsoft:windows/ -match rgpsp m|^last pid: \d+ rgpsp poller ! ! !\n| p/Remote GPS Poller/ o/Linux/ cpe:/o:linux:kernel/a +match rgpsp m|^last pid: \d+ rgpsp poller ! ! !\n| p/Remote GPS Poller/ o/Linux/ cpe:/o:linux:linux_kernel/a # Remote Console via RCONJ - RCONJ is a java utility that allows one # to remote console into a Novell server. It uses 2034 (unsecure) or # 2036 (secure) by default but can be changed. @@ -2216,7 +2216,7 @@ match resvc m|^\{\w+\} NODEINFO \(\d+\) \{\d+\}Version: (\d[-.\w ]+) Microsoft R match remoteanything m|^(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t| p/TWD RemoteAnything/ v/$1/ o/Windows/ cpe:/o:microsoft:windows/a match rifa-dvr m|^RIFA\0\0\0\0| p/Rifatron DVR/ d/webcam/ -match righteous-backup m|^\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 $| p/R1Soft Righteous Backup Linux Agent/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match righteous-backup m|^\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 $| p/R1Soft Righteous Backup Linux Agent/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a match righteous-backup m|^\xe1\xe7\xe6\x07\0\x01\0 $| p/R1Soft Righteous Backup/ match roku m|^roku: ready\r\n| p/Roku SoundBridge/ d/media device/ @@ -2229,7 +2229,7 @@ match rowmote m|^KEY UNAUTHORIZED\r\nKEY UNAUTHORIZED\r\n| p/Rowmote remote medi match rsync m|^@RSYNCD: (\d+)| i/protocol version $1/ match rpacd m|^\0\x01\0\n\0\0\0=The host is not in the allowed host list\. Connection refused\.$| p/WinPcap Remote Capture Packet daemon/ o/Windows/ cpe:/o:microsoft:windows/a -match rpd m|^\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian| p/Remote Play Daemon/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match rpd m|^\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian| p/Remote Play Daemon/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a match runes-of-magic m|^\x10\0\0\0\x03| p/Runes of Magic game server/ @@ -2326,7 +2326,7 @@ match smtp m|^220 Jana-Server Simple Mail Transfer Service ready\r\n| p/JanaServ match smtp m|^220 <1\d+\.\d+@([-.\w]+)> \[XMail (\d[-.\w]+) ESMTP Server\] service ready; | p/XMail SMTP server/ v/$2/ h/$1/ match smtp m|^220 <1\d+\.\d+@([-.\w]+)> \[XMail (\d[-.\w]+) \(([-./\w]+)\) ESMTP Server\] service ready; | p/XMail SMTP server/ v/$2/ i/on $3/ h/$1/ match smtp m|^220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready| p/XMail SMTP server/ v/$2/ h/$1/ -match smtp m|^421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/$1/ i|Linux/x86| o/Linux/ cpe:/o:linux:kernel/a +match smtp m|^421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/$1/ i|Linux/x86| o/Linux/ cpe:/o:linux:linux_kernel/a match smtp m|^220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n| p/FirstClass SMTP server/ v/$2/ h/$1/ match smtp m|^220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n| p/AppleMailServer/ v/$2/ h/$1/ match smtp m|^220 ([-.\w]+) ESMTP CommuniGate Pro (\d[-.\w]+)\r\n| p/Communigate Pro SMTP/ v/$2/ h/$1/ @@ -2570,7 +2570,7 @@ match smtp m|^421 Unexpected log failure, please try later\r\n| p/Postfix smtpd/ match smtp m|^220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \(| p/DynFX smtpd/ v/$2/ o/Windows/ h/$1/ cpe:/o:microsoft:windows/a match smtp m|^220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/| p/Sendmail/ v/$1/ i/broken/ cpe:/a:sendmail:sendmail/ match smtp m|^554 ([-\w_.]+) ESMTP not accepting messages\r\n| p/Sendmail/ i/Not accepting mail/ h/$1/ cpe:/a:sendmail:sendmail/ -match smtp m|^220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready| p/L-Soft HDMail smtpd/ v/$2/ o/Linux/ h/$1/ cpe:/o:linux:kernel/a +match smtp m|^220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready| p/L-Soft HDMail smtpd/ v/$2/ o/Linux/ h/$1/ cpe:/o:linux:linux_kernel/a match smtp m|^220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n| p/Synchronet smtpd/ v/$2/ o/Windows/ h/$1/ cpe:/o:microsoft:windows/a match smtp m|^220 ShareMailPro SMTP Server Ready \r\n| p/LavaSoftware ShareMailPro smtpd/ o/Windows/ cpe:/o:microsoft:windows/a match smtp m|^220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready| p/Mail2000 smtpd/ v/$2/ h/$1/ @@ -2726,8 +2726,8 @@ match ssh m|^sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^ match ssh m|^SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+)| p/SCS sshd/ v/$2/ i/protocol $1/ # OpenSSH -match ssh m|^SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n| p/OpenSSH/ v/$2 Debian $3/ i/Nokia Maemo tablet; protocol $1/ o/Linux/ cpe:/a:openbsd:openssh:$2/ cpe:/o:linux:kernel/a -match ssh m|^SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n| p/OpenSSH/ v/$2 Debian $3/ i/protocol $1/ o/Linux/ cpe:/a:openbsd:openssh:$2/ cpe:/o:linux:kernel/a +match ssh m|^SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n| p/OpenSSH/ v/$2 Debian $3/ i/Nokia Maemo tablet; protocol $1/ o/Linux/ cpe:/a:openbsd:openssh:$2/ cpe:/o:linux:linux_kernel/a +match ssh m|^SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n| p/OpenSSH/ v/$2 Debian $3/ i/protocol $1/ o/Linux/ cpe:/a:openbsd:openssh:$2/ cpe:/o:linux:linux_kernel/a match ssh m|^SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n| p/OpenSSH/ v/$2 Fedora/ i/Fedora Core $3; protocol $1/ o/Linux/ cpe:/a:openbsd:openssh:$2/ cpe:/o:fedoraproject:fedora_core/ match ssh m|^SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n| p/OpenSSH/ v/$2/ i/FreeBSD $3; protocol $1/ o/FreeBSD/ cpe:/a:openbsd:openssh:$2/ cpe:/o:freebsd:freebsd/a match ssh m|^SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n| p/OpenSSH/ v/$2/ i/FreeBSD $3; protocol $1/ o/FreeBSD/ cpe:/a:openbsd:openssh:$2/ cpe:/o:freebsd:freebsd/a @@ -2805,8 +2805,8 @@ match ssh m|^SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal no match ssh m|^SSH-([\d.]+)-OpenSSH\r?\n$| p/OpenSSH/ i/protocol $1/ d/terminal server/ match ssh m|^SSH-1\.5-X\r?\n| p/Cisco VPN Concentrator SSHd/ i/protocol 1.5/ d/terminal server/ match ssh m|^SSH-([\d.]+)-NetScreen\r?\n| p/NetScreen sshd/ i/protocol $1/ d/firewall/ -match ssh m|^SSH-1\.5-FucKiT RootKit by Cyrax\r?\n| p/FucKiT RootKit sshd/ i/**BACKDOOR** protocol 1.5/ o/Linux/ cpe:/o:linux:kernel/a -match ssh m|^SSH-2\.0-dropbear_([-\w.]+)\r?\n| p/Dropbear sshd/ v/$1/ i/protocol 2.0/ o/Linux/ cpe:/o:linux:kernel/a +match ssh m|^SSH-1\.5-FucKiT RootKit by Cyrax\r?\n| p/FucKiT RootKit sshd/ i/**BACKDOOR** protocol 1.5/ o/Linux/ cpe:/o:linux:linux_kernel/a +match ssh m|^SSH-2\.0-dropbear_([-\w.]+)\r?\n| p/Dropbear sshd/ v/$1/ i/protocol 2.0/ o/Linux/ cpe:/o:linux:linux_kernel/a match ssh m|^Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n| p/libwrap'd OpenSSH/ i/Access denied/ match ssh m|^SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n| p/FortiSSH/ v/$2/ i/protocol $1/ match ssh m|^SSH-([\d.]+)-cryptlib\r?\n| p/APC AOS cryptlib sshd/ i/protocol $1/ o/AOS/ @@ -2864,7 +2864,7 @@ match ssh m|^SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n| p/Pragma FortessSSH/ v/ match ssh m|^SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n| p/Sysax Multi Server sshd/ v/$2/ i/protocol $1/ o/Windows/ cpe:/o:microsoft:windows/a match ssh m|^SSH-([\d.]+)-1\.00\r\n$| p/Cisco IP Phone CP-7900G-series sshd/ i/protocol $1/ d/VoIP phone/ match ssh m|^SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n| p/Foxit WAC Server sshd/ v/$2/ i/protocol $1/ o/Windows/ cpe:/o:microsoft:windows/a -match ssh m|^SSH-([\d.]+)-ROSSSH\r\n| p/MikroTik RouterOS sshd/ i/protocol $1/ d/router/ o/Linux/ cpe:/o:linux:kernel/a +match ssh m|^SSH-([\d.]+)-ROSSSH\r\n| p/MikroTik RouterOS sshd/ i/protocol $1/ d/router/ o/Linux/ cpe:/o:linux:linux_kernel/a match ssh m|^SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n| p/3Com switch sshd/ v/$2/ i/protocol $1/ d/switch/ o/Comware/ cpe:/o:3com:comware/ match ssh m|^SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n| p/3Com switch sshd/ v/$2/ i/protocol $1/ d/switch/ o/Comware/ cpe:/o:3com:comware/ match ssh m|^SSH-([\d.]+)-XXXX\r\n| p/Cyberoam firewall sshd/ i/protocol $1/ d/firewall/ @@ -2913,7 +2913,7 @@ match kvm m|^LFB 1\.0[56]$| p/IBM BladeCenter KVM/ match syncsort-nibbler m|^\x80\0\0\$\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\"$| p/Syncsort Backup Express nibbler/ # Redhat Linux 7.1 - HAHAHAHAHAHA!!!! I love this service :) -match systat m|^USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n| p/Linux systat/ o/Linux/ cpe:/o:linux:kernel/a +match systat m|^USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n| p/Linux systat/ o/Linux/ cpe:/o:linux:linux_kernel/a match systat m|^ PID PGRP SID PRI STATE BLK SIZE COMMAND\n| p/QNX systat/ o/QNX/ match tcpwrapped m|^You are not welcome to use (\w+) from [\w._-]+\.\n$| p/BSD TCP Wrappers/ i/$1/ @@ -3059,7 +3059,7 @@ match telnet m|^\xff\xfd%$| p/BSD-derived telnetd/ # Solaris 9 match telnet m|^\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\$$| p/Sun Solaris telnetd/ o/Solaris/ cpe:/o:sun:sunos/a # Redhat Linux 7.3 telnet -match telnet m|\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'$| p/Linux telnetd/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'$| p/Linux telnetd/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\n\rUser Name : $| p/APC network management card telnetd/ d/power-device/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\n\rUser Name : | p/APC telnetd/ i|Power/UPS device| d/power-device/ # G-Net BB0060 ADSL Modem @@ -3137,8 +3137,8 @@ match telnet m=^\xff\xfb\x01\r\n\r\n#\r\n\| ELSA LANCOM DSL/I-10 Office\r\n\| Ve match telnet m|^PC Telnetd ([\d.]+)\r\n\r\nlogin: | p/PC Telnetd/ v/$1/ o/Windows/ cpe:/o:microsoft:windows/a match telnet m|^\r\n>>> DECT@NET D&T Agent <<<\r\n\r\nlocal> | p/Philips DECT D&T Agent telnetd/ match telnet m=^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[H\x1b\[2J\x1b\[0m\x1b\[0m\x1b\[0m\x1b\[H\x1b\[2J\x1b\[0m \+-+\+\r\n \| NuSight GEMS Console +Version v([\d.]+) \|\r\n \| Copyright \(c\) 1998-2001, NPI +\|\r\n= p/NPI Keystone switch telnetd/ v/$1/ d/switch/ -match telnet m|^rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: | p/LinuxNode telnetd/ v/$1/ o/Linux/ h/$2/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: | p/LinuxNode telnetd/ v/$1/ o/Linux/ h/$2/ cpe:/o:linux:kernel/a +match telnet m|^rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: | p/LinuxNode telnetd/ v/$1/ o/Linux/ h/$2/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: | p/LinuxNode telnetd/ v/$1/ o/Linux/ h/$2/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w.]+) \(.*\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n.*root@OpenWrt:/# |s p/Busybox telnetd/ v/$1/ i/open; OpenWrt/ cpe:/a:busybox:telnetd:$1/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# | p/BusyBox telnetd/ v/$1/ i/MacSense HomePod Wireless MP3 Player/ d/media device/ cpe:/a:busybox:telnetd:$1/ @@ -3225,7 +3225,7 @@ match telnet m|^\xff\xfb\x01\r\n\rPassword: $| p|ZyXEL Prestige/Efficient Speeds match telnet m|^\xff\xfb\x03\xff\xfb\x01password: $| p/D-Link ADSL router telnetd/ d/router/ match telnet m|^\r\n\xff\xfb\x01Enter password: $| p/SunSwitch telnetd/ d/switch/ match telnet m|^\xff\xfb\x03\xff\xfb\x01\rLogin: $| p/Cisco 3000 series VPN Concentrator telnetd/ d/terminal server/ cpe:/h:cisco:vpn_3000_concentrator/ -match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: | p/PXES Linux Thin Client telnetd/ d/terminal/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: | p/PXES Linux Thin Client telnetd/ d/terminal/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\n\rlogin: | p/Cayman Gatorbox router telnetd/ d/router/ match telnet m|^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03(?:\r\n)?User: | p/Aruba switch telnetd/ d/switch/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: | p/Aruba switch telnetd/ d/switch/ @@ -3273,7 +3273,7 @@ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(no match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: | p/BusyBox telnetd/ h/$1/ cpe:/a:busybox:telnetd/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(| p/BusyBox telnetd/ v/$1/ cpe:/a:busybox:telnetd:$1/ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n| p/Busybox telnetd/ v/$1/ cpe:/a:busybox:telnetd:$1/ -match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: | p/utelnetd/ i/FetchTV DVR/ d/media device/ o/Linux/ cpe:/o:linux:kernel/ +match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: | p/utelnetd/ i/FetchTV DVR/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/ match telnet m|^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\(B\x1b\)0\x1b\[2J\x1b\[H\x1b\[m\x0f\x1b\[10;32H\x0e \x1b\[11;32H lq\x0f\x1b\[1mLogin\x0e\x1b\[mqqqqqqqqk\x1b\[12;32H x\x1b\[13C x\x1b\[13;32H mqqqqqqqqqqqqqqj\x1b\[12;34H| p/Adtran Atlass 500 T1 router telnetd/ d/router/ match telnet m|^\xff\xfb\x01\xff\xfd\x1fHummingbird Ltd\., Windows NT, Telnetd \((\w+) Version ([\d.]+)\)\r\n\r\nlogin: | p/Hummingbird windows telnetd/ v/$2/ o/Windows/ h/$1/ cpe:/o:microsoft:windows/a match telnet m|^\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: | p/Hummingbird windows telnetd/ v/$1/ o/Windows/ h/$2/ cpe:/o:microsoft:windows/a @@ -3302,8 +3302,8 @@ match telnet m|^\n\r\n\rHi! I am your Net Tamagotchi! I love you!!| p/Net Tamago match telnet m|^\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\t Welcome to P330\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: | p/Avaya P330 switch telnetd/ v/$1/ d/switch/ match telnet m|^\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: | p/Avaya P333R switch telnetd/ v/$1/ d/switch/ match telnet m|^\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\xff\xfd\x1fSpeedStream Telnet Server\r\n\r\n\r\nlogin: | p/SpeedStream router telnetd/ d/router/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\rwelcome on your dreambox! - Kernel (\d[\w.]+) \([\d:]+\)\.\r\n\r([-\w_.]+) login: | p/Dreambox DVB telnetd/ i/Kernel $1/ d/media device/ o/Linux/ h/$2/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) | p/Dreambox DVB telnetd/ i/Kernel $1; Helenite firmware/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\rwelcome on your dreambox! - Kernel (\d[\w.]+) \([\d:]+\)\.\r\n\r([-\w_.]+) login: | p/Dreambox DVB telnetd/ i/Kernel $1/ d/media device/ o/Linux/ h/$2/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) | p/Dreambox DVB telnetd/ i/Kernel $1; Helenite firmware/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) | p/Dreambox DVB telnetd/ i/Kernel $1/ d/media device/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x1f\r\n\x1b\[34;1m \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* \r\n\x1b\[34;1m| p/SAP J2EE engine telnetd/ match telnet m|^\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H| p/Symbol CB-1000 bridge telnetd/ v/$2/ i/SN $1; MAC $3/ d/bridge/ @@ -3343,19 +3343,19 @@ match telnet m|^\xff\xfb\x01\xff\xfd\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\*{6 match telnet m|^\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n| p/Dell $1 printer telnetd/ v/$3 $4/ i/MAC $2; uptime $5/ d/printer/ match telnet m|^\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n| p/PDP-10 simulator telnetd/ match telnet m|^\xff\xfb\x01\(Enable\) Password\? | p/Enterasys gated config telnetd/ d/router/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM200\) for arca\r\n\rKernel ([-\w_.]+) on an arca \r\n\rZEM200 login: | p/ZEM200 biometric device config telnetd/ i/Linux $1/ d/specialized/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM200\) for arca\r\n\rKernel ([-\w_.]+) on an arca \r\n\rZEM200 login: | p/ZEM200 biometric device config telnetd/ i/Linux $1/ d/specialized/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword:| p/COMPEX CGX3224 switch telnetd/ i/CGX $1.$2/ d/switch/ match telnet m|^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n| p/Versatek VersaXpress HPNA Routing Concentrator telnetd/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) | p/Sagem D-BOX2 Sportster Pro telnetd/ v/$1/ i/linux kernel $2/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n.*Sagem D-BOX2 - Kernel ([-\w_.]+) |s p/Sagem D-BOX2 telnetd/ i/linux kernel $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) | p/Sagem D-BOX2 Sportster Pro telnetd/ v/$1/ i/linux kernel $2/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n.*Sagem D-BOX2 - Kernel ([-\w_.]+) |s p/Sagem D-BOX2 telnetd/ i/linux kernel $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfb\x03\r\0\r\n\*\*\* Lantronix Universal Device Server \*\*\*\r\n\r\0Serial Number (\d+) MAC address ([\w:]+)\r\n\r\0Software Version V([\d.]+) \((\d+)\)\r\0\r\n\r\n\r\0Press Enter to go into Setup Mode \r\n\r\0| p/Lantronix Universal Device Server telnetd/ v/$3.$4/ i/Serial $1; MAC $2/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n| p/Lantronix Universal Device Server telnetd/ v/$3.$4/ i/Serial $1; MAC $2/ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: | p/AVM FRITZ!Box 7170 telnetd/ d/WAP/ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: | p/AVM FRITZ!Box telnetd/ d/WAP/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date:| p/DD-WRT telnetd/ v/$1/ d/WAP/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n| p/DD-WRT telnetd/ v/$1/ d/WAP/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: | p/DD-WRT telnetd/ v/$2/ i/DD-WRT $1/ d/WAP/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v[^\r\n]+)\r\n| p/DD-WRT telnetd/ i/DD-WRT $1/ d/WAP/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date:| p/DD-WRT telnetd/ v/$1/ d/WAP/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n| p/DD-WRT telnetd/ v/$1/ d/WAP/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: | p/DD-WRT telnetd/ v/$2/ i/DD-WRT $1/ d/WAP/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v[^\r\n]+)\r\n| p/DD-WRT telnetd/ i/DD-WRT $1/ d/WAP/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\$$| p/Siemens HiPath PBX telnetd/ d/PBX/ match telnet m|^\xff\xfb\x01\xff\xfb\x03Welcome to Network Camera telnet daemon\r\n\r\nPassword:| p/Vivotek 3102 Camera telnetd/ d/webcam/ match telnet m|^\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd| @@ -3442,7 +3442,7 @@ match telnet m|^\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01Welcome to VCSCDCS2\r\r\nTAN match telnet m=^\d+\|Connected to foobar2000 Control Server v([\d.]+)= p/foobar2000 remote control telnetd/ v/$1/ o/Windows/ cpe:/o:microsoft:windows/a match telnet m|^\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password:|s p/Polycom ViewStation Video Conferencing telnetd/ d/webcam/ match telnet m|^AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n| p/Netcomm V300 VoIP adapter telnetd/ i/MAC $1/ d/VoIP adapter/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r([\d.]+)\r\n\rLinux ([-\w_.]+) on a armv4tl \([\d:]+\)\r\n\r([-\w_.]+) login:| p/AXIS webcam telnetd/ v/$1/ i/Linux $2/ d/webcam/ o/Linux/ h/$3/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r([\d.]+)\r\n\rLinux ([-\w_.]+) on a armv4tl \([\d:]+\)\r\n\r([-\w_.]+) login:| p/AXIS webcam telnetd/ v/$1/ i/Linux $2/ d/webcam/ o/Linux/ h/$3/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n| p/HP ProLiant switch telnetd/ d/switch/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name:| p/Netgear DM111 broadband router telnetd/ v/$1/ d/broadband router/ match telnet m|^\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\nPrecise/RTCS v([\d.]+) Telnet server\r\n\r\0\r\nService Port Manager Active\r\0\r\n Ends Session\r\0\r\n| p/Liebert OpenComms remote management telnetd/ v/$1/ d/remote management/ @@ -3459,7 +3459,7 @@ match telnet m|^\xff\xfb\x03\xff\xfb\x01\r\n +Welcome to Media Gateway Processor match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfe!\xff\xfd\x1f\xff\xfe\"\xff\xfe\x03IRRd version ([-\w_.]+) \[\w+\]\r\n\r\nUser Access Verification| p/Merit Internet Routing Registry telnet config/ v/$1/ match telnet m|^\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n| p/WhatRoute telnetd/ o/Mac OS/ cpe:/o:apple:mac_os/a match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: | p/C-motech CNU-550pro telnetd/ d/broadband router/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: | p/Picotux telnetd/ d/specialized/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: | p/Picotux telnetd/ d/specialized/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n| p/Cadant C3 Cable Modem Termination Server telnetd/ d/specialized/ match telnet m|^\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+),| p/Extron IPL T S2 telnetd/ v/$1/ d/media device/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin:|s p/Ericsson HM410dp ADSL router telnetd/ d/broadband router/ @@ -3485,11 +3485,11 @@ match telnet m|^\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media match telnet m|^\xff\xfd\0\xff\xfd\x1fWelcome to MLDonkey ([\w._-]+)\n\x1b\[36mWelcome on mldonkey command-line\x1b| p/MLDonkey telnetd/ v/$1/ match telnet m|^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +\* POSTEF ADSL Modem/Router ([\w._-]+) | p/POSTEF $1 ADSL router telnetd/ d/broadband router/ match telnet m|^\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03Belkin Network USB Hub Ver ([\w._-]+) TELNET server\.| p/Belkin network USB hub telnetd/ v/$1/ d/specialized/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\*+\r\n\r\* +\*\r\n\r\* The Gemini Project \*\r\n\r\* +\*\r\n\r\*+\r\n\r\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) | p/Dreambox media device telnetd/ i/Linux $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\*+\r\n\r\* +\*\r\n\r\* +The Gemini Project (v[\w. ]+) +\*\r\n\r\* +XD mod, date: (?:[\d.]+) +\*\r\n\r\* +!!! WITHOUT BOMB !!! +\*\r\n\r\* +\*\r\n\r\*+\r\n\r\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) | p/Dreambox media device telnetd/ i/Linux $2; Gemini $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Garnet \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdreambox login: | p/Dreambox 500 media device telnetd/ i/Linux kernel $2; PLi image Garnet, based on $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: | p/Dreambox 500 media device telnetd/ i/Linux kernel $2; PLi image Jade, based on $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi\xae jade dm7020si\r\n\r\r\n\rdm7020si login: | p/Dreambox 7020si media device telnetd/ i/PLi image jade/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\*+\r\n\r\* +\*\r\n\r\* The Gemini Project \*\r\n\r\* +\*\r\n\r\*+\r\n\r\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) | p/Dreambox media device telnetd/ i/Linux $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\*+\r\n\r\* +\*\r\n\r\* +The Gemini Project (v[\w. ]+) +\*\r\n\r\* +XD mod, date: (?:[\d.]+) +\*\r\n\r\* +!!! WITHOUT BOMB !!! +\*\r\n\r\* +\*\r\n\r\*+\r\n\r\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) | p/Dreambox media device telnetd/ i/Linux $2; Gemini $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Garnet \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdreambox login: | p/Dreambox 500 media device telnetd/ i/Linux kernel $2; PLi image Garnet, based on $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: | p/Dreambox 500 media device telnetd/ i/Linux kernel $2; PLi image Jade, based on $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi\xae jade dm7020si\r\n\r\r\n\rdm7020si login: | p/Dreambox 7020si media device telnetd/ i/PLi image jade/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* All rights reserved \(1997-2004\) \*\r\n\* Without the owner's prior written consent,| p/Huawei Quidway Eudemon firewall telnetd/ d/firewall/ match telnet m|^\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2008 Huawei Technologies Co\., Ltd\. \*\r\n\* Without the owner's prior written consent,| p/Huawei Quidway S8505 switch telnetd/ d/switch/ match telnet m|^\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2008 3Com Corp\. and its licensors\. All rights reserved\. \*\r\n\* Without the owner's prior written consent,| p/3Com 4500 switch telnetd/ d/switch/ @@ -3507,7 +3507,7 @@ match telnet m|^Welcome to LDK-300 system\. Press enter\.\r\nYour address is| p/ match telnet m|^\d+-NENET AB Ethernet Com Card V([\w._-]+) Built .*\r\nDebugOutput: \d+ DebugLevel: \d+\r\nHit 0-4 to change debug level, S for socket status\r\n| p/NENET AB ethernet telnet config/ v/$1/ match telnet m=^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL Router\r\nLogin (?:user|name): = p/ADSL router telnet config/ d/broadband router/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: | p/AliceBox AH4021 telnet config/ d/broadband router/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM300\) for MIPS\r\n\rKernel ([\w._-]+) ([\w._-]+) on an MIPS\r\n| p/ZKSoftware ZEM300 embedded Linux telnetd/ i/Kernel $1; MIPS/ o/Linux/ h/$2/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM300\) for MIPS\r\n\rKernel ([\w._-]+) ([\w._-]+) on an MIPS\r\n| p/ZKSoftware ZEM300 embedded Linux telnetd/ i/Kernel $1; MIPS/ o/Linux/ h/$2/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword :| p/Larus 54580 NTP clock telnetd/ v/$2/ i/NTP $1; MAC $3/ h/$4/ match telnet m|^uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> | p/GeeXboX uShare telnetd/ v/$1/ match telnet m|^SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n| p/SMPlayer telnetd/ v/$1/ @@ -3543,17 +3543,17 @@ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADS match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Siemens ADSL SL2-141-I HSN2 \r\nSoftware Version: ([\w._-]+)\r\nLogin name: | p/Siemens ADSL SL2-141-I HSN2 ADSL telnetd/ v/$1/ d/broadband router/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0| p/Mitsubishi Electric XD1000 ProjectorView telnetd/ v/$2 $3/ i/MAC $1/ d/media device/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ROTAL Wireless ADSL2\+ Router RTA1025W \r\nSoftware Version: ([\w._-]+)\r\nLogin name: | p/ROTAL RTA1025W WAP telnetd/ v/$1/ d/WAP/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03 === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n.*\r\n KAMIKAZE \(bleeding edge, (r\d+)\)|s p/BusyBox telnetd/ i/no password; OpenWrt Kamikaze $1/ d/WAP/ o/Linux/ cpe:/a:busybox:telnetd/ cpe:/o:linux:kernel/a -match telnet m|\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03 === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\n.*\r\n KAMIKAZE \(([^)]*)\)|s p/BusyBox telnetd/ v/$1/ i/no password; OpenWrt Kamikaze $2/ d/WAP/ o/Linux/ cpe:/a:busybox:telnetd:$1/ cpe:/o:linux:kernel/a -match telnet m|\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03 === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\n.*\r\n KAMIKAZE \(([^)]*)\)|s p/BusyBox telnetd/ v/$1/ i/no password; OpenWrt Kamikaze $2/ d/WAP/ o/Linux/ cpe:/a:busybox:telnetd:$1/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n| p/BusyBox telnetd/ v/$1/ i/Bifferboard $2/ o/Linux/ cpe:/a:busybox:telnetd:$1/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03 === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n.*\r\n KAMIKAZE \(bleeding edge, (r\d+)\)|s p/BusyBox telnetd/ i/no password; OpenWrt Kamikaze $1/ d/WAP/ o/Linux/ cpe:/a:busybox:telnetd/ cpe:/o:linux:linux_kernel/a +match telnet m|\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03 === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\n.*\r\n KAMIKAZE \(([^)]*)\)|s p/BusyBox telnetd/ v/$1/ i/no password; OpenWrt Kamikaze $2/ d/WAP/ o/Linux/ cpe:/a:busybox:telnetd:$1/ cpe:/o:linux:linux_kernel/a +match telnet m|\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03 === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\n.*\r\n KAMIKAZE \(([^)]*)\)|s p/BusyBox telnetd/ v/$1/ i/no password; OpenWrt Kamikaze $2/ d/WAP/ o/Linux/ cpe:/a:busybox:telnetd:$1/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n| p/BusyBox telnetd/ v/$1/ i/Bifferboard $2/ o/Linux/ cpe:/a:busybox:telnetd:$1/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin:| p/D-Link DSL-500B telnetd/ d/broadband router/ match telnet m|^\xff\xfb\x03\xff\xfb\x01\r\n\r\n\r\nAG 5000\r\n\r\n\r\nLogin: | p/Nomadix AG 5000 telnetd/ d/WAP/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: | p/ZKSoftware ZEM500 fingerprint reader telnetd/ i/Linux $1; MIPS/ d/security-misc/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: | p/ZKSoftware ZEM500 fingerprint reader telnetd/ i/Linux $1; MIPS/ d/security-misc/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu| p/Cisco Aironet BR500E telnetd/ v/$1/ d/WAP/ cpe:/a:cisco:telnet/ cpe:/h:cisco:aironet_br500e/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: | p/D-Link 524, DIR-300, or WBR-1310 WAP telnetd/ d/WAP/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: | p/Nortel-LG VoIP IAD telnetd/ d/PBX/ -match telnet m|^Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n| p/Netkit-telnetd/ i/Linux $1/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n| p/Netkit-telnetd/ i/Linux $1/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: | p/HP Remote Insight Lights-Out telnetd/ d/remote management/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: | p/Vertical Xcelerator IP telnetd/ d/VoIP adapter/ match telnet m|^Console is locked by another telnet/SSH application!\n| p/Arris tm602g cable modem telnetd/ i/console in use/ d/broadband router/ @@ -3601,8 +3601,8 @@ match telnet m|^MythFrontend Network Control\r\nType 'help' for usage informatio match telnet m|^\xff\xfb\x01\xff\xfb\x03\r\n\(Cisco Controller\) \r\nUser: | p/Cisco 4402 WLAN controller telnetd/ d/remote management/ cpe:/a:cisco:telnet/ match telnet m|^\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C| p/ICOM $1 amateur radio telnetd/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: | p/InterTel IPRC VoIP management card telnetd/ d/PBX/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*\xaf\xaf\xaf\xaf\xaf\r\n\r Kernel ([\w._-]+) \(00:17:54\)\r\n\rdreambox login: |s p/Dreambox DVB telnetd/ i/Linux $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel:$1/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n| p/Dreambox SatDream DVB telnetd/ i/Linux $1; based on $2/ d/media device/ o/Linux/ cpe:/o:linux:kernel:$1/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*\xaf\xaf\xaf\xaf\xaf\r\n\r Kernel ([\w._-]+) \(00:17:54\)\r\n\rdreambox login: |s p/Dreambox DVB telnetd/ i/Linux $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel:$1/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n| p/Dreambox SatDream DVB telnetd/ i/Linux $1; based on $2/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel:$1/a match telnet m|^\xff\xfb\x03\xff\xfb\x01\r\nRSC version ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: | p/Sun Remote System Control telnetd/ v/$1/ d/remote management/ h/$2/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to (R\w+) version (.*) from [\d /:]+\r\nsystemname is ([\w@_.-]+), location ([^\r\n]*)\r\n\r\n\r\nLogin: | p/Funkwerk bintec $1 router/ v/$2/ i/location: $4/ h/$3/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03FAST(\w+) ADSL Router \(Software Version:([\w._-]+)\)\r\nLogin: | p/Sagem F@st $1 ADSL router telnetd/ v/$2/ d/broadband router/ @@ -3698,7 +3698,7 @@ match telnet m|^\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nusername: | p match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\rEXFO (BV[\w._-]+)\r\n\r\r\n\rWARNING: This system is for use by authorized users only!\r\n\r\r\n\rPassword: | p/Exfo $1 Ethernet test device telnetd/ d/specialized/ cpe:/h:exfo:$1/ match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfb\x18\n\rWelcome Visiting Huawei Home Gateway\n\rCopyright by Huawei Technologies Co\., Ltd\.\n\rLogin:| p/Huawei STC router telnetd/ d/broadband router/ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n \r\nModel name : easyRAID ([\w._+-]+)\r\nFirmware version : ([\w._-]+)\r\nBootcode version : ([\w._-]+)\r\nSerial number : (\w+)\r\nCPU type: [^\r]*\r\nInstalled memory : ([^\r]+)\r\nController type: [^\r]*\r\nDisk slot number: [^\r]*\r\nDisk state : [^\r]*\r\n \r\n=== Welcome to CLI ([\w._-]+) ===\r\nPlease input password: | p/easyRAID $1 telnetd/ v/$6/ i/firmware $2; bootcode $3; serial $4; memory $5/ d/storage-misc/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(([\w._-]+)\) for MIPS\r\n\rKernel ([\w._-]+) Treckle on an MIPS\r\n\r[\w._-]+ login: | p/ZKSoftware $1 access control device/ i/Linux $2; MIPS/ d/security-misc/ o/Linux/ cpe:/h:zksoftware:$1/ cpe:/o:linux:kernel:$2/ +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(([\w._-]+)\) for MIPS\r\n\rKernel ([\w._-]+) Treckle on an MIPS\r\n\r[\w._-]+ login: | p/ZKSoftware $1 access control device/ i/Linux $2; MIPS/ d/security-misc/ o/Linux/ cpe:/h:zksoftware:$1/ cpe:/o:linux:linux_kernel:$2/ match telnet m|^\xff\xfb\x01\xff\xfd\"\[Fallen Heroes Console\] remote control session\.\r\nPassword:\0| p/Rappelz game server admin telnetd/ match telnet m|^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03BCM96338 xDSL Router\r\nLogin: | p/Innacom W3400 WAP telnetd/ d/WAP/ cpe:/h:innacom:w3400/ match telnet m|^\x1b\[1;31m \x1b\[1;33m\(\x1b\[1;31m \x1b\[1;33m\(\x1b\[1;31m \* \r\n \* \)\)\\ \) \)\\ \) \x1b\[1;33m\(\x1b\[1;31m ` \r\n ` \) /\x1b\[1;33m\(\x1b\[1;31m\x1b\[1;33m\(\x1b\[1;31m\)/\x1b\[1;33m\(\x1b\[1;31m \x1b\[1;33m\(\x1b\[1;31m\x1b\[1;33m\(\x1b\[1;31m\)/\x1b\[1;33m\(\x1b\[1;31m \)\\\)\)\x1b\[1;33m\(\x1b\[1;31m \r\n \x1b\[1;33m\(\x1b\[1;31m \)\x1b\[1;33m\(\x1b\[1;31m_\)\)\x1b\[1;33m\(\x1b\[1;31m_\)\) /\x1b\[1;33m\(\x1b\[1;31m_\)\x7c\x1b\[1;33m\(\x1b\[1;31m_\)\x1b\[1;33m\(\x1b\[1;31m\)\\ \r\n \x1b\[1;33m\(\x1b\[1;31m_\x1b\[1;33m\(\x1b\[1;31m_\x1b\[1;33m\(\x1b\[1;31m\)\x7c_\)\)_ \x1b\[1;33m\(\x1b\[1;31m_\)\) \x1b\[1;33m\(\x1b\[1;31m_\x1b\[1;33m\(\x1b\[1;31m\)\x1b\[1;33m\(\x1b\[1;31m\x1b\[1;33m\(\x1b\[1;31m_\) \r\n\x1b\[0;32m \x7c_ _\x7c\x7c \\/ __\x7c\x7c \\/ \x7c \r\n \x7c \x7c \x7c \x7c\) \\__ \\\x7c \x7c\\/\x7c \x7c \r\n \x7c_\x7c \x7c___/\x7c___/\x7c_\x7c \x7c_\x7c \r\n Terraria Dedicated Server Mod\r\n\r\n\x1b\[1;37mTerraria v([\w._-]+) dedicated server remote console, running TDSM (#[\w._-]+)\.\x1b\[0m\r\n\x1b\[1;37mYou have 20 seconds to log in\.\x1b\[0m\r\n\x1b\[1;36mLogin:\x1b\[0m \xff\xf9| p/Terraria Dedicated Server Mod telnetd/ v/$2/ i/for Terraria $1/ @@ -3731,7 +3731,7 @@ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nL match telnet m|^\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to InterNiche Telnet Server ([\w._-]+)\r\n\r\n\r\nlogin: | p/InterNiche telnetd/ v/$1/ o|uC/OS-III| match telnet m|^\r\r\n This service will offer one user to use it\. \r\r\n The Current User is \[IP:([\d.]+)\]\r\r\n| p/E-Tech PSU101 print server telnetd/ i/in use by $1/ d/print server/ cpe:/h:e-tech:psu101/ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nsh-3\.00# | p/Syabas Popcorn Hour media player telnetd/ d/media device/ cpe:/h:syabas:popcorn_hour/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Vyatta\r\n\rvyatta login: | p/Vyatta router telnetd/ d/router/ o/Linux/ cpe:/o:linux:kernel/ +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Vyatta\r\n\rvyatta login: | p/Vyatta router telnetd/ d/router/ o/Linux/ cpe:/o:linux:linux_kernel/ # vlc -I telnet --telnet-password test match telnet m|^VLC media player ([\w._-]+) ([^\n]+)\nPassword: \xff\xfb\x01| p/VLC media player telnetd/ v/$1 $2/ cpe:/a:videolan:vlc:$1/ match telnet m|^\*+ ISKRAEMECO \*+\r\n\*+ P2cc Consereth Communicator \*+\r\nLogin: | p/Iskraemeco P2CC smart electrical meter readout telnetd/ d/power-misc/ cpe:/h:iskraemeco:p2cc/ @@ -3830,7 +3830,7 @@ match vtun m|^VTUN server ver +(\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 match vtun m|^VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0| p/Vtun Virtual Tunnel/ v/$1/ match vtun m|^VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0| p/Vtun Virtual Tunnel/ v/$1/ -match vhcs m|^250 OK moleSoftware VHCS2 Server Welcomes You !\r\n| p/moleSoftware virtual hosting control system/ o/Linux/ cpe:/o:linux:kernel/a +match vhcs m|^250 OK moleSoftware VHCS2 Server Welcomes You !\r\n| p/moleSoftware virtual hosting control system/ o/Linux/ cpe:/o:linux:linux_kernel/a match weather m|^TrueWeather\r\n\r\n>| p/TrueWeather Desktop Weather Authority server/ # http://www.3w.net/lan/faq.html @@ -3852,7 +3852,7 @@ match xbmsp m|^XBMSP-1\.0 1\.0 xbmsd ([\w._-]+)\n| p/xbmspd/ v/$1/ match xinetd m=^(?:[-\w_.]+ (?:tcp|udp) \d{1,5}\n)+= p/xinetd service display/ o/Unix/ # XFCE Desktop Version 3.99.4 From Gentoo 1.4 Ebuild on Linux 2.4.6 match xfce-session m|^\0\x01\0.\0\0\0\0$|s p/XFCE Session Manager/ -match xmail-ctrl m|^\+\d+ <[\d.]+@[\d.]+> XMail ([\d.]+) \(Linux/Ix86\) CTRL Server; .*\r\n| p/XMail CTRL Server/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match xmail-ctrl m|^\+\d+ <[\d.]+@[\d.]+> XMail ([\d.]+) \(Linux/Ix86\) CTRL Server; .*\r\n| p/XMail CTRL Server/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a match xmail-ctrl m|^\+\d+ <[\d.]+@[\d.]+> XMail ([\d.]+) CTRL Server; .*\r\n| p/XMail CTRL Server/ v/$1/ match xmbmon m|^TEMP0 +: +[\d.]+\nTEMP1 +: +[\d.]+\nTEMP2 +: +[\d.]+\nFAN0 +: +[\d.]+\nFAN1 +: +[\d.]+\nFAN2 +: +[\d.]+\n| p/Mother Board Monitor/ @@ -3934,7 +3934,7 @@ match wingate-control m|^.\x01.[\x02\x03]\x01\d+\0$|s p/WinGate Administration/ # Wingate redir: Probably not general enough match wingate m|^\0\n\0\0\x02\0\0\0\x01\0$| p/WinGate transparent redirection/ o/Windows/ cpe:/o:microsoft:windows/a match mail-admin m|^OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n| p/eXtremail remote management/ v/$1 release $2/ -match ppp m|^SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n| p/SuSE Meta pppd/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match ppp m|^SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n| p/SuSE Meta pppd/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a # \xc0\x21 -> LCP match ppp m|^\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e| p/pppd/ @@ -4078,7 +4078,7 @@ match finger m|^Gathering system data\.\.\.\nUsername Real name match finger m|^Punix version ([\d./()]+) - Current Time \(since boot\) \d+:\d\d:\d\d\r\nName pid stat pc cpusec stack pr/sy idle tty\r\n| p/Lantronix ETS16 fingerd/ i/Punix $1/ d/terminal server/ o/Punix/ match finger m|^Finger online user list request denied\.\r\n| p/SLMail fingerd/ o/Windows/ cpe:/o:microsoft:windows/a match finger m|^Username Real name Idletime TTY Remote console location\n| p/Configurable Finger-Query Daemon/ o/Unix/ -match finger m|^Login Name Tty Idle Login Time Office Office Phone\r\n| p/Debian fingerd/ o/Linux/ cpe:/o:linux:kernel/a +match finger m|^Login Name Tty Idle Login Time Office Office Phone\r\n| p/Debian fingerd/ o/Linux/ cpe:/o:linux:linux_kernel/a match finger m|^\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n| p/Dell $1 laser printer fingerd/ i/Status: $2/ d/printer/ match finger m|^\r\nIntegrated port\r\nPrinter Type: Dell ([-\w+.]+) Laser Printer\r\nPrint Job Status: (.*)\r\n| p/Dell $1 laser printer fingerd/ i/Status: $2/ d/printer/ match finger m|^This is finger server\r\n\r\nPlease use username@domain format\.\r\n| p/ArGoSoft Mail fingerd/ o/Windows/ cpe:/o:microsoft:windows/a @@ -4088,7 +4088,7 @@ match finger m|^finger: /var/adm/lastlog open error\nNo one logged on\r\n| p/Sol match finger m|^finger: /var/adm/lastlog open error\nLogin Name| p/Solaris 10 fingerd/ i/Somebody logged in/ o/Solaris/ cpe:/o:sun:sunos/a match finger m|^\r\nUSB port \d+\r\nPrinter Type: Photo AIO Printer (\w+)\r\nPrint Job Status: ([^\r\n]+)\r\n| p/Dell Photo AIO $1 printer fingerd/ i/Status $2/ d/printer/ match finger m|^\nDebian GNU/Linux Copyright \(c\) 1993-1999 Software in the Public Interest\n\n Your site has been rejected for some reason\.\n\n This may be caused by a missing RFC 1413 identd on your site\.\n\n| i/Debian Cfingerd/ o/Linux/ cpe:/o:debian:debian_linux/ -match finger m|^Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\.|s p/Debian Cfingerd/ o/Linux/ cpe:/o:linux:kernel/a +match finger m|^Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\.|s p/Debian Cfingerd/ o/Linux/ cpe:/o:linux:linux_kernel/a match finger m|^\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n| p/Lexmark Optra LaserPrinter fingerd/ d/printer/ match finger m|^MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot:| p/Lantronix MSS485 serial to ethernet bridge fingerd/ v/$1 $2/ d/bridge/ match finger m|^Login Name Tty Idle Login Time Office Office Phone\n| p/xfingerd/ @@ -4101,7 +4101,7 @@ match mysql m|^\x10\0\0\x01\xff\x13\x04Bad handshake$| p/MySQL/ cpe:/a:mysql:mys match netbackup m|^\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0$|s p/Veritas Netbackup Professional/ -match nimp m|^V([\d.]+)\r\nERROR 0\r\n$| p/Linux NetworX Network ICE Management Protocol/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match nimp m|^V([\d.]+)\r\nERROR 0\r\n$| p/Linux NetworX Network ICE Management Protocol/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a # Alcatel Speedtouch ADSL Router match ftp m|^220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n$| p/Alcatel Speedtouch ADSL router ftpd/ d/broadband router/ @@ -4185,7 +4185,7 @@ match halfd m|^{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max match hasp-lm m|^\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0$| p/Aladdin NetHASP license manager/ -match hpssd m|^msg=messageerror\nresult-code=5\n| p/HP Services and Status Daemon/ o/Linux/ cpe:/o:linux:kernel/a +match hpssd m|^msg=messageerror\nresult-code=5\n| p/HP Services and Status Daemon/ o/Linux/ cpe:/o:linux:linux_kernel/a # Ubicom embedded ( http://www.ubicom.com/home.htm ) match http m|^HTTP/1\.1 400 Bad Request\r\nCache-control: no-cache\r\nServer: Ubicom/(\d[-.\w ]+)\r\n| p/Ubicom httpd/ v/$1/ cpe:/a:ubicom:httpd:$1/ @@ -4250,7 +4250,7 @@ match http m|^\(null\) 400 Bad Request\r\nServer: \r\nDate: .*400 Bad Req match http m|^HTTP/1\.0 400 Bad Request protocol\r\nServer: httpd\r\n.*<TITLE>400 Bad Request protocol\n

400 Bad Request protocol

\nCan't parse request\.\n\n$|s p/Cisco WRV210 WAP http config/ d/WAP/ cpe:/h:cisco:wrv210/ match http m|^\(null\) 400 Bad Request\r\nServer: AEWS/([\w._-]+)\r\n.*400 Bad Request\n\n

400 Bad Request

\nCan't parse request\.\n|s p/AEWS/ v/$1/ i/Avocent Mergepoint KVM switch/ match http m|^\(null\) 302 Found\r\nServer: \r\nDate: .*\r\nLocation: /index\.cgi\r\nContent-Type: text/html; charset=%s\r\nCache-Control: max-age=0\r\n| p|Intel/Acer/FlaconStor storage device http config| d/storage-misc/ -match http m|^HTTP/1\.1 505 Server Error\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n\n505 Internal Server Error

Internal Server Error: Invalid request

\n

Internal Error\.\n\n| p/Google Desktop Search for Linux Beta httpd/ o/Linux/ cpe:/o:linux:kernel/a +match http m|^HTTP/1\.1 505 Server Error\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n\n505 Internal Server Error

Internal Server Error: Invalid request

\n

Internal Error\.\n\n| p/Google Desktop Search for Linux Beta httpd/ o/Linux/ cpe:/o:linux:linux_kernel/a match http m|^400 Malformed request lineRogatkin's JWS based on Acme\.Serve Version ([-\w_.]+), .Revision: ([-\w_.]+)|s p/TJWS httpd/ v/$2/ i/Based on Acme.Server $1/ match http m|^HTTP/1\.1 500 Internal Server Error\r\nContent-Length: \d+\r\n\r\nTraceback \(most recent call last\):\n File \"/usr/share/deluge/plugins/WebUi/gtk_cherrypy_wsgiserver\.py\"| p/Deluge bittorrent http interface/ i/CherryPy httpd/ match http m|^HTTP/1\.0 400 Invalid Request\r\nContent-Type: text/html\r\nContent-Length: 31\r\n\r\nInvalid Request\n$| p/opentracker BitTorrent tracker/ @@ -4262,7 +4262,7 @@ match http m|^HTTP/1\.1 400 Bad Request\r\n.*Error parsing HTTP header
\njava\.net\.ProtocolException: Cannot handle non-GET, non-POST, non-HEAD request\n\tat org\.globus\.wsrf\.container\.ServiceThread\.parseHeaders\(ServiceThread\.java:1103\)\n|s p/Globus Toolkit Java Container httpd/
 match http m|^HTTP/1\.0 404 Not Found\r\nContent-Type: text/html\r\n\r\nHTTP 404 File not foundThe requested file was not found| p/Websense Block Message httpd/
-match http m|^HTTP/1\.1 401 Unauthorized\r\nDate: .*\r\nServer: cPanel\r\nConnection: close\r\nWWW-Authenticate: Basic realm=\"cPanel WebDisk\"\r\n\r\n| p/cPanel httpd/ i/unauthorized/ o/Linux/ cpe:/o:linux:kernel/a
+match http m|^HTTP/1\.1 401 Unauthorized\r\nDate: .*\r\nServer: cPanel\r\nConnection: close\r\nWWW-Authenticate: Basic realm=\"cPanel WebDisk\"\r\n\r\n| p/cPanel httpd/ i/unauthorized/ o/Linux/ cpe:/o:linux:linux_kernel/a
 match http m|^HTTP/1\.0 400 Bad Request\r\nServer: micro_httpd\r\n| p/micro_http/ cpe:/a:acme:micro_httpd/
 match http m|^HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html\r\nServer: SNARE\r\nWWW-Authenticate: Basic realm=\"SNARE\"\r\n\r\n.*
Snare Server Remote Control facility
|s p/InterSect Alliance SNARE http config/ match http m|^HTTP/1\.0 200 OK\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nExpires: 0\r\ncharset: UTF8\r\nContent-Type: text/html\r\n\r\n.*MONyog|s p/MONyog MySQL http admin/ @@ -4287,7 +4287,7 @@ match http m|^HTTP/1\.0 501 Not Implemented\r\n.*Server: SonicWALL (SSL-VPN [\w. match http m|^HTTP/1\.0 200 OK\r\nContent-type: application/ogg\r\nicy-br:(\d+)\r\nicy-description:VirtualDJ Direct Broadcast\r\nicy-genre:\r\nicy-name:VirtualDJ\r\nicy-pub:0\r\nicy-url:http://www\.virtualdj\.com/\r\nServer: VirtualDJ\r\n\r\n| p/VirtualDJ streaming audio/ i/Bitrate $1/ match http m|^HTTP/1\.0 200 OK\r\nServer: icecast/(\d[-.\w]+)\r\n| p|Shoutcast/Icecast streaming audio| v/$1/ match http m|^HTTP/1\.0 200 OK\r\nContent-length: 0\r\n\r\nIBM Tivoli Identity Manager - ADK Version ([\w._-]+)\r\n\r\n| p/IBM Tivoli Identity Manager httpd/ v/$1/ -match http m|^HTTP/1\.0 200 OK\r\nContent-Type: text/html\r\n\r\nmongodb ([\w._-]+):\d+ .*
db version v([\w._-]+), pdfile version ([\w._-]+)\ngit hash: ([0-9a-f]{40})\nsys info: Linux [\w._-]+ ([\w._-]+) .* BOOST_LIB_VERSION=([\d_]+)\n\ndbwritelocked:  0 \(initial\)\nuptime:    ([^\n]+)\n|s p/MongoDB http console/ v/$2/ i/git version $4; pdfile $3; Boost $SUBST(6,"_","."); uptime $7/ o/Linux $5/ h/$1/ cpe:/o:linux:kernel:$5/
+match http m|^HTTP/1\.0 200 OK\r\nContent-Type: text/html\r\n\r\nmongodb ([\w._-]+):\d+ .*
db version v([\w._-]+), pdfile version ([\w._-]+)\ngit hash: ([0-9a-f]{40})\nsys info: Linux [\w._-]+ ([\w._-]+) .* BOOST_LIB_VERSION=([\d_]+)\n\ndbwritelocked:  0 \(initial\)\nuptime:    ([^\n]+)\n|s p/MongoDB http console/ v/$2/ i/git version $4; pdfile $3; Boost $SUBST(6,"_","."); uptime $7/ o/Linux $5/ h/$1/ cpe:/o:linux:linux_kernel:$5/
 match http m|^HTTP/1\.1 501 Not Implemented\r\nServer: sfcHttpd\r\nContent-Length: 0\r\nConnection: close\r\n\r\nHTTP/1\.1 400 Bad Request\r\nServer: sfcHttpd\r\nContent-Length: 0\r\nConnection: close\r\n\r\n| p/sfcHttpd/ i/SuperMicro IPMI Small Footprint CIM Broker/
 match http m|^HTTP/1\.1 501 Not Implemented\r\nServer: sfcHttpd\r\nContent-Length: 0\r\n\r\nHTTP/1\.1 400 Bad Request\r\nServer: sfcHttpd\r\nContent-Length: 0\r\n\r\n| p/sfcHttpd/
 match http m|^HTTP/1\.0 400 Bad Request\r\n.*Server: CleanMail Service ([\w._-]+)\r\n|s p/CleanMail antispam http admin/ v/$1/
@@ -4369,7 +4369,7 @@ match lastfm m|^ERROR: Command doesn't seem to be followed by a space followed b
 match lexlm m|^.\x08\0\0|s p/Lexmark language monitor/
 
 # Part of Linux net-snmp-5.0.6-17
-match linuxconf m|^500 access denied: Check networking/linuxconf network access\r\n$| p/Linuxconf/ i/Access denied/ o/Linux/ cpe:/o:linux:kernel/a
+match linuxconf m|^500 access denied: Check networking/linuxconf network access\r\n$| p/Linuxconf/ i/Access denied/ o/Linux/ cpe:/o:linux:linux_kernel/a
 # Linuxconf 1.26r4
 match linuxconf m|^500 access denied: Check config/networking/misc/linuxconf network access\r\n

\r\nBy default,| p/Linuxconf/ i/Access denied/ @@ -4487,7 +4487,7 @@ match stargazer m|^ERHD$| p/Stargazer Billing System/ match sstp m|^SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0$| p/Sakura Script Transfer Protocol/ i/Protocol $1/ -match smux m|^A\x01\x02$| p/Linux SNMP multiplexer/ o/Linux/ cpe:/o:linux:kernel/a +match smux m|^A\x01\x02$| p/Linux SNMP multiplexer/ o/Linux/ cpe:/o:linux:linux_kernel/a match sphereicall m|^\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer| p/Sphericall DBServer MediaServer VoIP/ @@ -4570,8 +4570,8 @@ match telnet m|^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- Ne match telnet m|^\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n| p/Cisco telnetd/ d/router/ o/IOS/ cpe:/a:cisco:telnet/ cpe:/o:cisco:ios/a match telnet m|^\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: | p/freeSSHd telnetd/ o/Windows/ cpe:/o:microsoft:windows/a match telnet m|^\xff\xfb\x01\x1b\[7l\x1b\[\?1l\x1b\[0m\x1b\[2JUsername: \x1b\[7l\x1b| p/CyberSwitching Dualcom power device rabbit 2000 embedded telnetd/ d/power-device/ -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \(| p/Nokia D-BOX2 telnetd/ i/Linux kernel $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a -match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \(| p/Philips D-BOX2 telnetd/ i/Linux kernel $1/ d/media device/ o/Linux/ cpe:/o:linux:kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \(| p/Nokia D-BOX2 telnetd/ i/Linux kernel $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a +match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \(| p/Philips D-BOX2 telnetd/ i/Linux kernel $1/ d/media device/ o/Linux/ cpe:/o:linux:linux_kernel/a match telnet m|^\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: | p/Nortel Extranet Contivity Secure IP Services telnetd/ d/security-misc/ match telnet m|^\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\rlogin: \r\n\r\nLogin incorrect\r\n\r\nlogin: | p/Cisco Intrusion Prevention System telnetd/ d/security-misc/ o/IOS/ cpe:/a:cisco:telnet/ cpe:/o:cisco:ios/a match telnet m|^ 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n| p/ShroudBNC telnet config/ @@ -4605,27 +4605,27 @@ match telnet m|^\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from match transbase m|^\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request| p/Transbase Database/ # MiniUPnP -match upnp m|^ 501 Not Implemented\r\n.*Server: Tomato UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n|s p/MiniUPnP/ v/$2/ i/Tomato firmware; UPnP $1/ o/Linux/ cpe:/o:linux:kernel/a +match upnp m|^ 501 Not Implemented\r\n.*Server: Tomato UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n|s p/MiniUPnP/ v/$2/ i/Tomato firmware; UPnP $1/ o/Linux/ cpe:/o:linux:linux_kernel/a match upnp m|^ 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n|s p/MiniUPnP/ v/$3/ i/Asus $1 WAP; UPnP $2/ d/WAP/ match upnp m|^ 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n|s p/MiniUPnP/ v/$3/ i/DrayTek Vigor $1 router; UPnP $2/ d/router/ -match upnp m|^ 501 Not Implemented\r\n.*Server: OpenWRT/kamikaze UPnP/([\w._-]+) MiniUPnPd/([\w._-]+)\r\n|s p/MiniUPnP/ v/$2/ i/OpenWrt Kamikaze; UPnP $1/ d/WAP/ o/Linux/ cpe:/o:linux:kernel/a +match upnp m|^ 501 Not Implemented\r\n.*Server: OpenWRT/kamikaze UPnP/([\w._-]+) MiniUPnPd/([\w._-]+)\r\n|s p/MiniUPnP/ v/$2/ i/OpenWrt Kamikaze; UPnP $1/ d/WAP/ o/Linux/ cpe:/o:linux:linux_kernel/a match upnp m|^ 501 Not Implemented\r\n.*Server: Netgear/[\w._-]+ UPnP/([\w._-]+) miniupnpd/([\w._-]+)\r\n|s p/MiniUPnP/ v/$2/ i/Netgear DG834G or WNDR3300 WAP; UPnP $1/ d/WAP/ cpe:/h:netgear:dg834g/ cpe:/h:netgear:wndr3300/ # MiniDLNA match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n| p/MiniDLNA/ match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Debian/([\w._/-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/Debian $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:debian:debian_linux/ match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Fedora/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/Fedora $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:fedoraproject:fedora/ -match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: RAIDiator/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/RAIDiator $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:linux:kernel/a +match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: RAIDiator/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/RAIDiator $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:linux:linux_kernel/a match upnp m|^HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n$| p/MiniUPnP/ -match upnp m|^ 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n|s p/MiniUPnP/ v/$3/ i/Linux $1 (MIPS); UPnP $2/ o/Linux/ cpe:/o:linux:kernel/a -match upnp m|^ 501 Not Implemented\r\n.*Server: SmoothWall Express/([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n|s p/MiniUPnP/ v/$3/ i/SmoothWall Express $1; UPnP $2/ o/Linux/ cpe:/o:linux:kernel/a +match upnp m|^ 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n|s p/MiniUPnP/ v/$3/ i/Linux $1 (MIPS); UPnP $2/ o/Linux/ cpe:/o:linux:linux_kernel/a +match upnp m|^ 501 Not Implemented\r\n.*Server: SmoothWall Express/([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n|s p/MiniUPnP/ v/$3/ i/SmoothWall Express $1; UPnP $2/ o/Linux/ cpe:/o:linux:linux_kernel/a match upnp m|^HTTP/1\.1 400 Bad Request\r\nDATE: .*\r\nConnection: Keep-Alive\r\nServer: UPnP/([\d.]+)\r\nContent-Length: 0\r\nContent-Type: text/xml; charset=\"utf-8\"\r\nEXT:\r\n\r\n$| p/UPnP/ v/$1/ d/broadband router/ -match upnp m|^HTTP/1\.1 \d\d\d .*\r\nServer: *Linux/([-\w_.]+), UPnP/([-\w_.]+), TwonkyVision UPnP SDK/([-\w_.]+)\r\n|s p/TwonkyMedia UPnP/ i/Linux $1; UPnP $2; SDK $3/ o/Linux/ cpe:/o:linux:kernel/a +match upnp m|^HTTP/1\.1 \d\d\d .*\r\nServer: *Linux/([-\w_.]+), UPnP/([-\w_.]+), TwonkyVision UPnP SDK/([-\w_.]+)\r\n|s p/TwonkyMedia UPnP/ i/Linux $1; UPnP $2; SDK $3/ o/Linux/ cpe:/o:linux:linux_kernel/a match upnp m|^HTTP/1\.1 400 Bad request\r\nServer: Reciva UPnP/([\w._-]+) Radio/([\w._-]+) DLNADOC/([\w._-]+)\r\nContent-length: 0\r\nConnection: close\r\n\r\n$| p/dnt IPdio radio UPnP/ v/$2/ i/UPnP $1; DLNADOC $3/ d/media device/ match upnp m|^HTTP/0\.0 400 Bad Request\r\nServer: ([\w._-]+) \d+/Service Pack (\d+), UPnP/([\d.]+), TVersity Media Server\r\n| p/TVersity Media Server UPnP/ v/$1 SP $2/ i/UPnP $3/ o/Windows/ cpe:/o:microsoft:windows/a match upnp m|^HTTP/0\.0 400 Bad Request\r\nServer: ([\w._-]+) 2/, UPnP/([\w._-]+), TVersity Media Server\r\n|s p/TVersity Media Server UPnP/ v/$1/ i/UPnP $2/ o/Windows/ cpe:/o:microsoft:windows/a -match upnp m|^HTTP/1\.1 \d\d\d .*\r\nDATE: .*\r\nConnection: Keep-Alive\r\nServer: LINUX/([\d.]+) UPnP/([\d.]+) BRCM400/([\d.]+)\r\n| p|Belkin/Linksys wireless router UPnP| i/Linux $1; UPnP $2; BRCM400 $3/ d/router/ o/Linux/ cpe:/o:linux:kernel/a +match upnp m|^HTTP/1\.1 \d\d\d .*\r\nDATE: .*\r\nConnection: Keep-Alive\r\nServer: LINUX/([\d.]+) UPnP/([\d.]+) BRCM400/([\d.]+)\r\n| p|Belkin/Linksys wireless router UPnP| i/Linux $1; UPnP $2; BRCM400 $3/ d/router/ o/Linux/ cpe:/o:linux:linux_kernel/a match upnp m|^HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n$| p/Nokia N85 media share/ i/SymbianOS $1; UPnP $2/ d/phone/ o/SymbianOS/ match uptime-agent m|^ERR\n$| p/up.time server monitor/ @@ -4642,7 +4642,7 @@ match signiant m|^dds_pc: _ms=([\w._-]+)\xfe_si=Process controller\xfe_mid=9010\ match spy-net m=^tentarnovamente\|\r\ntentarnovamente\|\r\n= p/Spy-Net or CyberGate backdoor/ i/**BACKDOOR**/ match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Ubuntu/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/Ubuntu $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:canonical:ubuntu_linux/ -match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/Linux $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:linux:kernel:$1/ +match upnp m|^HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n| p/MiniDLNA/ v/$4/ i/Linux $1; DLNADOC $2; UPnP $3/ o/Linux/ cpe:/o:linux:linux_kernel:$1/ match vnc m|^0\x82\x01\n\x02\x82\x01\x01\0| p/Ultr@VNC/ v/1.0.8.0/ o/Windows/ cpe:/o:microsoft:windows/a @@ -4751,9 +4751,9 @@ match finger m|^That user does not want to be fingered\.\n$| p/ffingerd/ # OpenBSD 2.3 match finger m|^finger: GET: no such user\.\nfinger: /: no such user\.\nfinger: HTTP/1\.0: no such user\.\n$| p|BSD/Linux fingerd| # Linux port of in.fingerd from OpenBSD network tools - started with -w to show welcome banner -match finger m|^\r\nWelcome to Linux version (\d[-.\w]+) at ([-.\w]+) !\r\n\n.*\n\r\nfinger: GET: no such user\.|s p/OpenBSD fingerd/ i/ported to Linux/ o/Linux $1/ h/$2/ cpe:/o:linux:kernel:$1/ +match finger m|^\r\nWelcome to Linux version (\d[-.\w]+) at ([-.\w]+) !\r\n\n.*\n\r\nfinger: GET: no such user\.|s p/OpenBSD fingerd/ i/ported to Linux/ o/Linux $1/ h/$2/ cpe:/o:linux:linux_kernel:$1/ # Redhat Linux from finger-server-0.17-9 RPM -match finger m|^finger: GET: no such user.\r\nfinger: /: no such user.\r\nfinger: HTTP/1.0: no such user.\r\n$| p/Linux fingerd/ o/Linux/ cpe:/o:linux:kernel/a +match finger m|^finger: GET: no such user.\r\nfinger: /: no such user.\r\nfinger: HTTP/1.0: no such user.\r\n$| p/Linux fingerd/ o/Linux/ cpe:/o:linux:linux_kernel/a # NetBSD 1.6ZA (berkeley fingerd 8.1 sibling) match finger m|^finger: GET: no such user\nfinger: /: no such user\nfinger: HTTP/1\.0: no such user\n$| p/NetBSD fingerd/ # Solaris 9 @@ -4778,7 +4778,7 @@ match git m|^0077ERR \n Your Git client has made an invalid request:\n GET / H match gnutella m|^HTTP/1\.[01] 404 Not Found\r\nServer: gtk-gnutella/(\d[-.\w]+) \(([^\)\r\n]+)\)\r\n| p/gtk-gnutella P2P client/ v/$1/ i/$2/ match gnutella m|^HTTP/1\.[01] 403 Browse Host Disabled\r\nServer: gtk-gnutella/(\d[-.\w]+) \(([^\)\r\n]+)\)\r\n| p/gtk-gnutella P2P client/ v/$1/ i/$2; browse host disabled/ -match gnutella m|^HTTP/1\.[01] \d\d\d .*\r\nServer: gtk-gnutella/(\d[-\w.]+) \([-\d]+; GTK2; Linux i686\)\r\n.*sharing (\d+) files ([\d.]+ \w+) total\r\n|s p/gtk-gnutella P2P client/ v/$1/ i/Sharing $2 files, $3/ o/Linux/ cpe:/o:linux:kernel/a +match gnutella m|^HTTP/1\.[01] \d\d\d .*\r\nServer: gtk-gnutella/(\d[-\w.]+) \([-\d]+; GTK2; Linux i686\)\r\n.*sharing (\d+) files ([\d.]+ \w+) total\r\n|s p/gtk-gnutella P2P client/ v/$1/ i/Sharing $2 files, $3/ o/Linux/ cpe:/o:linux:linux_kernel/a # LimeWire 3.5.8 on Suse Linux 8.1 match gnutella m|^HTTP/1\.1 406 Not Acceptable\r\n(?:\r\n)?$| p/LimeWire Gnutella P2P client/ @@ -4799,7 +4799,7 @@ match gopher m|^3 --6 Bad Request\. \r\n\.\r\n$| p/Windows gopherd/ o/Windows/ c match gopher m|^3 --6 Ung\xfcltige Anforderung\. \r\n\.\r\n$| p/Windows gopherd/ i/German/ o/Windows/ cpe:/o:microsoft:windows/a match gopher m|^3'/GET / HTTP/1\.0' does not exist \(no handler found\)\t\terror\.host\t1\r\n| p/pygopherd/ # GoFish is also a Gopher-to-HTTP gateway. -match gopher m|^HTTP/1\.0 500 Server Error\r\nServer: Server: GoFish/([\d.]+) \(Linux\)\r\n|s p/GoFish gopherd/ v/$1/ o/Linux/ cpe:/o:linux:kernel/a +match gopher m|^HTTP/1\.0 500 Server Error\r\nServer: Server: GoFish/([\d.]+) \(Linux\)\r\n|s p/GoFish gopherd/ v/$1/ o/Linux/ cpe:/o:linux:linux_kernel/a match gopher m|^3Sorry, but the requested token 'GET / HTTP/1\.0\r\n' could not be found\.\tErr\t([\w._-]+)\t\d+\r\n\.\r\n\r\n| p/Geomyidae/ h/$1/ match gopher m|^iUnable to locate requested resource\.\t\t([\w._-]+)\t\d+\r\n\.\r\n| p/Gopher Cannon/ o/Windows/ h/$1/ cpe:/o:microsoft:windows/ match gopher-proxy m|^3That item is not currently available\.\r\n$| p/Symantec gopher proxy/ @@ -4915,10 +4915,10 @@ match http m|^HTTP/1\.0 \d\d\d .*\r\nDate: .*\nServer: dhttpd/(\d[-.\w]+)\r\n| p match http m|^HTTP/1\.0 \d\d\d .*\r\nServer: Snap Appliance, Inc\./(\d[-.\w]+)\r\n| p/Snap Appliance storage system webadmin/ v/$1/ match http m|^HTTP/1\.0 200 OK\r\nPragma: no-cache\r\nContent-Type: text/html\r\n\r\n\n\n\n\n\n\n$| p/Motorola cable modem webadmin/ d/broadband router/ match http m|^HTTP/1\.0 200 OK\nDate: .*\nServer: Intel NetportExpressPro/(\d[-.\w]+)\n| p/Intel NetportExpress Pro print server webadmin/ v/$1/ d/print server/ -match http m|^HTTP/1\.0 200 Ok\r\nContent-Type: text/html; charset=\"utf-8\"\r\n\r\n\r\n\r\n MythTV Status| p/MythTV Linux PVR webadmin/ o/Linux/ cpe:/o:linux:kernel/a +match http m|^HTTP/1\.0 200 Ok\r\nContent-Type: text/html; charset=\"utf-8\"\r\n\r\n\r\n\r\n MythTV Status| p/MythTV Linux PVR webadmin/ o/Linux/ cpe:/o:linux:linux_kernel/a # Very specific... Will probably have to be changed when MythTV changes their CSS... -match http m|^HTTP/1\.[01] 200 .*