recog-intrigue 2.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- data/.github/ISSUE_TEMPLATE/fingerprint_request.md +27 -0
- data/.github/PULL_REQUEST_TEMPLATE +24 -0
- data/.gitignore +14 -0
- data/.rbenv-gemset +1 -0
- data/.rspec +3 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +25 -0
- data/.yardopts +1 -0
- data/CONTRIBUTING.md +171 -0
- data/COPYING +23 -0
- data/Gemfile +10 -0
- data/LICENSE +7 -0
- data/README.md +85 -0
- data/Rakefile +22 -0
- data/bin/recog_export +81 -0
- data/bin/recog_match +55 -0
- data/bin/recog_standardize +118 -0
- data/bin/recog_verify +64 -0
- data/cpe-remap.yaml +134 -0
- data/features/data/failing_banners_fingerprints.xml +20 -0
- data/features/data/matching_banners_fingerprints.xml +23 -0
- data/features/data/multiple_banners_fingerprints.xml +32 -0
- data/features/data/no_tests.xml +3 -0
- data/features/data/sample_banner.txt +2 -0
- data/features/data/successful_tests.xml +18 -0
- data/features/data/tests_with_failures.xml +20 -0
- data/features/data/tests_with_warnings.xml +17 -0
- data/features/match.feature +36 -0
- data/features/support/aruba.rb +3 -0
- data/features/support/env.rb +6 -0
- data/features/verify.feature +48 -0
- data/identifiers/README.md +47 -0
- data/identifiers/os_architecture.txt +20 -0
- data/identifiers/os_device.txt +52 -0
- data/identifiers/os_family.txt +160 -0
- data/identifiers/os_product.txt +199 -0
- data/identifiers/service_family.txt +185 -0
- data/identifiers/service_product.txt +255 -0
- data/identifiers/software_class.txt +26 -0
- data/identifiers/software_family.txt +91 -0
- data/identifiers/software_product.txt +333 -0
- data/identifiers/vendor.txt +405 -0
- data/lib/recog.rb +4 -0
- data/lib/recog/db.rb +78 -0
- data/lib/recog/db_manager.rb +31 -0
- data/lib/recog/fingerprint.rb +280 -0
- data/lib/recog/fingerprint/regexp_factory.rb +56 -0
- data/lib/recog/fingerprint/test.rb +18 -0
- data/lib/recog/formatter.rb +51 -0
- data/lib/recog/match_reporter.rb +77 -0
- data/lib/recog/matcher.rb +94 -0
- data/lib/recog/matcher_factory.rb +14 -0
- data/lib/recog/nizer.rb +347 -0
- data/lib/recog/verifier.rb +39 -0
- data/lib/recog/verifier_factory.rb +13 -0
- data/lib/recog/verify_reporter.rb +86 -0
- data/lib/recog/version.rb +3 -0
- data/misc/convert_mysql_err +61 -0
- data/misc/order.xsl +17 -0
- data/recog-intrigue.gemspec +45 -0
- data/requirements.txt +2 -0
- data/spec/data/best_os_match_1.yml +17 -0
- data/spec/data/best_os_match_2.yml +17 -0
- data/spec/data/best_service_match_1.yml +17 -0
- data/spec/data/smb_native_os.txt +25 -0
- data/spec/data/test_fingerprints.xml +36 -0
- data/spec/data/verification_fingerprints.xml +86 -0
- data/spec/data/whitespaced_fingerprint.xml +5 -0
- data/spec/lib/fingerprint_self_test_spec.rb +174 -0
- data/spec/lib/recog/db_spec.rb +98 -0
- data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +73 -0
- data/spec/lib/recog/fingerprint_spec.rb +112 -0
- data/spec/lib/recog/formatter_spec.rb +69 -0
- data/spec/lib/recog/match_reporter_spec.rb +91 -0
- data/spec/lib/recog/nizer_spec.rb +330 -0
- data/spec/lib/recog/verify_reporter_spec.rb +113 -0
- data/spec/spec_helper.rb +82 -0
- data/update_cpes.py +186 -0
- data/xml/apache_modules.xml +1911 -0
- data/xml/apache_os.xml +273 -0
- data/xml/architecture.xml +36 -0
- data/xml/dns_versionbind.xml +761 -0
- data/xml/fingerprints.xsd +128 -0
- data/xml/ftp_banners.xml +1553 -0
- data/xml/h323_callresp.xml +603 -0
- data/xml/hp_pjl_id.xml +358 -0
- data/xml/html_title.xml +1630 -0
- data/xml/http_cookies.xml +411 -0
- data/xml/http_servers.xml +3195 -0
- data/xml/http_wwwauth.xml +595 -0
- data/xml/imap_banners.xml +245 -0
- data/xml/ldap_searchresult.xml +711 -0
- data/xml/mdns_device-info_txt.xml +1796 -0
- data/xml/mdns_workstation_txt.xml +15 -0
- data/xml/mysql_banners.xml +1649 -0
- data/xml/mysql_error.xml +871 -0
- data/xml/nntp_banners.xml +82 -0
- data/xml/ntp_banners.xml +1223 -0
- data/xml/operating_system.xml +629 -0
- data/xml/pop_banners.xml +499 -0
- data/xml/rsh_resp.xml +76 -0
- data/xml/rtsp_servers.xml +76 -0
- data/xml/sip_banners.xml +359 -0
- data/xml/sip_user_agents.xml +221 -0
- data/xml/smb_native_lm.xml +62 -0
- data/xml/smb_native_os.xml +662 -0
- data/xml/smtp_banners.xml +1690 -0
- data/xml/smtp_debug.xml +39 -0
- data/xml/smtp_ehlo.xml +49 -0
- data/xml/smtp_expn.xml +82 -0
- data/xml/smtp_help.xml +157 -0
- data/xml/smtp_mailfrom.xml +20 -0
- data/xml/smtp_noop.xml +44 -0
- data/xml/smtp_quit.xml +29 -0
- data/xml/smtp_rcptto.xml +25 -0
- data/xml/smtp_rset.xml +26 -0
- data/xml/smtp_turn.xml +26 -0
- data/xml/smtp_vrfy.xml +89 -0
- data/xml/snmp_sysdescr.xml +6507 -0
- data/xml/snmp_sysobjid.xml +430 -0
- data/xml/ssh_banners.xml +1968 -0
- data/xml/telnet_banners.xml +1595 -0
- data/xml/x11_banners.xml +232 -0
- data/xml/x509_issuers.xml +134 -0
- data/xml/x509_subjects.xml +1268 -0
- metadata +304 -0
data/xml/x11_banners.xml
ADDED
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<fingerprints matches="x11.vendor" protocol="x11">
|
|
3
|
+
<!--
|
|
4
|
+
During X11 connection setup as specified in the X11 protocol
|
|
5
|
+
(page 111 https://www.x.org/archive/X11R7.5/doc/x11proto/proto.pdf) a
|
|
6
|
+
success message is sent when a clients request to connect is successful.
|
|
7
|
+
This success response contains a vendor field which can be used to
|
|
8
|
+
fingerprint systems with the following fingerprints.
|
|
9
|
+
-->
|
|
10
|
+
<fingerprint pattern="^AT&T Laboratories Cambridge$">
|
|
11
|
+
<description>AT&T Laboratories Cambridge</description>
|
|
12
|
+
<example>AT&T Laboratories Cambridge</example>
|
|
13
|
+
<param pos="0" name="service.vendor" value="AT&T Laboratories Cambridge"/>
|
|
14
|
+
<param pos="0" name="service.product" value="Xvnc"/>
|
|
15
|
+
</fingerprint>
|
|
16
|
+
<fingerprint pattern="^CentOS$">
|
|
17
|
+
<description>CentOS</description>
|
|
18
|
+
<example>CentOS</example>
|
|
19
|
+
<param pos="0" name="os.vendor" value="CentOS"/>
|
|
20
|
+
<param pos="0" name="service.vendor" value="X.Org"/>
|
|
21
|
+
<param pos="0" name="service.product" value="X.Org X11"/>
|
|
22
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:x.org:x11:-"/>
|
|
23
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
24
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
25
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:centos:centos:-"/>
|
|
26
|
+
</fingerprint>
|
|
27
|
+
<fingerprint pattern="^Colin Harrison$">
|
|
28
|
+
<description>Colin Harrison</description>
|
|
29
|
+
<example>Colin Harrison</example>
|
|
30
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
31
|
+
<param pos="0" name="service.vendor" value="Colin Harrison"/>
|
|
32
|
+
<param pos="0" name="service.product" value="Xming"/>
|
|
33
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
34
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
35
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
36
|
+
</fingerprint>
|
|
37
|
+
<fingerprint pattern="^DECWINDOWS DigitalEquipmentCorporation, eXcursion$">
|
|
38
|
+
<description>DECWINDOWS DigitalEquipmentCorporation, eXcursion</description>
|
|
39
|
+
<example>DECWINDOWS DigitalEquipmentCorporation, eXcursion</example>
|
|
40
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
41
|
+
<param pos="0" name="service.vendor" value="DEC"/>
|
|
42
|
+
<param pos="0" name="service.product" value="DEC eXcursion X Server"/>
|
|
43
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
44
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
45
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
46
|
+
</fingerprint>
|
|
47
|
+
<fingerprint pattern="^DECWINDOWS Hewlett-Packard Development Company OpenVMS$">
|
|
48
|
+
<description>DECWINDOWS Hewlett-Packard Development Company OpenVMS</description>
|
|
49
|
+
<example>DECWINDOWS Hewlett-Packard Development Company OpenVMS</example>
|
|
50
|
+
<param pos="0" name="os.vendor" value="DEC"/>
|
|
51
|
+
<param pos="0" name="service.vendor" value="DEC"/>
|
|
52
|
+
<param pos="0" name="service.product" value="OpenVMS"/>
|
|
53
|
+
<param pos="0" name="os.product" value="OpenVMS"/>
|
|
54
|
+
<param pos="0" name="os.family" value="OpenVMS"/>
|
|
55
|
+
</fingerprint>
|
|
56
|
+
<fingerprint pattern="^Fedora Project$">
|
|
57
|
+
<description>Fedora Project</description>
|
|
58
|
+
<example>Fedora Project</example>
|
|
59
|
+
<param pos="0" name="os.vendor" value="Red Hat"/>
|
|
60
|
+
<param pos="0" name="service.vendor" value="X.Org"/>
|
|
61
|
+
<param pos="0" name="service.product" value="X.Org X11"/>
|
|
62
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:x.org:x11:-"/>
|
|
63
|
+
<param pos="0" name="os.product" value="Fedora Core Linux"/>
|
|
64
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
65
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:redhat:fedora_core:-"/>
|
|
66
|
+
</fingerprint>
|
|
67
|
+
<fingerprint pattern="^freedesktop\.org$">
|
|
68
|
+
<description>freedesktop.org</description>
|
|
69
|
+
<example>freedesktop.org</example>
|
|
70
|
+
<param pos="0" name="os.vendor" value="Linux"/>
|
|
71
|
+
<param pos="0" name="service.vendor" value="X.Org"/>
|
|
72
|
+
<param pos="0" name="service.product" value="X.Org X11"/>
|
|
73
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:x.org:x11:-"/>
|
|
74
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
75
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
76
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:linux:linux_kernel:-"/>
|
|
77
|
+
</fingerprint>
|
|
78
|
+
<fingerprint pattern="^HC-Consult$">
|
|
79
|
+
<description>HC-Consult</description>
|
|
80
|
+
<example>HC-Consult</example>
|
|
81
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
82
|
+
<param pos="0" name="service.vendor" value="VcXsrv"/>
|
|
83
|
+
<param pos="0" name="service.product" value="VcXsrv"/>
|
|
84
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
85
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
86
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
87
|
+
</fingerprint>
|
|
88
|
+
<fingerprint pattern="^Hummingbird Communications Ltd\.$|^Hummingbird Ltd\.$">
|
|
89
|
+
<description>Hummingbird Communications Ltd.</description>
|
|
90
|
+
<example>Hummingbird Communications Ltd.</example>
|
|
91
|
+
<example>Hummingbird Ltd.</example>
|
|
92
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
93
|
+
<param pos="0" name="service.vendor" value="Hummingbird Ltd."/>
|
|
94
|
+
<param pos="0" name="service.product" value="Hummingbird Exceed X server"/>
|
|
95
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
96
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
97
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
98
|
+
</fingerprint>
|
|
99
|
+
<fingerprint pattern="^Labtam Inc$">
|
|
100
|
+
<description>Labtam Inc</description>
|
|
101
|
+
<example>Labtam Inc</example>
|
|
102
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
103
|
+
<param pos="0" name="service.vendor" value="Labtam Inc."/>
|
|
104
|
+
<param pos="0" name="service.product" value="XSecurePro"/>
|
|
105
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
106
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
107
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
108
|
+
</fingerprint>
|
|
109
|
+
<fingerprint pattern="^Moba\/X$">
|
|
110
|
+
<description>Moba/X</description>
|
|
111
|
+
<example>Moba/X</example>
|
|
112
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
113
|
+
<param pos="0" name="service.vendor" value="Mobatek"/>
|
|
114
|
+
<param pos="0" name="service.product" value="MobaXterm"/>
|
|
115
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mobatek:mobaxterm:-"/>
|
|
116
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
117
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
118
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
119
|
+
</fingerprint>
|
|
120
|
+
<fingerprint pattern="^MobaXterm$">
|
|
121
|
+
<description>MobaXterm</description>
|
|
122
|
+
<example>MobaXterm</example>
|
|
123
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
124
|
+
<param pos="0" name="service.vendor" value="Mobatek"/>
|
|
125
|
+
<param pos="0" name="service.product" value="MobaXterm"/>
|
|
126
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mobatek:mobaxterm:-"/>
|
|
127
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
128
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
129
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
130
|
+
</fingerprint>
|
|
131
|
+
<fingerprint pattern="^NetSarang Computer, Inc\.$">
|
|
132
|
+
<description>NetSarang Computer, Inc.</description>
|
|
133
|
+
<example>NetSarang Computer, Inc.</example>
|
|
134
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
135
|
+
<param pos="0" name="service.vendor" value="NetSarang Computer, Inc."/>
|
|
136
|
+
<param pos="0" name="service.product" value="NetSarang XManager"/>
|
|
137
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
138
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
139
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
140
|
+
</fingerprint>
|
|
141
|
+
<fingerprint pattern="^Open Text$">
|
|
142
|
+
<description>Open Text</description>
|
|
143
|
+
<example>Open Text</example>
|
|
144
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
145
|
+
<param pos="0" name="service.vendor" value="Open Text"/>
|
|
146
|
+
<param pos="0" name="service.product" value="OpenText Exceed"/>
|
|
147
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
148
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
149
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
150
|
+
</fingerprint>
|
|
151
|
+
<fingerprint pattern="^Red Hat, Inc\.$">
|
|
152
|
+
<description>Red Hat, Inc.</description>
|
|
153
|
+
<example>Red Hat, Inc.</example>
|
|
154
|
+
<param pos="0" name="os.vendor" value="Red Hat"/>
|
|
155
|
+
<param pos="0" name="service.vendor" value="X.Org"/>
|
|
156
|
+
<param pos="0" name="service.product" value="X.Org X11"/>
|
|
157
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:x.org:x11:-"/>
|
|
158
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
159
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
160
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:redhat:linux:-"/>
|
|
161
|
+
</fingerprint>
|
|
162
|
+
<fingerprint pattern="^Santa Cruz Operation Inc\.$">
|
|
163
|
+
<description>Santa Cruz Operation Inc.</description>
|
|
164
|
+
<example>Santa Cruz Operation Inc.</example>
|
|
165
|
+
<param pos="0" name="os.vendor" value="SCO"/>
|
|
166
|
+
<param pos="0" name="service.vendor" value="SCO"/>
|
|
167
|
+
<param pos="0" name="service.product" value="SCO X server"/>
|
|
168
|
+
<param pos="0" name="os.product" value="SCO UNIX"/>
|
|
169
|
+
<param pos="0" name="os.family" value="SCO UNIX"/>
|
|
170
|
+
</fingerprint>
|
|
171
|
+
<fingerprint pattern="^StarNet Communications Corp\.$">
|
|
172
|
+
<description>StarNet Communications Corp.</description>
|
|
173
|
+
<example>StarNet Communications Corp.</example>
|
|
174
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
175
|
+
<param pos="0" name="service.vendor" value="StarNet Communications Corp."/>
|
|
176
|
+
<param pos="0" name="service.product" value="StarNet X-Win32"/>
|
|
177
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
178
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
179
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
180
|
+
</fingerprint>
|
|
181
|
+
<fingerprint pattern="^Sun Microsystems, Inc\.$">
|
|
182
|
+
<description>Sun Microsystems, Inc.</description>
|
|
183
|
+
<example>Sun Microsystems, Inc.</example>
|
|
184
|
+
<param pos="0" name="os.vendor" value="Sun"/>
|
|
185
|
+
<param pos="0" name="service.vendor" value="Sun"/>
|
|
186
|
+
<param pos="0" name="service.product" value="XSun Solaris X11 server"/>
|
|
187
|
+
<param pos="0" name="os.product" value="Solaris"/>
|
|
188
|
+
<param pos="0" name="os.family" value="Solaris"/>
|
|
189
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:sun:solaris:-"/>
|
|
190
|
+
</fingerprint>
|
|
191
|
+
<fingerprint pattern="^The Cygwin\/X Project$">
|
|
192
|
+
<description>The Cygwin/X Project</description>
|
|
193
|
+
<example>The Cygwin/X Project</example>
|
|
194
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
195
|
+
<param pos="0" name="service.vendor" value="Red Hat"/>
|
|
196
|
+
<param pos="0" name="service.product" value="Cygwin X Server Project"/>
|
|
197
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:redhat:cygwin:-"/>
|
|
198
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
199
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
200
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
201
|
+
</fingerprint>
|
|
202
|
+
<fingerprint pattern="^The X\.Org Foundation$">
|
|
203
|
+
<description>The X.Org Foundation</description>
|
|
204
|
+
<example>The X.Org Foundation</example>
|
|
205
|
+
<param pos="0" name="os.vendor" value="UNIX"/>
|
|
206
|
+
<param pos="0" name="service.vendor" value="X.Org"/>
|
|
207
|
+
<param pos="0" name="service.product" value="X.Org X11"/>
|
|
208
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:x.org:x11:-"/>
|
|
209
|
+
<param pos="0" name="os.product" value="UNIX"/>
|
|
210
|
+
<param pos="0" name="os.family" value="UNIX"/>
|
|
211
|
+
</fingerprint>
|
|
212
|
+
<fingerprint pattern="^The XFree86 Project, Inc$">
|
|
213
|
+
<description>The XFree86 Project, Inc</description>
|
|
214
|
+
<example>The XFree86 Project, Inc</example>
|
|
215
|
+
<param pos="0" name="os.vendor" value="UNIX"/>
|
|
216
|
+
<param pos="0" name="service.vendor" value="XFree86"/>
|
|
217
|
+
<param pos="0" name="service.product" value="XFree86"/>
|
|
218
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:xfree86:xfree86:-"/>
|
|
219
|
+
<param pos="0" name="os.product" value="UNIX"/>
|
|
220
|
+
<param pos="0" name="os.family" value="UNIX"/>
|
|
221
|
+
</fingerprint>
|
|
222
|
+
<fingerprint pattern="^WRQ, Inc\.$">
|
|
223
|
+
<description>WRQ, Inc.</description>
|
|
224
|
+
<example>WRQ, Inc.</example>
|
|
225
|
+
<param pos="0" name="os.vendor" value="Microsoft"/>
|
|
226
|
+
<param pos="0" name="service.vendor" value="WRQ, Inc."/>
|
|
227
|
+
<param pos="0" name="service.product" value="ReflectionX"/>
|
|
228
|
+
<param pos="0" name="os.product" value="Windows"/>
|
|
229
|
+
<param pos="0" name="os.family" value="Windows"/>
|
|
230
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
|
|
231
|
+
</fingerprint>
|
|
232
|
+
</fingerprints>
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<fingerprints matches="x509.issuer" protocol="x509">
|
|
3
|
+
<!--
|
|
4
|
+
This fingerprint set matches the Issuer field of x509 certificates. These x509
|
|
5
|
+
certificates may be sourced from any SSL or TLS service. If a particular system
|
|
6
|
+
has identical subject and issuer fields, the subject field should be preferred.
|
|
7
|
+
|
|
8
|
+
The format of the Issuer field is built from the x509 distinguished names using
|
|
9
|
+
a specific order. Please see the comments in x509_subjects.xml for details.
|
|
10
|
+
|
|
11
|
+
-->
|
|
12
|
+
<!-- Chromecast and various devices that support the Cast protocol -->
|
|
13
|
+
<fingerprint pattern="^CN=Chromecast ICA (\d+)\s*\(?([^,\)]*)\)?,OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US$">
|
|
14
|
+
<description>Google Chromecast</description>
|
|
15
|
+
<example chromecast.generation="3">CN=Chromecast ICA 3,OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
16
|
+
<example chromecast.generation="4" chromecast.capabilities="Audio">CN=Chromecast ICA 4 (Audio),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
17
|
+
<example chromecast.generation="5" chromecast.capabilities="4K">CN=Chromecast ICA 5 (4K),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
18
|
+
<example chromecast.generation="6" chromecast.capabilities="Audio Assist">CN=Chromecast ICA 6 (Audio Assist),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
19
|
+
<example chromecast.generation="7" chromecast.capabilities="Audio Assist 2">CN=Chromecast ICA 7 (Audio Assist 2),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
20
|
+
<example chromecast.generation="9" chromecast.capabilities="Audio Assist">CN=Chromecast ICA 9 (Audio Assist),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
21
|
+
<example chromecast.generation="11" chromecast.capabilities="Video Assist">CN=Chromecast ICA 11 (Video Assist),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
22
|
+
<example chromecast.generation="12">CN=Chromecast ICA 12,OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
23
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
24
|
+
<param pos="0" name="os.product" value="ChromeOS"/>
|
|
25
|
+
<param pos="0" name="hw.device" value="Media Server"/>
|
|
26
|
+
<param pos="0" name="hw.vendor" value="Google"/>
|
|
27
|
+
<param pos="0" name="hw.product" value="Chromecast"/>
|
|
28
|
+
<param pos="1" name="chromecast.generation"/>
|
|
29
|
+
<param pos="2" name="chromecast.capabilities"/>
|
|
30
|
+
</fingerprint>
|
|
31
|
+
<fingerprint pattern="^CN=Asus fugu Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US$">
|
|
32
|
+
<description>ASUS Nexus Player (Android) with Google Cast</description>
|
|
33
|
+
<example>CN=Asus fugu Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US</example>
|
|
34
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
35
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:google:android:-"/>
|
|
36
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
37
|
+
<param pos="0" name="os.product" value="Android"/>
|
|
38
|
+
<param pos="0" name="hw.device" value="Media Server"/>
|
|
39
|
+
<param pos="0" name="hw.vendor" value="ASUS"/>
|
|
40
|
+
<param pos="0" name="hw.product" value="Nexus Player"/>
|
|
41
|
+
</fingerprint>
|
|
42
|
+
<fingerprint pattern="^CN=Sony amai Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US$">
|
|
43
|
+
<description>Sony SmartTV (Android) with Google Cast</description>
|
|
44
|
+
<example>CN=Sony amai Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US</example>
|
|
45
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
46
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:google:android:-"/>
|
|
47
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
48
|
+
<param pos="0" name="os.product" value="Android"/>
|
|
49
|
+
<param pos="0" name="hw.device" value="Smart TV"/>
|
|
50
|
+
<param pos="0" name="hw.vendor" value="Sony"/>
|
|
51
|
+
</fingerprint>
|
|
52
|
+
<fingerprint pattern="^CN=Cast TV ICA \(Vizio\),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US$">
|
|
53
|
+
<description>Vizio SmartTV (Android) with Google Cast</description>
|
|
54
|
+
<example>CN=Cast TV ICA (Vizio),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
55
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
56
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:google:android:-"/>
|
|
57
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
58
|
+
<param pos="0" name="os.product" value="Android"/>
|
|
59
|
+
<param pos="0" name="hw.device" value="Smart TV"/>
|
|
60
|
+
<param pos="0" name="hw.vendor" value="Vizio"/>
|
|
61
|
+
</fingerprint>
|
|
62
|
+
<fingerprint pattern="^CN=NVidia Shield Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US$">
|
|
63
|
+
<description>NVIDIA SHIELD (Android) with Google Cast</description>
|
|
64
|
+
<example>CN=NVidia Shield Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US</example>
|
|
65
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
66
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:google:android:-"/>
|
|
67
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
68
|
+
<param pos="0" name="os.product" value="Android"/>
|
|
69
|
+
<param pos="0" name="hw.device" value="Tablet"/>
|
|
70
|
+
<param pos="0" name="hw.vendor" value="NVIDIA"/>
|
|
71
|
+
<param pos="0" name="hw.product" value="SHIELD"/>
|
|
72
|
+
</fingerprint>
|
|
73
|
+
<fingerprint pattern="^CN=NVidia Darcy NVidia Tegra K1-Denver Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US$">
|
|
74
|
+
<description>NVIDIA SHIELD (Android) with Google Cast (Darcy)</description>
|
|
75
|
+
<example>CN=NVidia Darcy NVidia Tegra K1-Denver Cast ICA,OU=Widevine,O=Google Inc,L=Kirkland,ST=Washington,C=US</example>
|
|
76
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
77
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:google:android:-"/>
|
|
78
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
79
|
+
<param pos="0" name="os.product" value="Android"/>
|
|
80
|
+
<param pos="0" name="hw.device" value="Tablet"/>
|
|
81
|
+
<param pos="0" name="hw.vendor" value="NVIDIA"/>
|
|
82
|
+
<param pos="0" name="hw.product" value="SHIELD"/>
|
|
83
|
+
</fingerprint>
|
|
84
|
+
<!-- End of Chromecast -->
|
|
85
|
+
<fingerprint pattern="^CN=Yealink Equipment Issuing CA,OU=yealink\.com,O=Yealink Network Technology Co\.\\,Ltd.,L=Xiamen,ST=Fujian,C=CN$">
|
|
86
|
+
<description>Yealink VoIP Phone</description>
|
|
87
|
+
<example>CN=Yealink Equipment Issuing CA,OU=yealink.com,O=Yealink Network Technology Co.\,Ltd.,L=Xiamen,ST=Fujian,C=CN</example>
|
|
88
|
+
<param pos="0" name="os.vendor" value="Yealink"/>
|
|
89
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
90
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
91
|
+
<param pos="0" name="hw.device" value="VoIP"/>
|
|
92
|
+
<param pos="0" name="hw.vendor" value="Yealink"/>
|
|
93
|
+
</fingerprint>
|
|
94
|
+
<fingerprint pattern="^CN=[a-zA-Z0-9]+,OU=Internally Generated Certificate,O=American Power Conversion Corp,L=Default Locality,ST=Default State,C=US$">
|
|
95
|
+
<description>APC UPS</description>
|
|
96
|
+
<example>CN=ZA1117619249,OU=Internally Generated Certificate,O=American Power Conversion Corp,L=Default Locality,ST=Default State,C=US</example>
|
|
97
|
+
<param pos="0" name="hw.device" value="Power device"/>
|
|
98
|
+
<param pos="0" name="hw.vendor" value="APC"/>
|
|
99
|
+
</fingerprint>
|
|
100
|
+
<fingerprint pattern="^CN=Temporary CA [a-fA-F0-9]{8}\-[a-fA-F0-9]{4}\-[a-fA-F0-9]{4}\-[a-fA-F0-9]{4}\-[a-fA-F0-9]{12},OU=Temporary CA">
|
|
101
|
+
<description>Cisco Video Communication Server</description>
|
|
102
|
+
<example>CN=Temporary CA 218131fe-8af4-11e7-aa6e-9950d6bbaf74,OU=Temporary CA 218131fe-8af4-11e7-aa6e-9950d6bbaf74,O=Temporary CA 218131fe-8af4-11e7-aa6e-9950d6bbaf74</example>
|
|
103
|
+
<param pos="0" name="hw.device" value="Video Conference"/>
|
|
104
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
105
|
+
<param pos="0" name="hw.product" value="TelePresence"/>
|
|
106
|
+
</fingerprint>
|
|
107
|
+
<fingerprint pattern="^O=VMware Installer$">
|
|
108
|
+
<description>VMWare ESXi w/Installer</description>
|
|
109
|
+
<example>O=VMware Installer</example>
|
|
110
|
+
<param pos="0" name="os.vendor" value="VMWare"/>
|
|
111
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:vmware:esxi:-"/>
|
|
112
|
+
<param pos="0" name="os.product" value="ESXi"/>
|
|
113
|
+
<param pos="0" name="os.device" value="Hypervisor"/>
|
|
114
|
+
</fingerprint>
|
|
115
|
+
<fingerprint pattern="^CN=CA,OU=VMware Engineering,O=vCenter,ST=California,C=US$">
|
|
116
|
+
<description>VMWare vCenter</description>
|
|
117
|
+
<example>CN=CA,OU=VMware Engineering,O=vCenter,ST=California,C=US</example>
|
|
118
|
+
<param pos="0" name="service.vendor" value="VMWare"/>
|
|
119
|
+
<param pos="0" name="service.product" value="vCenter"/>
|
|
120
|
+
</fingerprint>
|
|
121
|
+
<fingerprint pattern="^CN=Default Issuer \(Do not trust\),OU=ISS,O=Hewlett Packard Enterprise,L=Houston,ST=Texas,C=US$">
|
|
122
|
+
<description>HP iLO</description>
|
|
123
|
+
<example>CN=Default Issuer (Do not trust),OU=ISS,O=Hewlett Packard Enterprise,L=Houston,ST=Texas,C=US</example>
|
|
124
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
125
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
126
|
+
<param pos="0" name="hw.family" value="iLO"/>
|
|
127
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:hp:integrated_lights_out:-"/>
|
|
128
|
+
<param pos="0" name="hw.product" value="iLO"/>
|
|
129
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
130
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
131
|
+
<param pos="0" name="os.family" value="iLO"/>
|
|
132
|
+
<param pos="0" name="os.product" value="iLO"/>
|
|
133
|
+
</fingerprint>
|
|
134
|
+
</fingerprints>
|
|
@@ -0,0 +1,1268 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<fingerprints matches="x509.subject" protocol="x509">
|
|
3
|
+
<!--
|
|
4
|
+
This fingerprint set matches the Subject field of x509 certificates. These x509
|
|
5
|
+
certificates may be sourced from any SSL or TLS service. If a particular system
|
|
6
|
+
has identical subject and issuer fields, the subject field should be preferred.
|
|
7
|
+
|
|
8
|
+
The format of the Subject field is built from the x509 distinguished names using
|
|
9
|
+
a specific order. This order matches the Go implementation at the URL:
|
|
10
|
+
https://golang.org/src/crypto/x509/pkix/pkix.go#203
|
|
11
|
+
|
|
12
|
+
The ToRDNSequence() function builds the string in reverse order:
|
|
13
|
+
|
|
14
|
+
func (n Name) ToRDNSequence() (ret RDNSequence) {
|
|
15
|
+
ret = n.appendRDNs(ret, n.Country, oidCountry)
|
|
16
|
+
ret = n.appendRDNs(ret, n.Province, oidProvince)
|
|
17
|
+
ret = n.appendRDNs(ret, n.Locality, oidLocality)
|
|
18
|
+
ret = n.appendRDNs(ret, n.StreetAddress, oidStreetAddress)
|
|
19
|
+
ret = n.appendRDNs(ret, n.PostalCode, oidPostalCode)
|
|
20
|
+
ret = n.appendRDNs(ret, n.Organization, oidOrganization)
|
|
21
|
+
ret = n.appendRDNs(ret, n.OrganizationalUnit, oidOrganizationalUnit)
|
|
22
|
+
if len(n.CommonName) > 0 {
|
|
23
|
+
ret = n.appendRDNs(ret, []string{n.CommonName}, oidCommonName)
|
|
24
|
+
}
|
|
25
|
+
if len(n.SerialNumber) > 0 {
|
|
26
|
+
ret = n.appendRDNs(ret, []string{n.SerialNumber}, oidSerialNumber)
|
|
27
|
+
}
|
|
28
|
+
for _, atv := range n.ExtraNames {
|
|
29
|
+
ret = append(ret, []AttributeTypeAndValue{atv})
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return ret
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
All names are separated by commas and any commas inside a name are escaped with a
|
|
36
|
+
single backslash character. See RFC 2253 for additional details on formatting.
|
|
37
|
+
|
|
38
|
+
Practically, most Subjects start with the Common Name (CN=) and then step through
|
|
39
|
+
Organization Unit (OU), Organization (O), and then some level of location, but
|
|
40
|
+
typically Locality (L) and Country (C). Names are guaranteed to be listed in
|
|
41
|
+
the order described above, but may start at any point in the list. For example,
|
|
42
|
+
Subjects may start with a Serial Number (SERIALNUMBER=) or even Extra Names, but
|
|
43
|
+
these are somewhat rare. Keep this name order in mind when working on these
|
|
44
|
+
fingerprints.
|
|
45
|
+
|
|
46
|
+
The same constraints also apply to the x509 Issuers (x509_issuers.xml).
|
|
47
|
+
|
|
48
|
+
-->
|
|
49
|
+
<fingerprint pattern="^CN=([0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}),OU=([^,]+),O=Araknis Networks \(TM\),L=Charlotte,C=US$">
|
|
50
|
+
<description>Araknis Networks Router</description>
|
|
51
|
+
<example host.mac="d4:6a:91:7a:a3:c4" hw.product="AN-300-RT-4L2W">CN=d4:6a:91:7a:a3:c4,OU=AN-300-RT-4L2W,O=Araknis Networks (TM),L=Charlotte,C=US</example>
|
|
52
|
+
<param pos="0" name="hw.device" value="Router"/>
|
|
53
|
+
<param pos="0" name="hw.vendor" value="Araknis Networks"/>
|
|
54
|
+
<param pos="2" name="hw.product"/>
|
|
55
|
+
<param pos="1" name="host.mac"/>
|
|
56
|
+
</fingerprint>
|
|
57
|
+
<fingerprint pattern="^CN=([a-fA-F0-9:]+),OU=([^,]+),O=Cisco-Linksys\\, LLC">
|
|
58
|
+
<description>Cisco / Linksys Router</description>
|
|
59
|
+
<example host.mac="00:22:6b:ef:1e:d0" hw.product="RV042">CN=00:22:6b:ef:1e:d0,OU=RV042,O=Cisco-Linksys\, LLC,L=Irvine,C=US</example>
|
|
60
|
+
<param pos="0" name="hw.device" value="Broadband Router"/>
|
|
61
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
62
|
+
<param pos="2" name="hw.product"/>
|
|
63
|
+
<param pos="1" name="host.mac"/>
|
|
64
|
+
</fingerprint>
|
|
65
|
+
<fingerprint pattern="^CN=([a-fA-F0-9\:]+),OU=([^,]+),O=Cisco Systems\\, Inc\.">
|
|
66
|
+
<description>Cisco Post-Linksys Router</description>
|
|
67
|
+
<example host.mac="74:a2:e6:5c:99:21" hw.product="RV042G">CN=74:a2:e6:5c:99:21,OU=RV042G,O=Cisco Systems\, Inc.,L=Irvine,C=US</example>
|
|
68
|
+
<example host.mac="4C4E315901D0" hw.product="RV180">CN=4C4E315901D0,OU=RV180,O=Cisco Systems\, Inc.,C=US</example>
|
|
69
|
+
<param pos="0" name="hw.device" value="Broadband Router"/>
|
|
70
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
71
|
+
<param pos="2" name="hw.product"/>
|
|
72
|
+
<param pos="1" name="host.mac"/>
|
|
73
|
+
</fingerprint>
|
|
74
|
+
<fingerprint pattern="^SERIALNUMBER=PID:([^ ]+) SN:([^,]+),CN=(?:[a-zA-Z0-9\-]+)-SEP([a-fA-F0-9]{12}),OU=[CV]TG,O=Cisco Systems Inc\.$">
|
|
75
|
+
<description>Cisco IP phone with serial number</description>
|
|
76
|
+
<example host.mac="B07D47D33A1C" hw.product="CP-8851" cisco.serial_number="FCH1924AHCA">SERIALNUMBER=PID:CP-8851 SN:FCH1924AHCA,CN=CP-8851-SEPB07D47D33A1C,OU=CTG,O=Cisco Systems Inc.</example>
|
|
77
|
+
<example host.mac="64D989000000" hw.product="CP-9951" cisco.serial_number="FCH15200000">SERIALNUMBER=PID:CP-9951 SN:FCH15200000,CN=CP-9951-SEP64D989000000,OU=VTG,O=Cisco Systems Inc.</example>
|
|
78
|
+
<param pos="0" name="hw.device" value="VoIP"/>
|
|
79
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
80
|
+
<param pos="1" name="hw.product"/>
|
|
81
|
+
<param pos="2" name="cisco.serial_number"/>
|
|
82
|
+
<param pos="3" name="host.mac"/>
|
|
83
|
+
</fingerprint>
|
|
84
|
+
<fingerprint pattern="^CN=SEP([a-fA-F0-9]{12}),O=TemporaryDefaultCertificate$">
|
|
85
|
+
<description>Cisco IP Phone without serial number</description>
|
|
86
|
+
<example host.mac="1C6A7AE57121">CN=SEP1C6A7AE57121,O=TemporaryDefaultCertificate</example>
|
|
87
|
+
<param pos="0" name="hw.device" value="VoIP"/>
|
|
88
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
89
|
+
<param pos="1" name="host.mac"/>
|
|
90
|
+
</fingerprint>
|
|
91
|
+
<fingerprint pattern="^CN=Cambium WLAN AP,OU=Products,O=Cambium Networks Inc,L=San Jose,ST=CA,C=US$">
|
|
92
|
+
<description>Cambium Networks WAP</description>
|
|
93
|
+
<example>CN=Cambium WLAN AP,OU=Products,O=Cambium Networks Inc,L=San Jose,ST=CA,C=US</example>
|
|
94
|
+
<param pos="0" name="hw.device" value="WAP"/>
|
|
95
|
+
<param pos="0" name="hw.vendor" value="Cambium Networks"/>
|
|
96
|
+
<param pos="0" name="hw.product" value="WLAN AP"/>
|
|
97
|
+
</fingerprint>
|
|
98
|
+
<fingerprint pattern="^CN=([^,]+),OU=Products,O=Cambium Networks Inc,L=San Jose,ST=CA,C=US$">
|
|
99
|
+
<description>Cambium Networks Router</description>
|
|
100
|
+
<example hw.product="R190V">CN=R190V,OU=Products,O=Cambium Networks Inc,L=San Jose,ST=CA,C=US</example>
|
|
101
|
+
<example hw.product="R200">CN=R200,OU=Products,O=Cambium Networks Inc,L=San Jose,ST=CA,C=US</example>
|
|
102
|
+
<param pos="0" name="hw.device" value="Router"/>
|
|
103
|
+
<param pos="0" name="hw.vendor" value="Cambium Networks"/>
|
|
104
|
+
<param pos="1" name="hw.product"/>
|
|
105
|
+
</fingerprint>
|
|
106
|
+
<fingerprint pattern="^CN=Nepenthes Development Team,OU=anv,O=dionaea\.carnivore\.it,C=DE$">
|
|
107
|
+
<description>Nepenthes honeypot</description>
|
|
108
|
+
<example>CN=Nepenthes Development Team,OU=anv,O=dionaea.carnivore.it,C=DE</example>
|
|
109
|
+
<param pos="0" name="service.family" value="Nepenthes"/>
|
|
110
|
+
<param pos="0" name="service.product" value="Nepenthes"/>
|
|
111
|
+
</fingerprint>
|
|
112
|
+
<fingerprint pattern="^CN=IPMI,OU=Software,O=Super Micro Computer,ST=California,C=US$">
|
|
113
|
+
<description>Super Micro IPMI Controller</description>
|
|
114
|
+
<example>CN=IPMI,OU=Software,O=Super Micro Computer,ST=California,C=US</example>
|
|
115
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
116
|
+
<param pos="0" name="hw.vendor" value="Super Micro"/>
|
|
117
|
+
<param pos="0" name="hw.product" value="IPMI"/>
|
|
118
|
+
<param pos="0" name="os.vendor" value="Super Micro"/>
|
|
119
|
+
<param pos="0" name="os.product" value="ATEN Linux"/>
|
|
120
|
+
</fingerprint>
|
|
121
|
+
<fingerprint pattern="^CN=iDRACdefault([a-fA-F0-9]{12}),OU=iDRAC Group,O=Dell Inc.,L=Round Rock,C=US$">
|
|
122
|
+
<description>Dell iDRAC Remote Access Controller w/MAC</description>
|
|
123
|
+
<example host.mac="0023AEF89AD1">CN=iDRACdefault0023AEF89AD1,OU=iDRAC Group,O=Dell Inc.,L=Round Rock,C=US</example>
|
|
124
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
125
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
126
|
+
<param pos="0" name="hw.product" value="iDRAC"/>
|
|
127
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
128
|
+
<param pos="0" name="os.product" value="iDRAC Linux"/>
|
|
129
|
+
<param pos="1" name="host.mac"/>
|
|
130
|
+
</fingerprint>
|
|
131
|
+
<fingerprint pattern="^CN=idrac-([A-Z0-9]{7}),OU=Remote Access Group,O=Dell Inc\.,L=Round Rock,ST=Texas,C=US$">
|
|
132
|
+
<description>Dell iDRAC Remote Access Controller w/Service Tag</description>
|
|
133
|
+
<example dell.service_tag="JXJJC02">CN=idrac-JXJJC02,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
134
|
+
<example dell.service_tag="FMDSJH3">CN=idrac-FMDSJH3,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
135
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
136
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
137
|
+
<param pos="0" name="hw.product" value="iDRAC"/>
|
|
138
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
139
|
+
<param pos="0" name="os.product" value="iDRAC Linux"/>
|
|
140
|
+
<param pos="1" name="dell.service_tag"/>
|
|
141
|
+
</fingerprint>
|
|
142
|
+
<fingerprint pattern="^CN=idrac.*,OU=Remote Access Group,O=Dell Inc\.,L=Round Rock,ST=Texas,C=US$">
|
|
143
|
+
<description>Dell iDRAC Remote Access Controller w/o Service Tag</description>
|
|
144
|
+
<example>CN=idrac-SVCTAG,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
145
|
+
<example>CN=idrac-prosit-laks,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
146
|
+
<example>CN=idrac-,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
147
|
+
<example>CN=idrac,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
148
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
149
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
150
|
+
<param pos="0" name="hw.product" value="iDRAC"/>
|
|
151
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
152
|
+
<param pos="0" name="os.product" value="iDRAC Linux"/>
|
|
153
|
+
</fingerprint>
|
|
154
|
+
<fingerprint pattern="^CN=(i?DRAC\d+) default certificate,OU=Remote Access Group,O=Dell Inc\.,L=Round Rock,ST=Texas,C=US$">
|
|
155
|
+
<description>Dell iDRAC Remote Access Controller w/Version</description>
|
|
156
|
+
<example>CN=iDRAC7 default certificate,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
157
|
+
<example>CN=iDRAC6 default certificate,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
158
|
+
<example>CN=DRAC5 default certificate,OU=Remote Access Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
159
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
160
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
161
|
+
<param pos="1" name="hw.product"/>
|
|
162
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
163
|
+
<param pos="0" name="os.product" value="iDRAC Linux"/>
|
|
164
|
+
</fingerprint>
|
|
165
|
+
<fingerprint pattern="^CN=iDRAC default certificate,OU=Server Firmware Group,O=Dell Inc\.,L=Round Rock,ST=Texas,C=US$">
|
|
166
|
+
<description>Dell iDRAC Remote Access Controller Default Certificate</description>
|
|
167
|
+
<example>CN=iDRAC default certificate,OU=Server Firmware Group,O=Dell Inc.,L=Round Rock,ST=Texas,C=US</example>
|
|
168
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
169
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
170
|
+
<param pos="0" name="hw.product" value="iDRAC"/>
|
|
171
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
172
|
+
<param pos="0" name="os.product" value="iDRAC Linux"/>
|
|
173
|
+
</fingerprint>
|
|
174
|
+
<fingerprint pattern="^CN=XCC-([a-zA-Z0-9]+)-([a-zA-Z0-9]+),O=System X,L=RTP,ST=NC,C=US$">
|
|
175
|
+
<description>Lenovo XCC</description>
|
|
176
|
+
<example lenovo.machine_type="7X06" lenovo.machine_model="J1005NEX">CN=XCC-7X06-J1005NEX,O=System X,L=RTP,ST=NC,C=US</example>
|
|
177
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
178
|
+
<param pos="0" name="hw.vendor" value="Lenovo"/>
|
|
179
|
+
<param pos="0" name="hw.family" value="System X"/>
|
|
180
|
+
<param pos="0" name="hw.product" value="XCC"/>
|
|
181
|
+
<param pos="0" name="os.vendor" value="Lenovo"/>
|
|
182
|
+
<param pos="0" name="os.product" value="XCC Linux"/>
|
|
183
|
+
<param pos="1" name="lenovo.machine_type"/>
|
|
184
|
+
<param pos="2" name="lenovo.machine_model"/>
|
|
185
|
+
</fingerprint>
|
|
186
|
+
<fingerprint pattern="^CN=([A-Za-z0-9\_\-\.]+),OU=ISS,O=Hewlett-Packard Company,L=Houston,ST=Texas,C=US$">
|
|
187
|
+
<description>HP iLO</description>
|
|
188
|
+
<example>CN=SERVER-1231,OU=ISS,O=Hewlett-Packard Company,L=Houston,ST=Texas,C=US</example>
|
|
189
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
190
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
191
|
+
<param pos="0" name="hw.family" value="iLO"/>
|
|
192
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:hp:integrated_lights_out:-"/>
|
|
193
|
+
<param pos="0" name="hw.product" value="iLO"/>
|
|
194
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
195
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
196
|
+
<param pos="0" name="os.family" value="iLO"/>
|
|
197
|
+
<param pos="0" name="os.product" value="iLO"/>
|
|
198
|
+
<param pos="1" name="host.name"/>
|
|
199
|
+
</fingerprint>
|
|
200
|
+
<fingerprint pattern="^CN=HP Service Processor,OU=UDU Service Tools,O=Hewlett-Packard Development Company\\, L\.P\.\\ ,L=Fremont,ST=California,C=US$">
|
|
201
|
+
<description>HP iLO - HP Service Processor</description>
|
|
202
|
+
<example>CN=HP Service Processor,OU=UDU Service Tools,O=Hewlett-Packard Development Company\, L.P.\ ,L=Fremont,ST=California,C=US</example>
|
|
203
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
204
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
205
|
+
<param pos="0" name="hw.family" value="iLO"/>
|
|
206
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:hp:integrated_lights_out:-"/>
|
|
207
|
+
<param pos="0" name="hw.product" value="iLO"/>
|
|
208
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
209
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
210
|
+
<param pos="0" name="os.family" value="iLO"/>
|
|
211
|
+
<param pos="0" name="os.product" value="iLO"/>
|
|
212
|
+
</fingerprint>
|
|
213
|
+
<fingerprint pattern="^CN=OA\-([a-fA-F0-9]+),OU=Onboard Administrator,">
|
|
214
|
+
<description>HP iLO (Onboard Administrator)</description>
|
|
215
|
+
<example>CN=OA-001F296E21A3,OU=Onboard Administrator,O=Corp.,L=Location,ST=N/A,C=US</example>
|
|
216
|
+
<example>CN=OA-80C16E999999,OU=Onboard Administrator,O=Hewlett-Packard</example>
|
|
217
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
218
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
219
|
+
<param pos="0" name="hw.family" value="iLO"/>
|
|
220
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:hp:integrated_lights_out:-"/>
|
|
221
|
+
<param pos="0" name="hw.product" value="iLO"/>
|
|
222
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
223
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
224
|
+
<param pos="0" name="os.family" value="iLO"/>
|
|
225
|
+
<param pos="0" name="os.product" value="iLO"/>
|
|
226
|
+
<param pos="1" name="host.mac"/>
|
|
227
|
+
</fingerprint>
|
|
228
|
+
<fingerprint pattern="^CN=([A-Za-z0-9\_\-\.]+),OU=Hewlett Packard Enterprise Network Management Software \(SMH\),O=Hewlett Packard Enterprise,L=Houston,ST=Texas,C=US$">
|
|
229
|
+
<description>HP iLO - Enterprise Mgmt variant</description>
|
|
230
|
+
<example>CN=bigsrv99,OU=Hewlett Packard Enterprise Network Management Software (SMH),O=Hewlett Packard Enterprise,L=Houston,ST=Texas,C=US</example>
|
|
231
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
232
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
233
|
+
<param pos="0" name="hw.family" value="iLO"/>
|
|
234
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:hp:integrated_lights_out:-"/>
|
|
235
|
+
<param pos="0" name="hw.product" value="iLO"/>
|
|
236
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
237
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
238
|
+
<param pos="0" name="os.family" value="iLO"/>
|
|
239
|
+
<param pos="0" name="os.product" value="iLO"/>
|
|
240
|
+
<param pos="1" name="host.name"/>
|
|
241
|
+
</fingerprint>
|
|
242
|
+
<fingerprint pattern="^CN=Oracle Integrated Lights Out Manager,O=Oracle America\\, Inc\.,L=Redwood Shores,ST=California,C=US$">
|
|
243
|
+
<description>Oracle iLO</description>
|
|
244
|
+
<example>CN=Oracle Integrated Lights Out Manager,O=Oracle America\, Inc.,L=Redwood Shores,ST=California,C=US</example>
|
|
245
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
246
|
+
<param pos="0" name="hw.vendor" value="Oracle"/>
|
|
247
|
+
<param pos="0" name="hw.family" value="ILOM"/>
|
|
248
|
+
<param pos="0" name="hw.product" value="ILOM"/>
|
|
249
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
250
|
+
<param pos="0" name="os.vendor" value="Oracle"/>
|
|
251
|
+
<param pos="0" name="os.family" value="ILOM"/>
|
|
252
|
+
<param pos="0" name="os.product" value="ILOM"/>
|
|
253
|
+
</fingerprint>
|
|
254
|
+
<fingerprint pattern="^CN=AMI,OU=Service Processors,O=American Megatrends Inc">
|
|
255
|
+
<description>AMI MegaRAC LOM</description>
|
|
256
|
+
<example>CN=AMI,OU=Service Processors,O=American Megatrends Inc.,L=Norcross,ST=Georgia,C=US</example>
|
|
257
|
+
<example>CN=AMI,OU=Service Processors,O=American Megatrends Inc,L=Atlanta,ST=Georgia,C=US</example>
|
|
258
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
259
|
+
<param pos="0" name="hw.vendor" value="AMI"/>
|
|
260
|
+
<param pos="0" name="hw.family" value="MegaRAC"/>
|
|
261
|
+
<param pos="0" name="hw.product" value="MegaRAC"/>
|
|
262
|
+
<param pos="0" name="os.device" value="Lights Out Management"/>
|
|
263
|
+
<param pos="0" name="os.vendor" value="AMI"/>
|
|
264
|
+
<param pos="0" name="os.family" value="MegaRAC"/>
|
|
265
|
+
<param pos="0" name="os.product" value="MegaRAC"/>
|
|
266
|
+
</fingerprint>
|
|
267
|
+
<fingerprint pattern="^CN=C-series CIMC,OU=PID:([^ ]+) SERIAL:([^,]+),O=Cisco">
|
|
268
|
+
<description>Cisco Integrated Management Controller</description>
|
|
269
|
+
<example cisco.serial_number="FCH18999AAA" cisco.imc_model="UCSC-C220-M3S">CN=C-series CIMC,OU=PID:UCSC-C220-M3S SERIAL:FCH18999AAA,O=Cisco Self Signed,L=San Jose,ST=California,C=US</example>
|
|
270
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
271
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
272
|
+
<param pos="0" name="hw.product" value="IMC"/>
|
|
273
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
274
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
275
|
+
<param pos="0" name="os.product" value="IMC"/>
|
|
276
|
+
<param pos="2" name="cisco.serial_number"/>
|
|
277
|
+
<param pos="1" name="cisco.imc_model"/>
|
|
278
|
+
</fingerprint>
|
|
279
|
+
<fingerprint pattern="^CN=C220-(FCH[^,]+),OU=null,O=Cisco Systems Inc">
|
|
280
|
+
<description>Cisco Integrated Management Controller C220</description>
|
|
281
|
+
<example cisco.serial_number="FCH17999AAA">CN=C220-FCH17999AAA,OU=null,O=Cisco Systems Inc.,L=San Jose,ST=California,C=US</example>
|
|
282
|
+
<param pos="0" name="hw.device" value="Lights Out Management"/>
|
|
283
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
284
|
+
<param pos="0" name="hw.product" value="IMC"/>
|
|
285
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
286
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
287
|
+
<param pos="0" name="os.product" value="IMC"/>
|
|
288
|
+
<param pos="1" name="cisco.serial_number"/>
|
|
289
|
+
</fingerprint>
|
|
290
|
+
<fingerprint pattern="^CN=avocent.com,OU=AESS,O=Avocent,L=Sunrise,ST=FL,C=US$">
|
|
291
|
+
<description>Avocent KVM</description>
|
|
292
|
+
<example>CN=avocent.com,OU=AESS,O=Avocent,L=Sunrise,ST=FL,C=US</example>
|
|
293
|
+
<param pos="0" name="hw.device" value="KVM"/>
|
|
294
|
+
<param pos="0" name="hw.vendor" value="Avocent"/>
|
|
295
|
+
<param pos="0" name="os.device" value="KVM"/>
|
|
296
|
+
<param pos="0" name="os.vendor" value="Avocent"/>
|
|
297
|
+
</fingerprint>
|
|
298
|
+
<fingerprint pattern="^CN=Avocent Mergepoint Unity,O=Avocent Mergepoint Unity,L=Huntsville,ST=Alabama,C=US$">
|
|
299
|
+
<description>Avocent Mergepoint KVM</description>
|
|
300
|
+
<example>CN=Avocent Mergepoint Unity,O=Avocent Mergepoint Unity,L=Huntsville,ST=Alabama,C=US</example>
|
|
301
|
+
<param pos="0" name="hw.device" value="KVM"/>
|
|
302
|
+
<param pos="0" name="hw.vendor" value="Avocent"/>
|
|
303
|
+
<param pos="0" name="hw.product" value="Mergepoint"/>
|
|
304
|
+
<param pos="0" name="os.device" value="KVM"/>
|
|
305
|
+
<param pos="0" name="os.vendor" value="Avocent"/>
|
|
306
|
+
<param pos="0" name="os.product" value="Mergepoint"/>
|
|
307
|
+
</fingerprint>
|
|
308
|
+
<fingerprint pattern="^CN=HP Jetdirect [a-zA-Z0-9]+,OU=([a-fA-F0-9]{12})\+OU=([a-zA-Z0-9]+),O=Hewlett-Packard Co\.$">
|
|
309
|
+
<description>HP Jet Direct - with host MAC and product</description>
|
|
310
|
+
<example host.mac="2C413883186A" hw.product="J8028E">CN=HP Jetdirect 38831831,OU=2C413883186A+OU=J8028E,O=Hewlett-Packard Co.</example>
|
|
311
|
+
<example os.product="J8016E">CN=HP Jetdirect FBFA31E7,OU=8851FBE33ABB+OU=J8016E,O=Hewlett-Packard Co.</example>
|
|
312
|
+
<param pos="0" name="hw.device" value="Printer"/>
|
|
313
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
314
|
+
<param pos="0" name="hw.family" value="JetDirect"/>
|
|
315
|
+
<param pos="0" name="os.device" value="Printer"/>
|
|
316
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
317
|
+
<param pos="0" name="os.family" value="JetDirect"/>
|
|
318
|
+
<param pos="1" name="host.mac"/>
|
|
319
|
+
<param pos="2" name="hw.product"/>
|
|
320
|
+
<param pos="2" name="os.product"/>
|
|
321
|
+
</fingerprint>
|
|
322
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9\.\-\_]+),OU=HP-IPG,O=HP,L=Vancouver,ST=Washington,C=US$">
|
|
323
|
+
<description>HP Jet Direct</description>
|
|
324
|
+
<example host.name="HPD49F21">CN=HPD49F21,OU=HP-IPG,O=HP,L=Vancouver,ST=Washington,C=US</example>
|
|
325
|
+
<param pos="0" name="hw.device" value="Printer"/>
|
|
326
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
327
|
+
<param pos="0" name="hw.family" value="JetDirect"/>
|
|
328
|
+
<param pos="0" name="os.device" value="Printer"/>
|
|
329
|
+
<param pos="0" name="os.vendor" value="HP"/>
|
|
330
|
+
<param pos="0" name="os.family" value="JetDirect"/>
|
|
331
|
+
<param pos="1" name="host.name"/>
|
|
332
|
+
</fingerprint>
|
|
333
|
+
<fingerprint pattern="^CN=(?:Sourcefire3D|firepower|ciscoasa),OU=Intrusion Management System,O=(?:Sourcefire\\, Inc.|Cisco Systems\\, Inc),C=US$">
|
|
334
|
+
<description>Cisco Firepower</description>
|
|
335
|
+
<example>CN=firepower,OU=Intrusion Management System,O=Cisco Systems\, Inc,C=US</example>
|
|
336
|
+
<example>CN=ciscoasa,OU=Intrusion Management System,O=Cisco Systems\, Inc,C=US</example>
|
|
337
|
+
<example>CN=Sourcefire3D,OU=Intrusion Management System,O=Sourcefire\, Inc.,C=US</example>
|
|
338
|
+
<param pos="0" name="hw.device" value="IPS"/>
|
|
339
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
340
|
+
<param pos="0" name="hw.product" value="Firepower"/>
|
|
341
|
+
<param pos="0" name="os.device" value="IPS"/>
|
|
342
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
343
|
+
<param pos="0" name="os.product" value="Firepower"/>
|
|
344
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
345
|
+
</fingerprint>
|
|
346
|
+
<fingerprint pattern="^CN=ASA Temporary Self Signed Certificate$">
|
|
347
|
+
<description>Cisco ASA Temp Cert</description>
|
|
348
|
+
<example>CN=ASA Temporary Self Signed Certificate</example>
|
|
349
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
350
|
+
<param pos="0" name="os.family" value="Adaptive Security Appliance"/>
|
|
351
|
+
<param pos="0" name="os.product" value="Adaptive Security Appliance"/>
|
|
352
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:adaptive_security_appliance"/>
|
|
353
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
354
|
+
<param pos="0" name="hw.family" value="Adaptive Security Appliance"/>
|
|
355
|
+
<param pos="0" name="hw.product" value="Adaptive Security Appliance"/>
|
|
356
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
357
|
+
<param pos="0" name="hw.cpe23" value="cpe:/h:cisco:adaptive_security_appliance:-"/>
|
|
358
|
+
</fingerprint>
|
|
359
|
+
|
|
360
|
+
<fingerprint pattern="^SERIALNUMBER=([a-zA-Z0-9]+),CN=DEVICE-vWLC,O=Cisco Virtual WLC$">
|
|
361
|
+
<description>Cisco vWLC</description>
|
|
362
|
+
<example cisco.serial_number="9C89M2088D1">SERIALNUMBER=9C89M2088D1,CN=DEVICE-vWLC,O=Cisco Virtual WLC</example>
|
|
363
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
364
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
365
|
+
<param pos="0" name="os.product" value="Virtual WLC"/>
|
|
366
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:wireless_lan_controller:-"/>
|
|
367
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
368
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
369
|
+
<param pos="0" name="hw.product" value="Virtual WLC"/>
|
|
370
|
+
<param pos="1" name="cisco.serial_number"/>
|
|
371
|
+
</fingerprint>
|
|
372
|
+
|
|
373
|
+
<fingerprint pattern="^CN=[a-zA-Z0-9\.\-\_]+,OU=DeviceSSL \(WebAdmin\),O=Cisco Systems Inc\.,C=US$">
|
|
374
|
+
<description>Cisco WLC</description>
|
|
375
|
+
<example>CN=169.254.1.1,OU=DeviceSSL (WebAdmin),O=Cisco Systems Inc.,C=US</example>
|
|
376
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
377
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
378
|
+
<param pos="0" name="os.product" value="Wireless Controller"/>
|
|
379
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:wireless_lan_controller:-"/>
|
|
380
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
381
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
382
|
+
<param pos="0" name="hw.product" value="Wireless Controller"/>
|
|
383
|
+
</fingerprint>
|
|
384
|
+
|
|
385
|
+
<fingerprint pattern="^CN=pca,OU=Cisco Prime Collaboration Manager,O=Cisco,L=San Jose,ST=California,C=US$">
|
|
386
|
+
<description>Cisco Primary Collaboration Manager</description>
|
|
387
|
+
<example>CN=pca,OU=Cisco Prime Collaboration Manager,O=Cisco,L=San Jose,ST=California,C=US</example>
|
|
388
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
389
|
+
<param pos="0" name="os.device" value="Network Management Device"/>
|
|
390
|
+
<param pos="0" name="os.product" value="Prime Collaboration Manager"/>
|
|
391
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
392
|
+
<param pos="0" name="hw.device" value="Network Management Device"/>
|
|
393
|
+
<param pos="0" name="hw.product" value="Prime Collaboration Manager"/>
|
|
394
|
+
</fingerprint>
|
|
395
|
+
|
|
396
|
+
<fingerprint pattern="^CN=synology\.com.*,O=Synology Inc\.,L=Taipei.*,C=TW$">
|
|
397
|
+
<description>Synology NAS</description>
|
|
398
|
+
<example>CN=synology.com,OU=FTP Team,O=Synology Inc.,L=Taipei,ST=Taiwan,C=TW</example>
|
|
399
|
+
<example>CN=synology.com,O=Synology Inc.,L=Taipei,C=TW</example>
|
|
400
|
+
<param pos="0" name="hw.vendor" value="Synology"/>
|
|
401
|
+
<param pos="0" name="hw.family" value="DiskStation"/>
|
|
402
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
403
|
+
<param pos="0" name="os.device" value="Storage"/>
|
|
404
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
405
|
+
<param pos="0" name="os.product" value="DSM"/>
|
|
406
|
+
<param pos="0" name="os.vendor" value="Synology"/>
|
|
407
|
+
</fingerprint>
|
|
408
|
+
<fingerprint pattern="^CN=(?:\*\.)?([a-zA-Z0-9\.\_\-]+)\.wd2go\.com">
|
|
409
|
+
<description>Western Digital WD2GO Devices</description>
|
|
410
|
+
<example wd2go.device_id="device1133796-01b3e3fa">CN=device1133796-01b3e3fa.wd2go.com,OU=Domain Control Validated+OU=Hosted by Western Digital Corporation+OU=COMODO SSL Unified Communications</example>
|
|
411
|
+
<example wd2go.device_id="device4113440">CN=*.device4113440.wd2go.com,OU=Branded Products,O=Western Digital,L=Mountain View,ST=California,C=US</example>
|
|
412
|
+
<param pos="0" name="hw.vendor" value="Western Digital"/>
|
|
413
|
+
<param pos="0" name="hw.family" value="WD2GO"/>
|
|
414
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
415
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
416
|
+
<param pos="0" name="os.vendor" value="Western Digital"/>
|
|
417
|
+
<param pos="0" name="os.device" value="Storage"/>
|
|
418
|
+
<param pos="1" name="wd2go.device_id"/>
|
|
419
|
+
</fingerprint>
|
|
420
|
+
<fingerprint pattern="^CN=Seagate Technology LLC,O=Seagate Technology LLC,L=Cupertino,ST=California,C=US$">
|
|
421
|
+
<description>Seagate NAS</description>
|
|
422
|
+
<example>CN=Seagate Technology LLC,O=Seagate Technology LLC,L=Cupertino,ST=California,C=US</example>
|
|
423
|
+
<param pos="0" name="hw.vendor" value="Seagate"/>
|
|
424
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
425
|
+
<param pos="0" name="os.vendor" value="Seagate"/>
|
|
426
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
427
|
+
</fingerprint>
|
|
428
|
+
<fingerprint pattern="^CN=[\d\.]+,OU=Q-Series,O=Quantum,ST=CO,C=US$">
|
|
429
|
+
<description>Seagate Q-Series NAS (previously Quantum)</description>
|
|
430
|
+
<example>CN=1.1.1.1,OU=Q-Series,O=Quantum,ST=CO,C=US</example>
|
|
431
|
+
<param pos="0" name="hw.vendor" value="Seagate"/>
|
|
432
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
433
|
+
<param pos="0" name="os.vendor" value="Seagate"/>
|
|
434
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
435
|
+
</fingerprint>
|
|
436
|
+
<fingerprint pattern="^CN=QNAP NAS,OU=QTS,O=QNAP Systems\\, Inc\.,L=Taipei,ST=Taipei,C=TW$">
|
|
437
|
+
<description>QNAP NAS</description>
|
|
438
|
+
<example>CN=QNAP NAS,OU=QTS,O=QNAP Systems\, Inc.,L=Taipei,ST=Taipei,C=TW</example>
|
|
439
|
+
<param pos="0" name="hw.vendor" value="QNAP Systems"/>
|
|
440
|
+
<param pos="0" name="hw.family" value="Storage"/>
|
|
441
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
442
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
443
|
+
<param pos="0" name="os.vendor" value="QNAP Systems"/>
|
|
444
|
+
<param pos="0" name="os.device" value="Storage"/>
|
|
445
|
+
</fingerprint>
|
|
446
|
+
<fingerprint pattern="^CN=VMware,OU=VMware,L=Palo Alto,C=US$">
|
|
447
|
+
<description>VMWare Authentication Daemon</description>
|
|
448
|
+
<example>CN=VMware,OU=VMware,L=Palo Alto,C=US</example>
|
|
449
|
+
<param pos="0" name="service.vendor" value="VMWare"/>
|
|
450
|
+
<param pos="0" name="service.product" value="vmauthd"/>
|
|
451
|
+
</fingerprint>
|
|
452
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9\.\-\_]+),OU=VMware ESX Server Default Certificate,O=VMware\\, Inc,L=Palo Alto,ST=California,C=US$">
|
|
453
|
+
<description>VMWare ESX</description>
|
|
454
|
+
<example>CN=server99.,OU=VMware ESX Server Default Certificate,O=VMware\, Inc,L=Palo Alto,ST=California,C=US</example>
|
|
455
|
+
<param pos="0" name="os.vendor" value="VMWare"/>
|
|
456
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:vmware:esx:-"/>
|
|
457
|
+
<param pos="0" name="os.product" value="ESX"/>
|
|
458
|
+
<param pos="0" name="os.device" value="Hypervisor"/>
|
|
459
|
+
<param pos="1" name="host.name"/>
|
|
460
|
+
</fingerprint>
|
|
461
|
+
<fingerprint pattern="^CN.*,OU=SRM,O=VMware\\, Inc\.,L=Palo Alto,ST=California,C=US$">
|
|
462
|
+
<description>VMWare SRM</description>
|
|
463
|
+
<example>CN=SRM01,OU=SRM,O=VMware\, Inc.,L=Palo Alto,ST=California,C=US</example>
|
|
464
|
+
<param pos="0" name="os.vendor" value="VMWare"/>
|
|
465
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
466
|
+
<param pos="0" name="hw.vendor" value="VMWare"/>
|
|
467
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
468
|
+
<param pos="0" name="hw.product" value="Site Recovery Manager"/>
|
|
469
|
+
<param pos="0" name="service.vendor" value="VMWare"/>
|
|
470
|
+
<param pos="0" name="service.product" value="Site Recovery Manager"/>
|
|
471
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:vmware:site_recovery_manager:-"/>
|
|
472
|
+
</fingerprint>
|
|
473
|
+
<fingerprint pattern="^CN=IOS-Self-Signed-Certificate-">
|
|
474
|
+
<description>Cisco IOS Default Certificate</description>
|
|
475
|
+
<example>CN=IOS-Self-Signed-Certificate-4163115936</example>
|
|
476
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
477
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:cisco:ios:-"/>
|
|
478
|
+
<param pos="0" name="os.family" value="IOS"/>
|
|
479
|
+
<param pos="0" name="os.product" value="IOS"/>
|
|
480
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
481
|
+
<param pos="0" name="hw.device" value="Router"/>
|
|
482
|
+
</fingerprint>
|
|
483
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9]{5,12}) ([a-zA-Z0-9]{12}),OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US$">
|
|
484
|
+
<description>Google Chromecast</description>
|
|
485
|
+
<example chromecast.serial_number="LVDZG5" host.mac_local="FA8FCA67413D">CN=LVDZG5 FA8FCA67413D,OU=Cast,O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
486
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
487
|
+
<param pos="0" name="os.product" value="ChromeOS"/>
|
|
488
|
+
<param pos="0" name="hw.device" value="Media Server"/>
|
|
489
|
+
<param pos="0" name="hw.vendor" value="Google"/>
|
|
490
|
+
<param pos="0" name="hw.product" value="Chromecast"/>
|
|
491
|
+
<param pos="1" name="chromecast.serial_number"/>
|
|
492
|
+
<!-- local administered mac address (clear bit 2 of first byte) -->
|
|
493
|
+
<param pos="2" name="host.mac_local"/>
|
|
494
|
+
</fingerprint>
|
|
495
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9]{5,12}) ([a-zA-Z0-9]{12}),OU=Cast TV \(Vizio\),O=Google Inc,L=Mountain View,ST=California,C=US$">
|
|
496
|
+
<description>Vizio SmartTV (Android) with Google Cast</description>
|
|
497
|
+
<example chromecast.serial_number="9V039WC9" host.mac_local="FA8FCA697898">CN=9V039WC9 FA8FCA697898,OU=Cast TV (Vizio),O=Google Inc,L=Mountain View,ST=California,C=US</example>
|
|
498
|
+
<param pos="0" name="os.vendor" value="Google"/>
|
|
499
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:google:android:-"/>
|
|
500
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
501
|
+
<param pos="0" name="os.product" value="Android"/>
|
|
502
|
+
<param pos="0" name="hw.device" value="Smart TV"/>
|
|
503
|
+
<param pos="0" name="hw.vendor" value="Vizio"/>
|
|
504
|
+
<param pos="1" name="chromecast.serial_number"/>
|
|
505
|
+
<!-- local administered mac address (clear bit 2 of first byte) -->
|
|
506
|
+
<param pos="2" name="host.mac_local"/>
|
|
507
|
+
</fingerprint>
|
|
508
|
+
<fingerprint pattern="^CN=TANDBERG,OU=R&D,O=TANDBERG ASA,L=Lysaker,ST=Askerhus,C=NO$">
|
|
509
|
+
<description>Cisco (TANDBERG) TelePresence</description>
|
|
510
|
+
<example>CN=TANDBERG,OU=R&D,O=TANDBERG ASA,L=Lysaker,ST=Askerhus,C=NO</example>
|
|
511
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
512
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
|
513
|
+
<param pos="0" name="hw.product" value="TelePresence"/>
|
|
514
|
+
<param pos="0" name="os.vendor" value="Cisco"/>
|
|
515
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
516
|
+
<param pos="0" name="os.product" value="TelePresence"/>
|
|
517
|
+
<param pos="0" name="os.device" value="Video Conferencing"/>
|
|
518
|
+
</fingerprint>
|
|
519
|
+
<fingerprint pattern="^CN=lifesize.com,C=US$">
|
|
520
|
+
<description>Lifesize TelePresence</description>
|
|
521
|
+
<example>CN=lifesize.com,C=US</example>
|
|
522
|
+
<param pos="0" name="hw.vendor" value="Lifesize"/>
|
|
523
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
|
524
|
+
<param pos="0" name="hw.product" value="TelePresence"/>
|
|
525
|
+
<param pos="0" name="os.vendor" value="Lifesize"/>
|
|
526
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
527
|
+
<param pos="0" name="os.product" value="TelePresence"/>
|
|
528
|
+
<param pos="0" name="os.device" value="Video Conferencing"/>
|
|
529
|
+
</fingerprint>
|
|
530
|
+
<fingerprint pattern="^CN=MERCURY-([a-fA-F0-9]{12}),OU=Engineering,O=Crestron">
|
|
531
|
+
<description>Crestron Mercury</description>
|
|
532
|
+
<example host.mac="00107F1ABAA0">CN=MERCURY-00107F1ABAA0,OU=Engineering,O=Crestron Electronics\, Inc.,L=Rockleigh,ST=NJ,C=US</example>
|
|
533
|
+
<param pos="0" name="hw.vendor" value="Crestron"/>
|
|
534
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
|
535
|
+
<param pos="0" name="hw.product" value="Mercury"/>
|
|
536
|
+
<param pos="0" name="os.vendor" value="Crestron"/>
|
|
537
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
538
|
+
<param pos="0" name="os.device" value="Video Conferencing"/>
|
|
539
|
+
<param pos="1" name="host.mac"/>
|
|
540
|
+
</fingerprint>
|
|
541
|
+
<fingerprint pattern="^CN=(AM-\d+)-([a-fA-F0-9]{12}),OU=Engineering,O=Crestron">
|
|
542
|
+
<description>Crestron AirMedia</description>
|
|
543
|
+
<example hw.product="AM-200" host.mac="00107FB7B1E2">CN=AM-200-00107FB7B1E2,OU=Engineering,O=Crestron Electronics\, Inc.,L=Rockleigh,ST=NJ,C=US</example>
|
|
544
|
+
<param pos="0" name="hw.vendor" value="Crestron"/>
|
|
545
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
|
546
|
+
<param pos="1" name="hw.product"/>
|
|
547
|
+
<param pos="0" name="os.vendor" value="Crestron"/>
|
|
548
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
549
|
+
<param pos="0" name="os.device" value="Video Conferencing"/>
|
|
550
|
+
<param pos="2" name="host.mac"/>
|
|
551
|
+
</fingerprint>
|
|
552
|
+
<fingerprint pattern="^CN=Crestron,OU=Engineering,O=Crestron Electronics\\, Inc\.,L=Rockleigh,ST=NJ,C=US$">
|
|
553
|
+
<description>Crestron Video Conferencing</description>
|
|
554
|
+
<example>CN=Crestron,OU=Engineering,O=Crestron Electronics\, Inc.,L=Rockleigh,ST=NJ,C=US</example>
|
|
555
|
+
<param pos="0" name="hw.vendor" value="Crestron"/>
|
|
556
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
|
557
|
+
<param pos="0" name="os.vendor" value="Crestron"/>
|
|
558
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
559
|
+
<param pos="0" name="os.device" value="Video Conferencing"/>
|
|
560
|
+
</fingerprint>
|
|
561
|
+
<fingerprint pattern="^CN=ClickShare-\d+$">
|
|
562
|
+
<description>ClickShare Wireless Presenter</description>
|
|
563
|
+
<example>CN=ClickShare-4234234324</example>
|
|
564
|
+
<param pos="0" name="hw.vendor" value="Barco"/>
|
|
565
|
+
<param pos="0" name="hw.device" value="Wireless Presenter"/>
|
|
566
|
+
<param pos="0" name="hw.product" value="ClickShare"/>
|
|
567
|
+
<param pos="0" name="os.vendor" value="Barco"/>
|
|
568
|
+
<param pos="0" name="os.family" value="ClickShareOS"/>
|
|
569
|
+
<param pos="0" name="os.device" value="Wireless Presenter"/>
|
|
570
|
+
</fingerprint>
|
|
571
|
+
<fingerprint pattern="^CN=Solstice,OU=Solstice,O=Mersive Technologies Inc,L=Denver,ST=CO,C=US$">
|
|
572
|
+
<description>SolsticePod</description>
|
|
573
|
+
<example>CN=Solstice,OU=Solstice,O=Mersive Technologies Inc,L=Denver,ST=CO,C=US</example>
|
|
574
|
+
<param pos="0" name="hw.vendor" value="Mersive"/>
|
|
575
|
+
<param pos="0" name="hw.device" value="Wireless Presenter"/>
|
|
576
|
+
<param pos="0" name="hw.product" value="SolsticePod"/>
|
|
577
|
+
</fingerprint>
|
|
578
|
+
<fingerprint pattern="^CN=Controller,OU=FW,O=ExtronElectronics,ST=CA,C=US$">
|
|
579
|
+
<description>Extron MediaLink Controller</description>
|
|
580
|
+
<example>CN=Controller,OU=FW,O=ExtronElectronics,ST=CA,C=US</example>
|
|
581
|
+
<param pos="0" name="hw.vendor" value="Extron"/>
|
|
582
|
+
<param pos="0" name="hw.device" value="Display Controller"/>
|
|
583
|
+
<param pos="0" name="hw.product" value="MediaLink Controller"/>
|
|
584
|
+
<param pos="0" name="os.vendor" value="Extron"/>
|
|
585
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
586
|
+
</fingerprint>
|
|
587
|
+
<fingerprint pattern="^CN=IPLP,OU=ControlSystems,O=ExtronElectronics,L=Anaheim,ST=CA,C=US$">
|
|
588
|
+
<description>Extron IPLP </description>
|
|
589
|
+
<example>CN=IPLP,OU=ControlSystems,O=ExtronElectronics,L=Anaheim,ST=CA,C=US</example>
|
|
590
|
+
<param pos="0" name="hw.vendor" value="Extron"/>
|
|
591
|
+
<param pos="0" name="hw.device" value="Display Controller"/>
|
|
592
|
+
<param pos="0" name="hw.product" value="IP Link Control Processor"/>
|
|
593
|
+
<param pos="0" name="os.vendor" value="Extron"/>
|
|
594
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
595
|
+
</fingerprint>
|
|
596
|
+
<fingerprint pattern="^CN=TLP,OU=ControlSystems,O=ExtronElectronics,L=Anaheim,ST=CA,C=US$">
|
|
597
|
+
<description>Extron TLP </description>
|
|
598
|
+
<example>CN=TLP,OU=ControlSystems,O=ExtronElectronics,L=Anaheim,ST=CA,C=US</example>
|
|
599
|
+
<param pos="0" name="hw.vendor" value="Extron"/>
|
|
600
|
+
<param pos="0" name="hw.device" value="Display Controller"/>
|
|
601
|
+
<param pos="0" name="hw.product" value="TouchLink Control Panel"/>
|
|
602
|
+
<param pos="0" name="os.vendor" value="Extron"/>
|
|
603
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
604
|
+
</fingerprint>
|
|
605
|
+
<fingerprint pattern="^CN=ShareLink-Pro-.*,OU=AVSystems,O=ExtronElectronics">
|
|
606
|
+
<description>Extron ShareLink Pro </description>
|
|
607
|
+
<example>CN=ShareLink-Pro-18-99-99.local.com,OU=AVSystems,O=ExtronElectronics,L=Anaheim,ST=CA,C=US</example>
|
|
608
|
+
<param pos="0" name="hw.vendor" value="Extron"/>
|
|
609
|
+
<param pos="0" name="hw.device" value="Display Controller"/>
|
|
610
|
+
<param pos="0" name="hw.product" value="ShareLink Pro"/>
|
|
611
|
+
<param pos="0" name="os.vendor" value="Extron"/>
|
|
612
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
613
|
+
</fingerprint>
|
|
614
|
+
<fingerprint pattern="^CN=VMM APIC,OU=VMM\d+,O=Cisco,L=San Jose,ST=CA,C=US$">
|
|
615
|
+
<description>Cisco APIC</description>
|
|
616
|
+
<example>CN=VMM APIC,OU=VMM15,O=Cisco,L=San Jose,ST=CA,C=US</example>
|
|
617
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
618
|
+
<param pos="0" name="hw.product" value="APIC"/>
|
|
619
|
+
</fingerprint>
|
|
620
|
+
<fingerprint pattern="^CN=APIC$">
|
|
621
|
+
<description>Cisco APIC - bare CN</description>
|
|
622
|
+
<example>CN=APIC</example>
|
|
623
|
+
<param pos="0" name="hw.vendor" value="Cisco"/>
|
|
624
|
+
<param pos="0" name="hw.product" value="APIC"/>
|
|
625
|
+
</fingerprint>
|
|
626
|
+
<fingerprint pattern="^CN=(iPX\d+),OU=I Project,O=Samsung Electronics,L=Suwon,ST=Gyeonggi-do,C=KR$">
|
|
627
|
+
<description>Samsung Communication Manager</description>
|
|
628
|
+
<example hw.product="iPX3010">CN=iPX3010,OU=I Project,O=Samsung Electronics,L=Suwon,ST=Gyeonggi-do,C=KR</example>
|
|
629
|
+
<param pos="0" name="hw.vendor" value="Samsung"/>
|
|
630
|
+
<param pos="0" name="hw.device" value="VoIP Server"/>
|
|
631
|
+
<param pos="0" name="hw.family" value="Communication Manager"/>
|
|
632
|
+
<param pos="1" name="hw.product"/>
|
|
633
|
+
<param pos="0" name="os.vendor" value="Samsung"/>
|
|
634
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
635
|
+
</fingerprint>
|
|
636
|
+
<fingerprint pattern="^CN=www.hikvision.com,OU=DVRNVR,O=HIKVISION,L=HangZhou,ST=ZheJiang,C=CN$">
|
|
637
|
+
<description>HIKVISION DVR</description>
|
|
638
|
+
<example>CN=www.hikvision.com,OU=DVRNVR,O=HIKVISION,L=HangZhou,ST=ZheJiang,C=CN</example>
|
|
639
|
+
<param pos="0" name="os.vendor" value="Hikvision"/>
|
|
640
|
+
<param pos="0" name="os.device" value="DVR"/>
|
|
641
|
+
<param pos="0" name="hw.vendor" value="Hikvision"/>
|
|
642
|
+
<param pos="0" name="hw.device" value="DVR"/>
|
|
643
|
+
</fingerprint>
|
|
644
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9\.\-\_]+),OU=Polatis Switch ([a-zA-Z0-9]+),O=Polatis Inc\.,ST=N/A,C=UK$">
|
|
645
|
+
<description>Polatis Switch</description>
|
|
646
|
+
<example host.name="192.168.0.1" hw.product="1591">CN=192.168.0.1,OU=Polatis Switch 1591,O=Polatis Inc.,ST=N/A,C=UK</example>
|
|
647
|
+
<example host.name="central-01" hw.product="1590">CN=central-01,OU=Polatis Switch 1590,O=Polatis Inc.,ST=N/A,C=UK</example>
|
|
648
|
+
<param pos="0" name="os.vendor" value="Polatis"/>
|
|
649
|
+
<param pos="0" name="os.device" value="Switch"/>
|
|
650
|
+
<param pos="0" name="hw.vendor" value="Polatis"/>
|
|
651
|
+
<param pos="0" name="hw.device" value="Switch"/>
|
|
652
|
+
<param pos="1" name="host.name"/>
|
|
653
|
+
<param pos="2" name="hw.product"/>
|
|
654
|
+
</fingerprint>
|
|
655
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9\.\-\_]+),O=Fidelis Cybersecurity$">
|
|
656
|
+
<description>Fidelis CommandPost</description>
|
|
657
|
+
<example host.name="localhost.localdomain">CN=localhost.localdomain,O=Fidelis Cybersecurity</example>
|
|
658
|
+
<param pos="0" name="hw.vendor" value="Fidelis"/>
|
|
659
|
+
<param pos="0" name="hw.product" value="CommandPost"/>
|
|
660
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
661
|
+
<param pos="0" name="os.vendor" value="Fidelis"/>
|
|
662
|
+
<param pos="0" name="os.product" value="CommandPost"/>
|
|
663
|
+
<param pos="1" name="host.name"/>
|
|
664
|
+
</fingerprint>
|
|
665
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9]+\-[a-zA-Z0-9]+)\-([a-zA-Z0-9]+),O=IBM,L=Endicott,ST=New York,C=IN$">
|
|
666
|
+
<description>IBM POWER System</description>
|
|
667
|
+
<example hw.product="8284-22A" hw.model="211BAFW">CN=8284-22A-211BAFW,O=IBM,L=Endicott,ST=New York,C=IN</example>
|
|
668
|
+
<param pos="0" name="hw.vendor" value="IBM"/>
|
|
669
|
+
<param pos="0" name="hw.family" value="POWER System"/>
|
|
670
|
+
<param pos="1" name="hw.product" value=""/>
|
|
671
|
+
<param pos="2" name="hw.model"/>
|
|
672
|
+
</fingerprint>
|
|
673
|
+
<fingerprint pattern="^CN=EagleEyeDirectorII.polycom.com,OU=Video Division,O=Polycom Inc.,L=San Jose,ST=California,C=US$">
|
|
674
|
+
<description>Polycom Eagle Eye Director</description>
|
|
675
|
+
<example>CN=EagleEyeDirectorII.polycom.com,OU=Video Division,O=Polycom Inc.,L=San Jose,ST=California,C=US</example>
|
|
676
|
+
<param pos="0" name="hw.vendor" value="Polycom"/>
|
|
677
|
+
<param pos="0" name="hw.device" value="Video Conferencing"/>
|
|
678
|
+
<param pos="0" name="hw.product" value="Eagle Eye Director II"/>
|
|
679
|
+
</fingerprint>
|
|
680
|
+
<fingerprint pattern="^CN=([a-zA-Z0-9]+),OU=RD,O=QSC\\, LLC,ST=Colorado,C=US$">
|
|
681
|
+
<description>Q-SYS Licensing Manager</description>
|
|
682
|
+
<example host.name="SVRTIP44">CN=SVRTIP44,OU=RD,O=QSC\, LLC,ST=Colorado,C=US</example>
|
|
683
|
+
<param pos="0" name="service.vendor" value="Q-SYS"/>
|
|
684
|
+
<param pos="0" name="service.product" value="Licensing Manager"/>
|
|
685
|
+
<param pos="1" name="host.name"/>
|
|
686
|
+
</fingerprint>
|
|
687
|
+
<fingerprint pattern="^CN=([A-Za-z0-9]+),OU=FortiGate,O=Fortinet,L=Sunnyvale,ST=California,C=US$">
|
|
688
|
+
<description>Fortinet Gateway</description>
|
|
689
|
+
<example fortinet.serial_number="FG100ETK1800118">CN=FG100ETK1800118,OU=FortiGate,O=Fortinet,L=Sunnyvale,ST=California,C=US</example>
|
|
690
|
+
<example fortinet.serial_number="FGT30D3X15038375">CN=FGT30D3X15038375,OU=FortiGate,O=Fortinet,L=Sunnyvale,ST=California,C=US</example>
|
|
691
|
+
<param pos="0" name="hw.vendor" value="Fortinet"/>
|
|
692
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
693
|
+
<param pos="0" name="os.vendor" value="Fortinet"/>
|
|
694
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:fortinet:fortios:-"/>
|
|
695
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
696
|
+
<param pos="0" name="os.device" value="Firewall"/>
|
|
697
|
+
<param pos="0" name="os.product" value="FortiOS"/>
|
|
698
|
+
<param pos="1" name="fortinet.serial_number"/>
|
|
699
|
+
</fingerprint>
|
|
700
|
+
<fingerprint pattern="^CN=([A-Za-z0-9]+),O=Fortinet Ltd\.$">
|
|
701
|
+
<description>Fortinet Gateway (Older)</description>
|
|
702
|
+
<example fortinet.serial_number="FG100D3G13803999">CN=FG100D3G13803999,O=Fortinet Ltd.</example>
|
|
703
|
+
<param pos="0" name="hw.vendor" value="Fortinet"/>
|
|
704
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
705
|
+
<param pos="0" name="os.vendor" value="Fortinet"/>
|
|
706
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:fortinet:fortios:-"/>
|
|
707
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
708
|
+
<param pos="0" name="os.device" value="Firewall"/>
|
|
709
|
+
<param pos="0" name="os.product" value="FortiOS"/>
|
|
710
|
+
<param pos="1" name="fortinet.serial_number"/>
|
|
711
|
+
</fingerprint>
|
|
712
|
+
<fingerprint pattern="^CN=FortiMail,OU=FortiMail,O=Fortinet,L=Sunnyvale,ST=California,C=US$">
|
|
713
|
+
<description>Fortinet FortiMail Appliance</description>
|
|
714
|
+
<example>CN=FortiMail,OU=FortiMail,O=Fortinet,L=Sunnyvale,ST=California,C=US</example>
|
|
715
|
+
<param pos="0" name="hw.vendor" value="Fortinet"/>
|
|
716
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
717
|
+
<param pos="0" name="hw.product" value="FortiMail"/>
|
|
718
|
+
<param pos="0" name="os.vendor" value="Fortinet"/>
|
|
719
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:fortinet:fortios:-"/>
|
|
720
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
721
|
+
<param pos="0" name="os.product" value="FortiOS"/>
|
|
722
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
723
|
+
</fingerprint>
|
|
724
|
+
<fingerprint pattern="^CN=.*,OU=FortiManager,O=Fortinet,L=Sunnyvale,ST=California,C=US$">
|
|
725
|
+
<description>Fortinet FortiManager Appliance</description>
|
|
726
|
+
<example>CN=FMG-VM0000000000,OU=FortiManager,O=Fortinet,L=Sunnyvale,ST=California,C=US</example>
|
|
727
|
+
<param pos="0" name="hw.vendor" value="Fortinet"/>
|
|
728
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
729
|
+
<param pos="0" name="hw.product" value="FortiManager"/>
|
|
730
|
+
<param pos="0" name="os.vendor" value="Fortinet"/>
|
|
731
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:fortinet:fortios:-"/>
|
|
732
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
733
|
+
<param pos="0" name="os.product" value="FortiOS"/>
|
|
734
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
735
|
+
</fingerprint>
|
|
736
|
+
<fingerprint pattern="^CN=CyberoamApplianceCertificate">
|
|
737
|
+
<description>Cyberoam SSL VPN</description>
|
|
738
|
+
<example>CN=CyberoamApplianceCertificate_C35316263111,OU=Cyberoam Appliance,O=Cyberoam,L=Ahmedabad,ST=Gujarat,C=IN</example>
|
|
739
|
+
<example>CN=CyberoamApplianceCertificate,OU=Cyberoam Appliance,O=Cyberoam,L=Ahmedabad,ST=Gujarat,C=IN</example>
|
|
740
|
+
<param pos="0" name="hw.vendor" value="Cyberoam"/>
|
|
741
|
+
<param pos="0" name="hw.device" value="VPN"/>
|
|
742
|
+
<param pos="0" name="hw.product" value="Appliance"/>
|
|
743
|
+
<param pos="0" name="os.vendor" value="Cyberoam"/>
|
|
744
|
+
<param pos="0" name="os.device" value="VPN"/>
|
|
745
|
+
</fingerprint>
|
|
746
|
+
<fingerprint pattern="^CN=UBNT\-([0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}),OU=Technical Support,O=Ubiquiti Networks Inc.,L=San Jose,ST=CA,C=US$">
|
|
747
|
+
<description>Ubiquiti Wireless AP</description>
|
|
748
|
+
<example host.mac="68:72:51:4B:90:16">CN=UBNT-68:72:51:4B:90:16,OU=Technical Support,O=Ubiquiti Networks Inc.,L=San Jose,ST=CA,C=US</example>
|
|
749
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
750
|
+
<param pos="0" name="hw.device" value="WAP"/>
|
|
751
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
752
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
753
|
+
<param pos="0" name="os.device" value="WAP"/>
|
|
754
|
+
<param pos="1" name="host.mac"/>
|
|
755
|
+
</fingerprint>
|
|
756
|
+
<fingerprint pattern="^CN=unifi$">
|
|
757
|
+
<description>Ubiquiti Controller - unifi bare</description>
|
|
758
|
+
<example>CN=unifi</example>
|
|
759
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
760
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
761
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
762
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
763
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
764
|
+
</fingerprint>
|
|
765
|
+
<fingerprint pattern="^CN=UniFi,OU=UniFi,O=ubnt\.com,L=San Jose,ST=CA,C=US$">
|
|
766
|
+
<description>Ubiquiti Controller - unifi</description>
|
|
767
|
+
<example>CN=UniFi,OU=UniFi,O=ubnt.com,L=San Jose,ST=CA,C=US</example>
|
|
768
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
769
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
770
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
771
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
772
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
773
|
+
</fingerprint>
|
|
774
|
+
<fingerprint pattern="^CN=unifivideo-app$">
|
|
775
|
+
<description>UniFi Video App</description>
|
|
776
|
+
<example>CN=unifivideo-app</example>
|
|
777
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
778
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
779
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
780
|
+
<param pos="0" name="hw.family" value="UniFi"/>
|
|
781
|
+
<param pos="0" name="hw.device" value="Web cam"/>
|
|
782
|
+
</fingerprint>
|
|
783
|
+
<fingerprint pattern="^CN=camera\.ubnt\.dev,">
|
|
784
|
+
<description>UniFi Video Camera</description>
|
|
785
|
+
<example>CN=camera.ubnt.dev,OU=devint,O=Ubiquiti Networks Inc.,L=Taipei,C=TW</example>
|
|
786
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
787
|
+
<param pos="0" name="hw.device" value="Web cam"/>
|
|
788
|
+
<param pos="0" name="hw.product" value="Camera"/>
|
|
789
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
790
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
791
|
+
<param pos="0" name="os.device" value="Web cam"/>
|
|
792
|
+
</fingerprint>
|
|
793
|
+
<fingerprint pattern="^CN=UBNT,OU=Technical Support,O=Ubiquiti Networks Inc\.,L=San Jose,ST=CA,C=US$">
|
|
794
|
+
<description>Ubiquiti Controller</description>
|
|
795
|
+
<example>CN=UBNT,OU=Technical Support,O=Ubiquiti Networks Inc.,L=San Jose,ST=CA,C=US</example>
|
|
796
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
797
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
798
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
799
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
800
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
801
|
+
</fingerprint>
|
|
802
|
+
<fingerprint pattern="^CN=CloudKey,O=Ubiquiti Networks,L=San Jose,ST=CA,C=US$">
|
|
803
|
+
<description>Ubiquiti CloudKey Controller</description>
|
|
804
|
+
<example>CN=CloudKey,O=Ubiquiti Networks,L=San Jose,ST=CA,C=US</example>
|
|
805
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
806
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
807
|
+
<param pos="0" name="hw.product" value="CloudKey"/>
|
|
808
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
809
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
810
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
811
|
+
<param pos="0" name="os.product" value="CloudKey"/>
|
|
812
|
+
</fingerprint>
|
|
813
|
+
<fingerprint pattern="^CN=UBNT Router UI,O=Ubiquiti Networks,L=San Jose,ST=CA,C=US$">
|
|
814
|
+
<description>Ubiquiti Router</description>
|
|
815
|
+
<example>CN=UBNT Router UI,O=Ubiquiti Networks,L=San Jose,ST=CA,C=US</example>
|
|
816
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
817
|
+
<param pos="0" name="hw.device" value="Router"/>
|
|
818
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
819
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
820
|
+
<param pos="0" name="os.device" value="Router"/>
|
|
821
|
+
</fingerprint>
|
|
822
|
+
<fingerprint pattern="^CN=UniFi-Video Controller,OU=R&D,O=Ubiquiti Networks,L=New York,ST=NY,C=US$">
|
|
823
|
+
<description>Ubiquiti Video Controller</description>
|
|
824
|
+
<example>CN=UniFi-Video Controller,OU=R&D,O=Ubiquiti Networks,L=New York,ST=NY,C=US</example>
|
|
825
|
+
<param pos="0" name="hw.vendor" value="Ubiquiti"/>
|
|
826
|
+
<param pos="0" name="hw.device" value="DVR"/>
|
|
827
|
+
<param pos="0" name="hw.product" value="Video Controller"/>
|
|
828
|
+
<param pos="0" name="os.vendor" value="Ubiquiti"/>
|
|
829
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
830
|
+
<param pos="0" name="os.device" value="DVR"/>
|
|
831
|
+
</fingerprint>
|
|
832
|
+
<fingerprint pattern="^CN=GreenWave Systems,OU=PKI,O=GreenWave Systems,L=Irvine,ST=California,C=US$">
|
|
833
|
+
<description>Verizon / Greenwave FIOS Router</description>
|
|
834
|
+
<example>CN=GreenWave Systems,OU=PKI,O=GreenWave Systems,L=Irvine,ST=California,C=US</example>
|
|
835
|
+
<param pos="0" name="hw.vendor" value="Greenwave Systems"/>
|
|
836
|
+
<param pos="0" name="hw.device" value="Broadband Router"/>
|
|
837
|
+
<param pos="0" name="hw.product" value="Verizon FiOS Router"/>
|
|
838
|
+
</fingerprint>
|
|
839
|
+
<fingerprint pattern="^CN=PoliWall,OU=Bandura Labs,O=Bandura\\, LLC\.,L=Lake Saint Louis,ST=Missouri,C=US$">
|
|
840
|
+
<description>PoliWall Firewall Original</description>
|
|
841
|
+
<example>CN=PoliWall,OU=Bandura Labs,O=Bandura\, LLC.,L=Lake Saint Louis,ST=Missouri,C=US</example>
|
|
842
|
+
<param pos="0" name="hw.vendor" value="Bandura Labs"/>
|
|
843
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
844
|
+
<param pos="0" name="hw.product" value="PoliWall"/>
|
|
845
|
+
</fingerprint>
|
|
846
|
+
<fingerprint pattern="^CN=poliwall,OU=IT,O=Bandura,L=St\. Louis,ST=Missouri,C=US$">
|
|
847
|
+
<description>PoliWall Firewall Newer Cert</description>
|
|
848
|
+
<example>CN=poliwall,OU=IT,O=Bandura,L=St. Louis,ST=Missouri,C=US</example>
|
|
849
|
+
<param pos="0" name="hw.vendor" value="Bandura Labs"/>
|
|
850
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
851
|
+
<param pos="0" name="hw.product" value="PoliWall"/>
|
|
852
|
+
</fingerprint>
|
|
853
|
+
<fingerprint pattern="^CN=pfSense-[a-zA-Z0-9]+,O=pfSense webConfigurator Self-Signed Certificate">
|
|
854
|
+
<description>pfSense Firewall</description>
|
|
855
|
+
<example>CN=pfSense-58fb5b0b06777,O=pfSense webConfigurator Self-Signed Certificate,L=Locality,ST=State,C=US</example>
|
|
856
|
+
<example>CN=pfSense-5c76251e4d3e4,O=pfSense webConfigurator Self-Signed Certificate</example>
|
|
857
|
+
<param pos="0" name="hw.vendor" value="pfSense"/>
|
|
858
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
859
|
+
<param pos="0" name="hw.product" value="Firewall"/>
|
|
860
|
+
<param pos="0" name="os.vendor" value="pfSense"/>
|
|
861
|
+
<param pos="0" name="os.product" value="FreeBSD"/>
|
|
862
|
+
</fingerprint>
|
|
863
|
+
<fingerprint pattern="^CN=Common Name \(eg\\, YOUR name\),OU=Organizational Unit Name \(eg\\, section\),O=CompanyName,L=Somecity,ST=Somewhere,C=US$">
|
|
864
|
+
<description>pfSense Firewall Default Certificate</description>
|
|
865
|
+
<example>CN=Common Name (eg\, YOUR name),OU=Organizational Unit Name (eg\, section),O=CompanyName,L=Somecity,ST=Somewhere,C=US</example>
|
|
866
|
+
<param pos="0" name="hw.vendor" value="pfSense"/>
|
|
867
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
868
|
+
<param pos="0" name="hw.product" value="Firewall"/>
|
|
869
|
+
<param pos="0" name="os.vendor" value="pfSense"/>
|
|
870
|
+
<param pos="0" name="os.product" value="FreeBSD"/>
|
|
871
|
+
</fingerprint>
|
|
872
|
+
<fingerprint pattern="^O=OPNsense,L=Middelharnis,ST=Zuid-Holland,C=NL$">
|
|
873
|
+
<description>OPNsense Firewall</description>
|
|
874
|
+
<example>O=OPNsense,L=Middelharnis,ST=Zuid-Holland,C=NL</example>
|
|
875
|
+
<param pos="0" name="hw.vendor" value="OPNsense"/>
|
|
876
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
877
|
+
<param pos="0" name="hw.product" value="Firewall"/>
|
|
878
|
+
<param pos="0" name="os.vendor" value="OPNsense"/>
|
|
879
|
+
<param pos="0" name="os.product" value="FreeBSD"/>
|
|
880
|
+
</fingerprint>
|
|
881
|
+
<fingerprint pattern="^CN=NetVanta,O=ADTRAN\\, Inc\.,L=Huntsville,ST=AL,C=US$" certainty="0.9">
|
|
882
|
+
<description>ADTRAN Netvanta Router</description>
|
|
883
|
+
<example>CN=NetVanta,O=ADTRAN\, Inc.,L=Huntsville,ST=AL,C=US</example>
|
|
884
|
+
<param pos="0" name="os.device" value="Router"/>
|
|
885
|
+
<param pos="0" name="os.vendor" value="ADTRAN"/>
|
|
886
|
+
<param pos="0" name="os.family" value="NetVanta"/>
|
|
887
|
+
<param pos="0" name="hw.device" value="Router"/>
|
|
888
|
+
<param pos="0" name="hw.vendor" value="ADTRAN"/>
|
|
889
|
+
<param pos="0" name="hw.family" value="NetVanta"/>
|
|
890
|
+
</fingerprint>
|
|
891
|
+
<fingerprint pattern="^CN=SophosApplianceCertificate">
|
|
892
|
+
<description>Sophos Appliance</description>
|
|
893
|
+
<example>CN=SophosApplianceCertificate_C330AC22W713PAF,OU=OU,O=Green House Data,L=Cheyenne,ST=WY,C=US</example>
|
|
894
|
+
<example>CN=SophosApplianceCertificate_C22315405928-UU5JKO,OU=OU,O=(null),L=NA,ST=NA,C=PK</example>
|
|
895
|
+
<example>CN=SophosApplianceCertificate,OU=OU,O=Sophos,L=Abingdon,ST=Oxfordshire,C=GB</example>
|
|
896
|
+
<param pos="0" name="hw.vendor" value="Sophos"/>
|
|
897
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
898
|
+
</fingerprint>
|
|
899
|
+
<fingerprint pattern="^CN=Hubitat Elevation,OU=Hub,O=Hubitat\\, Inc\.,L=Scottsdale,ST=Arizona,C=US$">
|
|
900
|
+
<description>Hubitat Device Hub</description>
|
|
901
|
+
<example>CN=Hubitat Elevation,OU=Hub,O=Hubitat\, Inc.,L=Scottsdale,ST=Arizona,C=US</example>
|
|
902
|
+
<param pos="0" name="hw.vendor" value="Hubitat"/>
|
|
903
|
+
<param pos="0" name="hw.device" value="Device Hub"/>
|
|
904
|
+
<param pos="0" name="hw.product" value="Elevation"/>
|
|
905
|
+
<param pos="0" name="os.vendor" value="Hubitat"/>
|
|
906
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
907
|
+
</fingerprint>
|
|
908
|
+
<fingerprint pattern="^CN=MAC([a-fA-F0-9]{12}),OU=([^,]+),O=Mercury Security Products\\, LLC,L=Long Beach,ST=CA,C=US$">
|
|
909
|
+
<description>Mercurity Security (now HID Global)</description>
|
|
910
|
+
<example hw.product="M5IC" host.mac="000FE507A1F1">CN=MAC000FE507A1F1,OU=M5IC,O=Mercury Security Products\, LLC,L=Long Beach,ST=CA,C=US</example>
|
|
911
|
+
<example hw.product="EP-1502" host.mac="000FE508BC71">CN=MAC000FE508BC71,OU=EP-1502,O=Mercury Security Products\, LLC,L=Long Beach,ST=CA,C=US</example>
|
|
912
|
+
<param pos="0" name="hw.vendor" value="Mercury Security"/>
|
|
913
|
+
<param pos="0" name="hw.device" value="Access Controller"/>
|
|
914
|
+
<param pos="1" name="host.mac"/>
|
|
915
|
+
<param pos="2" name="hw.product"/>
|
|
916
|
+
</fingerprint>
|
|
917
|
+
<fingerprint pattern="^CN=Mercury Security EP-series,O=Mercury Security Corp\.,L=Long Beach,ST=CA,C=US$">
|
|
918
|
+
<description>Mercurity Security (now HID Global) No MAC</description>
|
|
919
|
+
<example>CN=Mercury Security EP-series,O=Mercury Security Corp.,L=Long Beach,ST=CA,C=US</example>
|
|
920
|
+
<param pos="0" name="hw.vendor" value="Mercury Security"/>
|
|
921
|
+
<param pos="0" name="hw.device" value="Access Controller"/>
|
|
922
|
+
<param pos="0" name="hw.product" value="EP-series"/>
|
|
923
|
+
</fingerprint>
|
|
924
|
+
<fingerprint pattern="^CN=securelogin.arubanetworks.com,">
|
|
925
|
+
<description>Aruba Wireless Controller</description>
|
|
926
|
+
<example>CN=securelogin.arubanetworks.com,O=Aruba Networks,C=US</example>
|
|
927
|
+
<example>CN=securelogin.arubanetworks.com,OU=Instant,O=Aruba Networks,L=Sunnyvale,ST=California,C=US</example>
|
|
928
|
+
<param pos="0" name="hw.vendor" value="Aruba Networks"/>
|
|
929
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
930
|
+
<param pos="0" name="hw.product" value="Captive Portal"/>
|
|
931
|
+
</fingerprint>
|
|
932
|
+
<fingerprint pattern="^CN=Fireware web CA,OU=Fireware,O=WatchGuard$">
|
|
933
|
+
<description>WatchGuard Firewall</description>
|
|
934
|
+
<example>CN=Fireware web CA,OU=Fireware,O=WatchGuard</example>
|
|
935
|
+
<param pos="0" name="hw.vendor" value="WatchGuard"/>
|
|
936
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
937
|
+
<param pos="0" name="os.vendor" value="WatchGuard"/>
|
|
938
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:watchguard:fireware:-"/>
|
|
939
|
+
<param pos="0" name="os.product" value="Fireware"/>
|
|
940
|
+
</fingerprint>
|
|
941
|
+
<fingerprint pattern="^CN=[0-9\.]+,OU=SSL-VPN,O=SonicWALL\\, Inc\.,L=Sunnyvale,ST=CA,C=US$">
|
|
942
|
+
<description>SonicWALL Firewall</description>
|
|
943
|
+
<example>CN=192.168.200.1,OU=SSL-VPN,O=SonicWALL\, Inc.,L=Sunnyvale,ST=CA,C=US</example>
|
|
944
|
+
<param pos="0" name="hw.vendor" value="SonicWALL"/>
|
|
945
|
+
<param pos="0" name="hw.device" value="VPN"/>
|
|
946
|
+
<param pos="0" name="os.vendor" value="SonicWALL"/>
|
|
947
|
+
<param pos="0" name="os.product" value="VPN"/>
|
|
948
|
+
<param pos="0" name="os.family" value="VPN"/>
|
|
949
|
+
</fingerprint>
|
|
950
|
+
<fingerprint pattern="^CN=.*\.akamai\.net,O=Akamai Technologies\\, Inc\.,L=Cambridge,ST=Massachusetts,C=US$">
|
|
951
|
+
<description>Akamai Global Host</description>
|
|
952
|
+
<example>CN=a248.e.akamai.net,O=Akamai Technologies\, Inc.,L=Cambridge,ST=Massachusetts,C=US</example>
|
|
953
|
+
<param pos="0" name="service.vendor" value="Akamai"/>
|
|
954
|
+
<param pos="0" name="service.product" value="GHost"/>
|
|
955
|
+
<param pos="0" name="os.vendor" value="Akamai"/>
|
|
956
|
+
<param pos="0" name="os.device" value="Web proxy"/>
|
|
957
|
+
</fingerprint>
|
|
958
|
+
<fingerprint pattern="^CN=HP_3PAR_">
|
|
959
|
+
<description>HP 3PAR</description>
|
|
960
|
+
<example>CN=HP_3PAR_1626615</example>
|
|
961
|
+
<example>CN=HP_3PAR_CZ3601VYFJ</example>
|
|
962
|
+
<param pos="0" name="hw.vendor" value="HP"/>
|
|
963
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
964
|
+
<param pos="0" name="hw.product" value="3PAR"/>
|
|
965
|
+
</fingerprint>
|
|
966
|
+
<fingerprint pattern="^CN=(?:alienvault|VirtualUSMAllInOne)$">
|
|
967
|
+
<description>Alienvault OSSIM</description>
|
|
968
|
+
<example>CN=alienvault</example>
|
|
969
|
+
<example>CN=VirtualUSMAllInOne</example>
|
|
970
|
+
<param pos="0" name="os.vendor" value="AlienVault"/>
|
|
971
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
972
|
+
<param pos="0" name="os.product" value="OSSIM"/>
|
|
973
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
974
|
+
</fingerprint>
|
|
975
|
+
<fingerprint pattern="^CN=Canon (iR-[a-zA-Z0-9\.\-\_]+)$">
|
|
976
|
+
<description>Canon iR-ADV Printer with product info</description>
|
|
977
|
+
<example os.product="iR-ADV">CN=Canon iR-ADV</example>
|
|
978
|
+
<param pos="0" name="hw.device" value="Printer"/>
|
|
979
|
+
<param pos="0" name="hw.vendor" value="Canon"/>
|
|
980
|
+
<param pos="0" name="os.device" value="Printer"/>
|
|
981
|
+
<param pos="0" name="os.vendor" value="Canon"/>
|
|
982
|
+
<param pos="1" name="hw.product"/>
|
|
983
|
+
<param pos="1" name="os.product"/>
|
|
984
|
+
</fingerprint>
|
|
985
|
+
<fingerprint pattern="^CN=Canon Imaging Product$">
|
|
986
|
+
<description>Canon iR-ADV Printer</description>
|
|
987
|
+
<example>CN=Canon Imaging Product</example>
|
|
988
|
+
<param pos="0" name="hw.device" value="Printer"/>
|
|
989
|
+
<param pos="0" name="hw.vendor" value="Canon"/>
|
|
990
|
+
<param pos="0" name="os.device" value="Printer"/>
|
|
991
|
+
<param pos="0" name="os.vendor" value="Canon"/>
|
|
992
|
+
</fingerprint>
|
|
993
|
+
<fingerprint pattern="^CN=ScanFront$">
|
|
994
|
+
<description>Canon ScanFront Simple</description>
|
|
995
|
+
<example>CN=ScanFront</example>
|
|
996
|
+
<param pos="0" name="hw.device" value="Scanner"/>
|
|
997
|
+
<param pos="0" name="hw.vendor" value="Canon"/>
|
|
998
|
+
<param pos="0" name="hw.product" value="ScanFront"/>
|
|
999
|
+
<param pos="0" name="os.device" value="Scanner"/>
|
|
1000
|
+
<param pos="0" name="os.vendor" value="Canon"/>
|
|
1001
|
+
<param pos="0" name="os.product" value="ScanFront"/>
|
|
1002
|
+
</fingerprint>
|
|
1003
|
+
<fingerprint pattern="^CN=ScanFront,OU=IMS,O=CANON ELECTRONICS INC\.,L=Minato-ku,ST=Tokyo,C=JP$">
|
|
1004
|
+
<description>Canon ScanFront Full</description>
|
|
1005
|
+
<example>CN=ScanFront,OU=IMS,O=CANON ELECTRONICS INC.,L=Minato-ku,ST=Tokyo,C=JP</example>
|
|
1006
|
+
<param pos="0" name="hw.device" value="Scanner"/>
|
|
1007
|
+
<param pos="0" name="hw.vendor" value="Canon"/>
|
|
1008
|
+
<param pos="0" name="hw.product" value="ScanFront"/>
|
|
1009
|
+
<param pos="0" name="os.device" value="Scanner"/>
|
|
1010
|
+
<param pos="0" name="os.vendor" value="Canon"/>
|
|
1011
|
+
<param pos="0" name="os.product" value="ScanFront"/>
|
|
1012
|
+
</fingerprint>
|
|
1013
|
+
<fingerprint pattern="^CN=tnsappliance.*,O=Tenable Network Security\\, Inc\.,L=Columbia,ST=Maryland,C=US$">
|
|
1014
|
+
<description>Tenable Appliance</description>
|
|
1015
|
+
<example>CN=tnsappliance-b088a321,OU=--,O=Tenable Network Security\, Inc.,L=Columbia,ST=Maryland,C=US</example>
|
|
1016
|
+
<example>CN=tnsappliance,OU=--,O=Tenable Network Security\, Inc.,L=Columbia,ST=Maryland,C=US</example>
|
|
1017
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
1018
|
+
<param pos="0" name="hw.vendor" value="Tenable"/>
|
|
1019
|
+
<param pos="0" name="hw.product" value="Tenable Core"/>
|
|
1020
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
1021
|
+
<param pos="0" name="os.vendor" value="Tenable"/>
|
|
1022
|
+
<param pos="0" name="os.product" value="Tenable Core"/>
|
|
1023
|
+
</fingerprint>
|
|
1024
|
+
<fingerprint pattern="^CN=extrahop,OU=extrahop\.com,O=ExtraHop,C=US$">
|
|
1025
|
+
<description>ExtraHop Appliance</description>
|
|
1026
|
+
<example>CN=extrahop,OU=extrahop.com,O=ExtraHop,C=US</example>
|
|
1027
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
1028
|
+
<param pos="0" name="hw.vendor" value="ExtraHop"/>
|
|
1029
|
+
<param pos="0" name="hw.product" value="Discover"/>
|
|
1030
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
1031
|
+
<param pos="0" name="os.vendor" value="ExtraHop"/>
|
|
1032
|
+
<param pos="0" name="os.product" value="Discover"/>
|
|
1033
|
+
</fingerprint>
|
|
1034
|
+
<fingerprint pattern="^CN=Ruckus Wireless ZoneDirector SN-(\d+),O=Ruckus Wireless\\, Inc\.,ST=CA,C=US$">
|
|
1035
|
+
<description>Ruckus Zone Director</description>
|
|
1036
|
+
<example ruckus.serial_number="221301007591">CN=Ruckus Wireless ZoneDirector SN-221301007591,O=Ruckus Wireless\, Inc.,ST=CA,C=US</example>
|
|
1037
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
1038
|
+
<param pos="0" name="hw.vendor" value="Ruckus"/>
|
|
1039
|
+
<param pos="0" name="hw.product" value="Zone Director"/>
|
|
1040
|
+
<param pos="0" name="os.device" value="Wireless Controller"/>
|
|
1041
|
+
<param pos="0" name="os.vendor" value="Ruckus"/>
|
|
1042
|
+
<param pos="0" name="os.product" value="Zone Director"/>
|
|
1043
|
+
<param pos="1" name="ruckus.serial_number"/>
|
|
1044
|
+
</fingerprint>
|
|
1045
|
+
<fingerprint pattern="^CN=DT([^\s]+) Series,O=NEC Corporation,ST=Tokyo,C=JP$">
|
|
1046
|
+
<description>NEC DT Series IP Phone</description>
|
|
1047
|
+
<example>CN=DT800 Series,O=NEC Corporation,ST=Tokyo,C=JP</example>
|
|
1048
|
+
<param pos="0" name="os.vendor" value="NEC"/>
|
|
1049
|
+
<param pos="0" name="os.device" value="VoIP"/>
|
|
1050
|
+
<param pos="0" name="hw.vendor" value="NEC"/>
|
|
1051
|
+
<param pos="0" name="hw.device" value="VoIP"/>
|
|
1052
|
+
<param pos="1" name="hw.product"/>
|
|
1053
|
+
</fingerprint>
|
|
1054
|
+
<fingerprint pattern="^CN=([a-fA-F0-9]{12}),O=Polycom Inc\.$">
|
|
1055
|
+
<description>Polycom SoundPoint IP Phone</description>
|
|
1056
|
+
<example host.mac="64167F169981">CN=64167F169981,O=Polycom Inc.</example>
|
|
1057
|
+
<param pos="0" name="os.vendor" value="Polycom"/>
|
|
1058
|
+
<param pos="0" name="os.device" value="VoIP"/>
|
|
1059
|
+
<param pos="0" name="hw.vendor" value="Polycom"/>
|
|
1060
|
+
<param pos="0" name="hw.device" value="VoIP"/>
|
|
1061
|
+
<param pos="0" name="hw.product" value="SoundPoint"/>
|
|
1062
|
+
<param pos="1" name="host.mac"/>
|
|
1063
|
+
</fingerprint>
|
|
1064
|
+
<fingerprint pattern="^CN=EN Software Production & Release,OU=Enterprise Networks,O=Siemens AG,L=Munich,ST=Germany,C=DE$">
|
|
1065
|
+
<description>Siemens EN Software</description>
|
|
1066
|
+
<example>CN=EN Software Production & Release,OU=Enterprise Networks,O=Siemens AG,L=Munich,ST=Germany,C=DE</example>
|
|
1067
|
+
<param pos="0" name="os.vendor" value="Siemens"/>
|
|
1068
|
+
<param pos="0" name="os.device" value="VoIP"/>
|
|
1069
|
+
<param pos="0" name="hw.vendor" value="Siemens"/>
|
|
1070
|
+
<param pos="0" name="hw.device" value="VoIP"/>
|
|
1071
|
+
</fingerprint>
|
|
1072
|
+
<fingerprint pattern="^CN=SecureConnect server,O=Quest,ST=CA,C=US$">
|
|
1073
|
+
<description>SecureConnect SSL VPN</description>
|
|
1074
|
+
<example>CN=SecureConnect server,O=Quest,ST=CA,C=US</example>
|
|
1075
|
+
<param pos="0" name="hw.vendor" value="SecureConnect"/>
|
|
1076
|
+
<param pos="0" name="hw.device" value="VPN"/>
|
|
1077
|
+
<param pos="0" name="os.vendor" value="SecureConnect"/>
|
|
1078
|
+
<param pos="0" name="os.device" value="VPN"/>
|
|
1079
|
+
</fingerprint>
|
|
1080
|
+
<fingerprint pattern="^CN=RecoverPoint,OU=Data Protection and Availability Division,O=EMC Corporation,L=Hopkinton,ST=Massachusetts,C=US$">
|
|
1081
|
+
<description>RecoverPoint Appliance</description>
|
|
1082
|
+
<example>CN=RecoverPoint,OU=Data Protection and Availability Division,O=EMC Corporation,L=Hopkinton,ST=Massachusetts,C=US</example>
|
|
1083
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
1084
|
+
<param pos="0" name="hw.vendor" value="EMC"/>
|
|
1085
|
+
<param pos="0" name="hw.product" value="RecoverPoint"/>
|
|
1086
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
1087
|
+
<param pos="0" name="os.vendor" value="EMC"/>
|
|
1088
|
+
<param pos="0" name="os.product" value="RecoverPoint"/>
|
|
1089
|
+
</fingerprint>
|
|
1090
|
+
<fingerprint pattern="^CN=[a-fA-F0-9]+,O=Palo Alto Networks,L=Santa Clara,ST=CA,C=US$">
|
|
1091
|
+
<description>Palo Alto Firewall</description>
|
|
1092
|
+
<example>CN=d9fc2294968367a3a8ad1acd4c816c78444e6ea4d69869b40cc9751951fd3693,O=Palo Alto Networks,L=Santa Clara,ST=CA,C=US</example>
|
|
1093
|
+
<param pos="0" name="hw.vendor" value="Palo Alto Networks"/>
|
|
1094
|
+
<param pos="0" name="hw.device" value="Firewall"/>
|
|
1095
|
+
<param pos="0" name="os.vendor" value="Palo Alto Networks"/>
|
|
1096
|
+
<param pos="0" name="os.product" value="PANOS"/>
|
|
1097
|
+
<param pos="0" name="os.device" value="Firewall"/>
|
|
1098
|
+
</fingerprint>
|
|
1099
|
+
<fingerprint pattern="^CN=VMware default certificate,OU=vCenterServer.*,O=VMware\\, Inc\.$">
|
|
1100
|
+
<description>VMWare vCenter</description>
|
|
1101
|
+
<example>CN=VMware default certificate,OU=vCenterServer_2013.09.26_220623,O=VMware\, Inc.</example>
|
|
1102
|
+
<param pos="0" name="service.vendor" value="VMWare"/>
|
|
1103
|
+
<param pos="0" name="service.product" value="vCenter"/>
|
|
1104
|
+
</fingerprint>
|
|
1105
|
+
<fingerprint pattern="^CN=selfappliance,OU=Engineering,O=Symplified,L=Boulder,ST=Colorado,C=US$">
|
|
1106
|
+
<description>Symplified IAM Appliance (now RSA)</description>
|
|
1107
|
+
<example>CN=selfappliance,OU=Engineering,O=Symplified,L=Boulder,ST=Colorado,C=US</example>
|
|
1108
|
+
<param pos="0" name="hw.vendor" value="Symplified"/>
|
|
1109
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
1110
|
+
<param pos="0" name="hw.product" value="IAM"/>
|
|
1111
|
+
</fingerprint>
|
|
1112
|
+
<fingerprint pattern="^CN=OpenWrt,L=Leipzig,ST=Saxony,C=DE$">
|
|
1113
|
+
<description>OpenWRT WAP</description>
|
|
1114
|
+
<example>CN=OpenWrt,L=Leipzig,ST=Saxony,C=DE</example>
|
|
1115
|
+
<param pos="0" name="os.vendor" value="OpenWRT"/>
|
|
1116
|
+
<param pos="0" name="os.device" value="WAP"/>
|
|
1117
|
+
</fingerprint>
|
|
1118
|
+
<fingerprint pattern="^CN=axis-([a-fA-F0-9]{12}),O=Axis Communications AB$">
|
|
1119
|
+
<description>Axis Communications Web Cam</description>
|
|
1120
|
+
<example host.mac="accc8ea31abf">CN=axis-accc8ea31abf,O=Axis Communications AB</example>
|
|
1121
|
+
<param pos="0" name="hw.vendor" value="AXIS"/>
|
|
1122
|
+
<param pos="0" name="hw.device" value="Web cam"/>
|
|
1123
|
+
<param pos="0" name="os.vendor" value="AXIS"/>
|
|
1124
|
+
<param pos="0" name="os.device" value="Web cam"/>
|
|
1125
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
1126
|
+
<param pos="1" name="host.mac"/>
|
|
1127
|
+
</fingerprint>
|
|
1128
|
+
<fingerprint pattern="^CN=([^,]+),OU=Nortek,O=ELAN,L=StuddardMD,ST=[^,]+,C=US$">
|
|
1129
|
+
<description>ELAN Web Cam</description>
|
|
1130
|
+
<example host.name="ServerRoom">CN=ServerRoom,OU=Nortek,O=ELAN,L=StuddardMD,ST=10000,C=US</example>
|
|
1131
|
+
<param pos="0" name="hw.vendor" value="ELAN"/>
|
|
1132
|
+
<param pos="0" name="hw.device" value="Web cam"/>
|
|
1133
|
+
<param pos="0" name="hw.product" value="HDIPCam"/>
|
|
1134
|
+
<param pos="0" name="os.vendor" value="ELAN"/>
|
|
1135
|
+
<param pos="0" name="os.device" value="Web cam"/>
|
|
1136
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
1137
|
+
<param pos="1" name="host.name"/>
|
|
1138
|
+
</fingerprint>
|
|
1139
|
+
<fingerprint pattern="^CN=Dell_OpenManage.*,OU=PG,O=Dell Inc\.,ST=Texas,C=US$">
|
|
1140
|
+
<description>Dell OpenManage</description>
|
|
1141
|
+
<example>CN=Dell_OpenManage01,OU=PG,O=Dell Inc.,ST=Texas,C=US</example>
|
|
1142
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
1143
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
1144
|
+
<param pos="0" name="hw.product" value="OpenManage"/>
|
|
1145
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
1146
|
+
<param pos="0" name="os.device" value="Appliance"/>
|
|
1147
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
1148
|
+
</fingerprint>
|
|
1149
|
+
<fingerprint pattern="^CN=Equallogic PS Array,OU=Dell Equallogic,O=Dell Inc\.,L=Nashua,ST=New Hampshire,C=US$">
|
|
1150
|
+
<description>Dell EqualLogic PS Array</description>
|
|
1151
|
+
<example>CN=Equallogic PS Array,OU=Dell Equallogic,O=Dell Inc.,L=Nashua,ST=New Hampshire,C=US</example>
|
|
1152
|
+
<param pos="0" name="hw.vendor" value="Dell"/>
|
|
1153
|
+
<param pos="0" name="hw.device" value="Storage"/>
|
|
1154
|
+
<param pos="0" name="hw.product" value="EqualLogic"/>
|
|
1155
|
+
<param pos="0" name="os.vendor" value="Dell"/>
|
|
1156
|
+
<param pos="0" name="os.device" value="Storage"/>
|
|
1157
|
+
<param pos="0" name="os.product" value="EqualLogic"/>
|
|
1158
|
+
</fingerprint>
|
|
1159
|
+
<fingerprint pattern="^CN=opennac\.test,L=Madrid,ST=Madrid,C=ES$">
|
|
1160
|
+
<description>OpenNAC Appliance</description>
|
|
1161
|
+
<example>CN=opennac.test,L=Madrid,ST=Madrid,C=ES</example>
|
|
1162
|
+
<param pos="0" name="hw.vendor" value="OpenNAC"/>
|
|
1163
|
+
<param pos="0" name="hw.device" value="Appliance"/>
|
|
1164
|
+
<param pos="0" name="hw.product" value="OpenNAC"/>
|
|
1165
|
+
<param pos="0" name="os.vendor" value="OpenNAC"/>
|
|
1166
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
1167
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
1168
|
+
</fingerprint>
|
|
1169
|
+
<fingerprint pattern="^CN=SmartEdge Sensor,O=AirMagnet,L=Sunnyvale,ST=California,C=US$">
|
|
1170
|
+
<description>AirMagnet SmartEdge Sensor</description>
|
|
1171
|
+
<example>CN=SmartEdge Sensor,O=AirMagnet,L=Sunnyvale,ST=California,C=US</example>
|
|
1172
|
+
<param pos="0" name="hw.vendor" value="AirMagnet"/>
|
|
1173
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
1174
|
+
<param pos="0" name="hw.product" value="SmartEdge Sensor"/>
|
|
1175
|
+
</fingerprint>
|
|
1176
|
+
<fingerprint pattern="^CN=Sensor WebUI,O=AirDefense Inc.,L=Alpharetta,ST=GA,C=US$">
|
|
1177
|
+
<description>AirDefense Inc Sensor</description>
|
|
1178
|
+
<example>CN=Sensor WebUI,O=AirDefense Inc.,L=Alpharetta,ST=GA,C=US</example>
|
|
1179
|
+
<param pos="0" name="hw.vendor" value="AirDefense"/>
|
|
1180
|
+
<param pos="0" name="hw.device" value="Wireless Controller"/>
|
|
1181
|
+
<param pos="0" name="hw.product" value="Sensor"/>
|
|
1182
|
+
</fingerprint>
|
|
1183
|
+
<fingerprint pattern="^CN=HiveAP,OU=Default,O=Aerohive,ST=California,C=US$">
|
|
1184
|
+
<description>Aerohive Access Point</description>
|
|
1185
|
+
<example>CN=HiveAP,OU=Default,O=Aerohive,ST=California,C=US</example>
|
|
1186
|
+
<param pos="0" name="hw.vendor" value="Aerohive"/>
|
|
1187
|
+
<param pos="0" name="hw.device" value="WAP"/>
|
|
1188
|
+
<param pos="0" name="hw.product" value="Access Point"/>
|
|
1189
|
+
<param pos="0" name="os.vendor" value="Aerohive"/>
|
|
1190
|
+
<param pos="0" name="os.family" value="Linux"/>
|
|
1191
|
+
<param pos="0" name="os.product" value="Linux"/>
|
|
1192
|
+
</fingerprint>
|
|
1193
|
+
<fingerprint pattern="^CN=(usg[^_]+)_([a-fA-F0-9]{12})$">
|
|
1194
|
+
<description>ZyWall Router</description>
|
|
1195
|
+
<example hw.product="usg20w" host.mac="5CF4AB615FAC">CN=usg20w_5CF4AB615FAC</example>
|
|
1196
|
+
<example hw.product="usg20w" host.mac="5067F0BC1D3C">CN=usg20w_5067F0BC1D3C</example>
|
|
1197
|
+
<example hw.product="usg20" host.mac="107BEF0AD201">CN=usg20_107BEF0AD201</example>
|
|
1198
|
+
<param pos="0" name="hw.vendor" value="ZyWall"/>
|
|
1199
|
+
<param pos="0" name="hw.device" value="Broadband Router"/>
|
|
1200
|
+
<param pos="1" name="hw.product"/>
|
|
1201
|
+
<param pos="2" name="host.mac"/>
|
|
1202
|
+
</fingerprint>
|
|
1203
|
+
<fingerprint pattern="^CN=([a-fA-F0-9]{16}),O=Philips Hue,C=NL$">
|
|
1204
|
+
<description>Philips Hue Personal Wireless Lighting</description>
|
|
1205
|
+
<example host.mac_eui64="001788fffe4f1999">CN=001788fffe4f1999,O=Philips Hue,C=NL</example>
|
|
1206
|
+
<param pos="0" name="hw.vendor" value="Philips"/>
|
|
1207
|
+
<param pos="0" name="hw.product" value="Hue"/>
|
|
1208
|
+
<param pos="0" name="hw.device" value="Light Bulb"/>
|
|
1209
|
+
<param pos="1" name="host.mac_eui64"/>
|
|
1210
|
+
</fingerprint>
|
|
1211
|
+
<fingerprint pattern="^CN=www\.ibm\.com,OU=IBM i Service,L=Rochester,ST=Minnesota,C=US$">
|
|
1212
|
+
<description>IBM iSeries Service Console</description>
|
|
1213
|
+
<example>CN=www.ibm.com,OU=IBM i Service,L=Rochester,ST=Minnesota,C=US</example>
|
|
1214
|
+
<param pos="0" name="os.vendor" value="IBM"/>
|
|
1215
|
+
<param pos="0" name="os.family" value="OS/400"/>
|
|
1216
|
+
<param pos="0" name="os.product" value="OS/400"/>
|
|
1217
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:ibm:os_400:-"/>
|
|
1218
|
+
</fingerprint>
|
|
1219
|
+
<fingerprint pattern="^CN=.*\.ip\.kaptivo\.live,">
|
|
1220
|
+
<description>Kaptivo Whiteboard</description>
|
|
1221
|
+
<example>CN=*.ip.kaptivo.live,OU=Domain Control Validated+OU=PositiveSSL Wildcard</example>
|
|
1222
|
+
<param pos="0" name="hw.vendor" value="Kaptivo"/>
|
|
1223
|
+
<param pos="0" name="hw.product" value="Whiteboard"/>
|
|
1224
|
+
<param pos="0" name="hw.device" value="Whiteboard"/>
|
|
1225
|
+
</fingerprint>
|
|
1226
|
+
<fingerprint pattern="^CN=.*,OU=Network Security Management,O=FireEye\\, Inc\.,L=Milpitas,ST=California,C=US$">
|
|
1227
|
+
<description>FireEye Appliance</description>
|
|
1228
|
+
<example>CN=noc-feye-ex2,OU=Network Security Management,O=FireEye\, Inc.,L=Milpitas,ST=California,C=US</example>
|
|
1229
|
+
<param pos="0" name="hw.vendor" value="FireEye"/>
|
|
1230
|
+
<param pos="0" name="hw.product" value="Appliance"/>
|
|
1231
|
+
<param pos="0" name="hw.device" value="Security Appliance"/>
|
|
1232
|
+
</fingerprint>
|
|
1233
|
+
<fingerprint pattern="^CN=.*,OU=IA,O=FireEye,L=Charlottesville,ST=Virginia,C=US$">
|
|
1234
|
+
<description>FireEye Investigation Analysis System Appliance</description>
|
|
1235
|
+
<example>CN=noc-feye-ia2,OU=IA,O=FireEye,L=Charlottesville,ST=Virginia,C=US</example>
|
|
1236
|
+
<param pos="0" name="hw.vendor" value="FireEye"/>
|
|
1237
|
+
<param pos="0" name="hw.product" value="IA Appliance"/>
|
|
1238
|
+
<param pos="0" name="hw.device" value="Security Appliance"/>
|
|
1239
|
+
</fingerprint>
|
|
1240
|
+
<fingerprint pattern="^CN=.*,OU=Gigamon Network Visibility Systems,O=Gigamon Inc\.,L=Santa Clara,ST=California,C=US$">
|
|
1241
|
+
<description>Gigamon GigaVUE Appliance</description>
|
|
1242
|
+
<example>CN=gvue01,OU=Gigamon Network Visibility Systems,O=Gigamon Inc.,L=Santa Clara,ST=California,C=US</example>
|
|
1243
|
+
<param pos="0" name="hw.vendor" value="Gigamon"/>
|
|
1244
|
+
<param pos="0" name="hw.device" value="Monitoring"/>
|
|
1245
|
+
<param pos="0" name="hw.product" value="GigaVUE"/>
|
|
1246
|
+
</fingerprint>
|
|
1247
|
+
<fingerprint pattern="^CN=.*,OU=Telliris,O=DAC Systems,L=Shelton,ST=Connecticut,C=US$">
|
|
1248
|
+
<description>Telliris IVR</description>
|
|
1249
|
+
<example>CN=Telliris-IVR,OU=Telliris,O=DAC Systems,L=Shelton,ST=Connecticut,C=US</example>
|
|
1250
|
+
<param pos="0" name="hw.vendor" value="Telliris"/>
|
|
1251
|
+
<param pos="0" name="hw.device" value="Voice Appliance"/>
|
|
1252
|
+
<param pos="0" name="hw.product" value="IVR"/>
|
|
1253
|
+
</fingerprint>
|
|
1254
|
+
<fingerprint pattern="^CN=SLS,O=Lantronix,L=Irvine,ST=California,C=US$">
|
|
1255
|
+
<description>Lantronix SLS terminal server</description>
|
|
1256
|
+
<example>CN=SLS,O=Lantronix,L=Irvine,ST=California,C=US</example>
|
|
1257
|
+
<param pos="0" name="hw.vendor" value="Lantronix"/>
|
|
1258
|
+
<param pos="0" name="hw.device" value="Device Server"/>
|
|
1259
|
+
<param pos="0" name="hw.product" value="SLS"/>
|
|
1260
|
+
</fingerprint>
|
|
1261
|
+
<fingerprint pattern="^CN=Tintri Default Certificate,OU=Tintri Server Certificate,O=Tintri\\, Inc\.,L=Mountain View,ST=CA,C=US$">
|
|
1262
|
+
<description>Tintri Storage Appliance</description>
|
|
1263
|
+
<example>CN=Tintri Default Certificate,OU=Tintri Server Certificate,O=Tintri\, Inc.,L=Mountain View,ST=CA,C=US</example>
|
|
1264
|
+
<param pos="0" name="hw.vendor" value="Tintro"/>
|
|
1265
|
+
<param pos="0" name="hw.device" value="NAS"/>
|
|
1266
|
+
<param pos="0" name="hw.product" value="Storage Appliance"/>
|
|
1267
|
+
</fingerprint>
|
|
1268
|
+
</fingerprints>
|