recog-intrigue 2.3.7
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,603 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<fingerprints protocol="h.323" database_type="service" preference="0.80">
|
3
|
+
<!--
|
4
|
+
Responses to H.323 call SETUP messages are matched against these patterns
|
5
|
+
to fingerprint H.323 servers.
|
6
|
+
-->
|
7
|
+
<fingerprint pattern="^0x000b2d00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
8
|
+
<description>Sony H.323 Server</description>
|
9
|
+
<param pos="0" name="service.vendor" value="Sony"/>
|
10
|
+
<param pos="1" name="service.product"/>
|
11
|
+
<param pos="2" name="service.version"/>
|
12
|
+
</fingerprint>
|
13
|
+
<fingerprint pattern="^0x0400004[23]\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
14
|
+
<description>Deutsche Telekom AG H.323 Server</description>
|
15
|
+
<param pos="0" name="service.vendor" value="Deutsche Telekom AG"/>
|
16
|
+
<param pos="1" name="service.product"/>
|
17
|
+
<param pos="2" name="service.version"/>
|
18
|
+
</fingerprint>
|
19
|
+
<fingerprint pattern="^0x04000082\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
20
|
+
<description>Siemens AG H.323 Server</description>
|
21
|
+
<param pos="0" name="service.vendor" value="Siemens AG"/>
|
22
|
+
<param pos="1" name="service.product"/>
|
23
|
+
<param pos="2" name="service.version"/>
|
24
|
+
</fingerprint>
|
25
|
+
<fingerprint pattern="^0x04000084\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
26
|
+
<description>ITO Communications H.323 Server</description>
|
27
|
+
<param pos="0" name="service.vendor" value="ITO Communications"/>
|
28
|
+
<param pos="1" name="service.product"/>
|
29
|
+
<param pos="2" name="service.version"/>
|
30
|
+
</fingerprint>
|
31
|
+
<fingerprint pattern="^0x04000086\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
32
|
+
<description>Hauni Elektronik H.323 Server</description>
|
33
|
+
<param pos="0" name="service.vendor" value="Hauni Elektronik"/>
|
34
|
+
<param pos="1" name="service.product"/>
|
35
|
+
<param pos="2" name="service.version"/>
|
36
|
+
</fingerprint>
|
37
|
+
<fingerprint pattern="^0x04000088\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
38
|
+
<description>Dr. Neuhaus Mikroelektronik H.323 Server</description>
|
39
|
+
<param pos="0" name="service.vendor" value="Dr. Neuhaus Mikroelektronik"/>
|
40
|
+
<param pos="1" name="service.product"/>
|
41
|
+
<param pos="2" name="service.version"/>
|
42
|
+
</fingerprint>
|
43
|
+
<fingerprint pattern="^0x0400008a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
44
|
+
<description>MPS Software H.323 Server</description>
|
45
|
+
<param pos="0" name="service.vendor" value="MPS Software"/>
|
46
|
+
<param pos="1" name="service.product"/>
|
47
|
+
<param pos="2" name="service.version"/>
|
48
|
+
</fingerprint>
|
49
|
+
<fingerprint pattern="^0x0400008b\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
50
|
+
<description>Ferrari Electronik GmbH H.323 Server</description>
|
51
|
+
<param pos="0" name="service.vendor" value="Ferrari Electronik GmbH"/>
|
52
|
+
<param pos="1" name="service.product"/>
|
53
|
+
<param pos="2" name="service.version"/>
|
54
|
+
</fingerprint>
|
55
|
+
<fingerprint pattern="^0x0400008c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
56
|
+
<description>MBP Kommunikationssysteme GmbH H.323 Server</description>
|
57
|
+
<param pos="0" name="service.vendor" value="MBP Kommunikationssysteme GmbH"/>
|
58
|
+
<param pos="1" name="service.product"/>
|
59
|
+
<param pos="2" name="service.version"/>
|
60
|
+
</fingerprint>
|
61
|
+
<fingerprint pattern="^0x0400008d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
62
|
+
<description>Schneider Rundfunkwerke AG H.323 Server</description>
|
63
|
+
<param pos="0" name="service.vendor" value="Schneider Rundfunkwerke AG"/>
|
64
|
+
<param pos="1" name="service.product"/>
|
65
|
+
<param pos="2" name="service.version"/>
|
66
|
+
</fingerprint>
|
67
|
+
<fingerprint pattern="^0x0400008e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
68
|
+
<description>Digitronic Computersysteme GmbH H.323 Server</description>
|
69
|
+
<param pos="0" name="service.vendor" value="Digitronic Computersysteme GmbH"/>
|
70
|
+
<param pos="1" name="service.product"/>
|
71
|
+
<param pos="2" name="service.version"/>
|
72
|
+
</fingerprint>
|
73
|
+
<fingerprint pattern="^0x0400008f\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
74
|
+
<description>DeTeWe - Deutsche Telephonwerke AG H.323 Server</description>
|
75
|
+
<param pos="0" name="service.vendor" value="DeTeWe - Deutsche Telephonwerke AG"/>
|
76
|
+
<param pos="1" name="service.product"/>
|
77
|
+
<param pos="2" name="service.version"/>
|
78
|
+
</fingerprint>
|
79
|
+
<fingerprint pattern="^0x0900003d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
80
|
+
<description>Equivalence (OpenH323) H.323 Server</description>
|
81
|
+
<example>0x0900003D:Null Team YATE:3.3.2 (OpenH323 v1.19.0)</example>
|
82
|
+
<param pos="0" name="service.vendor" value="Equivalence (OpenH323)"/>
|
83
|
+
<param pos="1" name="service.product"/>
|
84
|
+
<param pos="2" name="service.version"/>
|
85
|
+
</fingerprint>
|
86
|
+
<fingerprint pattern="^0x20000081\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
87
|
+
<description>Mediatrix Telecom H.323 Server</description>
|
88
|
+
<param pos="0" name="service.vendor" value="Mediatrix Telecom"/>
|
89
|
+
<param pos="1" name="service.product"/>
|
90
|
+
<param pos="2" name="service.version"/>
|
91
|
+
</fingerprint>
|
92
|
+
<fingerprint pattern="^0x3c000000\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
93
|
+
<description>Nokia H.323 Server</description>
|
94
|
+
<param pos="0" name="service.vendor" value="Nokia"/>
|
95
|
+
<param pos="1" name="service.product"/>
|
96
|
+
<param pos="2" name="service.version"/>
|
97
|
+
</fingerprint>
|
98
|
+
<fingerprint pattern="^0x3d00031[0-9a-f]\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
99
|
+
<description>Swissvoice H.323 Server</description>
|
100
|
+
<param pos="0" name="service.vendor" value="Swissvoice"/>
|
101
|
+
<param pos="1" name="service.product"/>
|
102
|
+
<param pos="2" name="service.version"/>
|
103
|
+
</fingerprint>
|
104
|
+
<fingerprint pattern="^0x(?:82000002|a5000001)\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
105
|
+
<description>Ericsson H.323 Server</description>
|
106
|
+
<param pos="0" name="service.vendor" value="Ericsson"/>
|
107
|
+
<param pos="1" name="service.product"/>
|
108
|
+
<param pos="2" name="service.version"/>
|
109
|
+
</fingerprint>
|
110
|
+
<fingerprint pattern="^0x8a000003\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
111
|
+
<description>Teldat H. Kruszynski, M. Cichocki Sp. J. H.323 Server</description>
|
112
|
+
<param pos="0" name="service.vendor" value="Teldat H. Kruszynski, M. Cichocki Sp. J."/>
|
113
|
+
<param pos="1" name="service.product"/>
|
114
|
+
<param pos="2" name="service.version"/>
|
115
|
+
</fingerprint>
|
116
|
+
<fingerprint pattern="^0xb4000[0-9a-f]00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
117
|
+
<description>British Telecommunications H.323 Server</description>
|
118
|
+
<param pos="0" name="service.vendor" value="British Telecommunications"/>
|
119
|
+
<param pos="1" name="service.product"/>
|
120
|
+
<param pos="2" name="service.version"/>
|
121
|
+
</fingerprint>
|
122
|
+
<fingerprint pattern="^0xb4001[0-9a-f]00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
123
|
+
<description>GPT Video Systems H.323 Server</description>
|
124
|
+
<param pos="0" name="service.vendor" value="GPT Video Systems"/>
|
125
|
+
<param pos="1" name="service.product"/>
|
126
|
+
<param pos="2" name="service.version"/>
|
127
|
+
</fingerprint>
|
128
|
+
<fingerprint pattern="^0xb4002000\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
129
|
+
<description>Marconi Communications H.323 Server</description>
|
130
|
+
<param pos="0" name="service.vendor" value="Marconi Communications"/>
|
131
|
+
<param pos="1" name="service.product"/>
|
132
|
+
<param pos="2" name="service.version"/>
|
133
|
+
</fingerprint>
|
134
|
+
<fingerprint pattern="^0xb4002100\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
135
|
+
<description>Indigo Active Vision Systems H.323 Server</description>
|
136
|
+
<param pos="0" name="service.vendor" value="Indigo Active Vision Systems"/>
|
137
|
+
<param pos="1" name="service.product"/>
|
138
|
+
<param pos="2" name="service.version"/>
|
139
|
+
</fingerprint>
|
140
|
+
<fingerprint pattern="^0xb4002200\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
141
|
+
<description>LiveWorks Limited H.323 Server</description>
|
142
|
+
<param pos="0" name="service.vendor" value="LiveWorks Limited"/>
|
143
|
+
<param pos="1" name="service.product"/>
|
144
|
+
<param pos="2" name="service.version"/>
|
145
|
+
</fingerprint>
|
146
|
+
<fingerprint pattern="^0xb4002300\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
147
|
+
<description>ATL Telecom Limited H.323 Server</description>
|
148
|
+
<param pos="0" name="service.vendor" value="ATL Telecom Limited"/>
|
149
|
+
<param pos="1" name="service.product"/>
|
150
|
+
<param pos="2" name="service.version"/>
|
151
|
+
</fingerprint>
|
152
|
+
<fingerprint pattern="^0xb4002a00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
153
|
+
<description>Network Alchemy Limited H.323 Server</description>
|
154
|
+
<param pos="0" name="service.vendor" value="Network Alchemy Limited"/>
|
155
|
+
<param pos="1" name="service.product"/>
|
156
|
+
<param pos="2" name="service.version"/>
|
157
|
+
</fingerprint>
|
158
|
+
<fingerprint pattern="^0xb4004200\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
159
|
+
<description>Motion Media Technology H.323 Server</description>
|
160
|
+
<param pos="0" name="service.vendor" value="Motion Media Technology"/>
|
161
|
+
<param pos="1" name="service.product"/>
|
162
|
+
<param pos="2" name="service.version"/>
|
163
|
+
</fingerprint>
|
164
|
+
<fingerprint pattern="^0xb4004400\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
165
|
+
<description>Data Connection H.323 Server</description>
|
166
|
+
<param pos="0" name="service.vendor" value="Data Connection"/>
|
167
|
+
<param pos="1" name="service.product"/>
|
168
|
+
<param pos="2" name="service.version"/>
|
169
|
+
</fingerprint>
|
170
|
+
<fingerprint pattern="^0xb4004500\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
171
|
+
<description>Westbay Engineers H.323 Server</description>
|
172
|
+
<param pos="0" name="service.vendor" value="Westbay Engineers"/>
|
173
|
+
<param pos="1" name="service.product"/>
|
174
|
+
<param pos="2" name="service.version"/>
|
175
|
+
</fingerprint>
|
176
|
+
<fingerprint pattern="^0xb4004600\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
177
|
+
<description>FarSite Communications H.323 Server</description>
|
178
|
+
<param pos="0" name="service.vendor" value="FarSite Communications"/>
|
179
|
+
<param pos="1" name="service.product"/>
|
180
|
+
<param pos="2" name="service.version"/>
|
181
|
+
</fingerprint>
|
182
|
+
<fingerprint pattern="^0xb4004900\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
183
|
+
<description>ImageCom H.323 Server</description>
|
184
|
+
<param pos="0" name="service.vendor" value="ImageCom"/>
|
185
|
+
<param pos="1" name="service.product"/>
|
186
|
+
<param pos="2" name="service.version"/>
|
187
|
+
</fingerprint>
|
188
|
+
<fingerprint pattern="^0xb4004d00\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
189
|
+
<description>Madge Networks H.323 Server</description>
|
190
|
+
<param pos="0" name="service.vendor" value="Madge Networks"/>
|
191
|
+
<param pos="1" name="service.product"/>
|
192
|
+
<param pos="2" name="service.version"/>
|
193
|
+
</fingerprint>
|
194
|
+
<fingerprint pattern="^0xb4005200\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
195
|
+
<description>Ridgeway Systems and Software H.323 Server</description>
|
196
|
+
<param pos="0" name="service.vendor" value="Ridgeway Systems and Software"/>
|
197
|
+
<param pos="1" name="service.product"/>
|
198
|
+
<param pos="2" name="service.version"/>
|
199
|
+
</fingerprint>
|
200
|
+
<fingerprint pattern="^0xb4005300\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
201
|
+
<description>SpliceCom H.323 Server</description>
|
202
|
+
<param pos="0" name="service.vendor" value="SpliceCom"/>
|
203
|
+
<param pos="1" name="service.product"/>
|
204
|
+
<param pos="2" name="service.version"/>
|
205
|
+
</fingerprint>
|
206
|
+
<fingerprint pattern="^0xb4005400\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
207
|
+
<description>TeleWare H.323 Server</description>
|
208
|
+
<param pos="0" name="service.vendor" value="TeleWare"/>
|
209
|
+
<param pos="1" name="service.product"/>
|
210
|
+
<param pos="2" name="service.version"/>
|
211
|
+
</fingerprint>
|
212
|
+
<fingerprint pattern="^0xb4005600\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
213
|
+
<description>Vegastream H.323 Server</description>
|
214
|
+
<param pos="0" name="service.vendor" value="Vegastream"/>
|
215
|
+
<param pos="1" name="service.product"/>
|
216
|
+
<param pos="2" name="service.version"/>
|
217
|
+
</fingerprint>
|
218
|
+
<fingerprint pattern="^0xb4006600\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
219
|
+
<description>Westell H.323 Server</description>
|
220
|
+
<param pos="0" name="service.vendor" value="Westell"/>
|
221
|
+
<param pos="1" name="service.product"/>
|
222
|
+
<param pos="2" name="service.version"/>
|
223
|
+
</fingerprint>
|
224
|
+
<fingerprint pattern="^0xb4006900\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
225
|
+
<description>ISDN Communications H.323 Server</description>
|
226
|
+
<param pos="0" name="service.vendor" value="ISDN Communications"/>
|
227
|
+
<param pos="1" name="service.product"/>
|
228
|
+
<param pos="2" name="service.version"/>
|
229
|
+
</fingerprint>
|
230
|
+
<fingerprint pattern="^0xb400c000\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
231
|
+
<description>Codian H.323 Server</description>
|
232
|
+
<param pos="0" name="service.vendor" value="Codian"/>
|
233
|
+
<param pos="1" name="service.product"/>
|
234
|
+
<param pos="2" name="service.version"/>
|
235
|
+
</fingerprint>
|
236
|
+
<fingerprint pattern="^0xb500000[02]\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
237
|
+
<description>Compression Labs H.323 Server</description>
|
238
|
+
<param pos="0" name="service.vendor" value="Compression Labs"/>
|
239
|
+
<param pos="1" name="service.product"/>
|
240
|
+
<param pos="2" name="service.version"/>
|
241
|
+
</fingerprint>
|
242
|
+
<fingerprint pattern="^0xb5000001\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
243
|
+
<description>PictureTel H.323 Server</description>
|
244
|
+
<param pos="0" name="service.vendor" value="PictureTel"/>
|
245
|
+
<param pos="1" name="service.product"/>
|
246
|
+
<param pos="2" name="service.version"/>
|
247
|
+
</fingerprint>
|
248
|
+
<fingerprint pattern="^0xb5000003\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
249
|
+
<description>VTEL H.323 Server</description>
|
250
|
+
<param pos="0" name="service.vendor" value="VTEL"/>
|
251
|
+
<param pos="1" name="service.product"/>
|
252
|
+
<param pos="2" name="service.version"/>
|
253
|
+
</fingerprint>
|
254
|
+
<fingerprint pattern="^0xb5000005\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
255
|
+
<description>ERIS H.323 Server</description>
|
256
|
+
<param pos="0" name="service.vendor" value="ERIS"/>
|
257
|
+
<param pos="1" name="service.product"/>
|
258
|
+
<param pos="2" name="service.version"/>
|
259
|
+
</fingerprint>
|
260
|
+
<fingerprint pattern="^0xb5000007\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
261
|
+
<description>AT&T Worldworx H.323 Server</description>
|
262
|
+
<param pos="0" name="service.vendor" value="AT&T Worldworx"/>
|
263
|
+
<param pos="1" name="service.product"/>
|
264
|
+
<param pos="2" name="service.version"/>
|
265
|
+
</fingerprint>
|
266
|
+
<fingerprint pattern="^0xb5000009\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
267
|
+
<description>VideoServer H.323 Server</description>
|
268
|
+
<param pos="0" name="service.vendor" value="VideoServer"/>
|
269
|
+
<param pos="1" name="service.product"/>
|
270
|
+
<param pos="2" name="service.version"/>
|
271
|
+
</fingerprint>
|
272
|
+
<fingerprint pattern="^0xb500000b\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
273
|
+
<description>3Com Corporation H.323 Server</description>
|
274
|
+
<param pos="0" name="service.vendor" value="3Com Corporation"/>
|
275
|
+
<param pos="1" name="service.product"/>
|
276
|
+
<param pos="2" name="service.version"/>
|
277
|
+
</fingerprint>
|
278
|
+
<fingerprint pattern="^0xb500000c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
279
|
+
<description>Clarent Corporation H.323 Server</description>
|
280
|
+
<param pos="0" name="service.vendor" value="Clarent Corporation"/>
|
281
|
+
<param pos="1" name="service.product"/>
|
282
|
+
<param pos="2" name="service.version"/>
|
283
|
+
</fingerprint>
|
284
|
+
<fingerprint pattern="^0xb500000d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
285
|
+
<description>Genesys Telecommunications Labs Inc H.323 Server</description>
|
286
|
+
<param pos="0" name="service.vendor" value="Genesys Telecommunications Labs Inc"/>
|
287
|
+
<param pos="1" name="service.product"/>
|
288
|
+
<param pos="2" name="service.version"/>
|
289
|
+
</fingerprint>
|
290
|
+
<fingerprint pattern="^0xb500000e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
291
|
+
<description>C-Phone Corporation H.323 Server</description>
|
292
|
+
<param pos="0" name="service.vendor" value="C-Phone Corporation"/>
|
293
|
+
<param pos="1" name="service.product"/>
|
294
|
+
<param pos="2" name="service.version"/>
|
295
|
+
</fingerprint>
|
296
|
+
<fingerprint pattern="^0xb500000f\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
297
|
+
<description>Science Dynamics Corporation H.323 Server</description>
|
298
|
+
<param pos="0" name="service.vendor" value="Science Dynamics Corporation"/>
|
299
|
+
<param pos="1" name="service.product"/>
|
300
|
+
<param pos="2" name="service.version"/>
|
301
|
+
</fingerprint>
|
302
|
+
<fingerprint pattern="^0xb5000010\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
303
|
+
<description>AT&T Starpoint H.323 Server</description>
|
304
|
+
<param pos="0" name="service.vendor" value="AT&T Starpoint"/>
|
305
|
+
<param pos="1" name="service.product"/>
|
306
|
+
<param pos="2" name="service.version"/>
|
307
|
+
</fingerprint>
|
308
|
+
<fingerprint pattern="^0xb5000011\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
309
|
+
<description>Netscape Conference H.323 Server</description>
|
310
|
+
<param pos="0" name="service.vendor" value="Netscape Conference"/>
|
311
|
+
<param pos="1" name="service.product"/>
|
312
|
+
<param pos="2" name="service.version"/>
|
313
|
+
</fingerprint>
|
314
|
+
<fingerprint pattern="^0xb5000012\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
315
|
+
<description>Cisco H.323 Server</description>
|
316
|
+
<param pos="0" name="service.vendor" value="Cisco"/>
|
317
|
+
<param pos="1" name="service.product"/>
|
318
|
+
<param pos="2" name="service.version"/>
|
319
|
+
</fingerprint>
|
320
|
+
<fingerprint pattern="^0xb5000013\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
321
|
+
<description>Cirilium, Inc. H.323 Server</description>
|
322
|
+
<param pos="0" name="service.vendor" value="Cirilium, Inc."/>
|
323
|
+
<param pos="1" name="service.product"/>
|
324
|
+
<param pos="2" name="service.version"/>
|
325
|
+
</fingerprint>
|
326
|
+
<fingerprint pattern="^0xb5000014\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
327
|
+
<description>Ascend Communications, Inc. H.323 Server</description>
|
328
|
+
<param pos="0" name="service.vendor" value="Ascend Communications, Inc."/>
|
329
|
+
<param pos="1" name="service.product"/>
|
330
|
+
<param pos="2" name="service.version"/>
|
331
|
+
</fingerprint>
|
332
|
+
<fingerprint pattern="^0xb5000015\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
333
|
+
<description>RADVision, Inc. H.323 Server</description>
|
334
|
+
<param pos="0" name="service.vendor" value="RADVision, Inc."/>
|
335
|
+
<param pos="1" name="service.product"/>
|
336
|
+
<param pos="2" name="service.version"/>
|
337
|
+
</fingerprint>
|
338
|
+
<fingerprint pattern="^0xb5000016\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
339
|
+
<description>Objective Communications H.323 Server</description>
|
340
|
+
<param pos="0" name="service.vendor" value="Objective Communications"/>
|
341
|
+
<param pos="1" name="service.product"/>
|
342
|
+
<param pos="2" name="service.version"/>
|
343
|
+
</fingerprint>
|
344
|
+
<fingerprint pattern="^0xb5000017\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
345
|
+
<description>VocalTec Communications, Inc. H.323 Server</description>
|
346
|
+
<param pos="0" name="service.vendor" value="VocalTec Communications, Inc."/>
|
347
|
+
<param pos="1" name="service.product"/>
|
348
|
+
<param pos="2" name="service.version"/>
|
349
|
+
</fingerprint>
|
350
|
+
<fingerprint pattern="^0xb5000018\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
351
|
+
<description>Serome Technology, Inc. H.323 Server</description>
|
352
|
+
<param pos="0" name="service.vendor" value="Serome Technology, Inc."/>
|
353
|
+
<param pos="1" name="service.product"/>
|
354
|
+
<param pos="2" name="service.version"/>
|
355
|
+
</fingerprint>
|
356
|
+
<fingerprint pattern="^0xb5000019\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
357
|
+
<description>Aspect Communications H.323 Server</description>
|
358
|
+
<param pos="0" name="service.vendor" value="Aspect Communications"/>
|
359
|
+
<param pos="1" name="service.product"/>
|
360
|
+
<param pos="2" name="service.version"/>
|
361
|
+
</fingerprint>
|
362
|
+
<fingerprint pattern="^0xb500001a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
363
|
+
<description>Cintech Tele-Management H.323 Server</description>
|
364
|
+
<param pos="0" name="service.vendor" value="Cintech Tele-Management"/>
|
365
|
+
<param pos="1" name="service.product"/>
|
366
|
+
<param pos="2" name="service.version"/>
|
367
|
+
</fingerprint>
|
368
|
+
<fingerprint pattern="^0xb500001b\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
369
|
+
<description>Philips Video Conferencing Systems H.323 Server</description>
|
370
|
+
<param pos="0" name="service.vendor" value="Philips Video Conferencing Systems"/>
|
371
|
+
<param pos="1" name="service.product"/>
|
372
|
+
<param pos="2" name="service.version"/>
|
373
|
+
</fingerprint>
|
374
|
+
<fingerprint pattern="^0xb500001c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
375
|
+
<description>Vertical Networks, Inc. H.323 Server</description>
|
376
|
+
<param pos="0" name="service.vendor" value="Vertical Networks, Inc."/>
|
377
|
+
<param pos="1" name="service.product"/>
|
378
|
+
<param pos="2" name="service.version"/>
|
379
|
+
</fingerprint>
|
380
|
+
<fingerprint pattern="^0xb500001d\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
381
|
+
<description>Syndeo Corp. H.323 Server</description>
|
382
|
+
<param pos="0" name="service.vendor" value="Syndeo Corp."/>
|
383
|
+
<param pos="1" name="service.product"/>
|
384
|
+
<param pos="2" name="service.version"/>
|
385
|
+
</fingerprint>
|
386
|
+
<fingerprint pattern="^0xb500001e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
387
|
+
<description>Telxon Corporation H.323 Server</description>
|
388
|
+
<param pos="0" name="service.vendor" value="Telxon Corporation"/>
|
389
|
+
<param pos="1" name="service.product"/>
|
390
|
+
<param pos="2" name="service.version"/>
|
391
|
+
</fingerprint>
|
392
|
+
<fingerprint pattern="^0xb500001f\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
393
|
+
<description>Network Equipment Technologies H.323 Server</description>
|
394
|
+
<param pos="0" name="service.vendor" value="Network Equipment Technologies"/>
|
395
|
+
<param pos="1" name="service.product"/>
|
396
|
+
<param pos="2" name="service.version"/>
|
397
|
+
</fingerprint>
|
398
|
+
<fingerprint pattern="^0xb5000020\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
399
|
+
<description>Pagoo, Inc. H.323 Server</description>
|
400
|
+
<param pos="0" name="service.vendor" value="Pagoo, Inc."/>
|
401
|
+
<param pos="1" name="service.product"/>
|
402
|
+
<param pos="2" name="service.version"/>
|
403
|
+
</fingerprint>
|
404
|
+
<fingerprint pattern="^0xb5000021\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
405
|
+
<description>General Dynamics H.323 Server</description>
|
406
|
+
<param pos="0" name="service.vendor" value="General Dynamics"/>
|
407
|
+
<param pos="1" name="service.product"/>
|
408
|
+
<param pos="2" name="service.version"/>
|
409
|
+
</fingerprint>
|
410
|
+
<fingerprint pattern="^0xb5000022\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
411
|
+
<description>Vanguard Managed Solutions H.323 Server</description>
|
412
|
+
<param pos="0" name="service.vendor" value="Vanguard Managed Solutions"/>
|
413
|
+
<param pos="1" name="service.product"/>
|
414
|
+
<param pos="2" name="service.version"/>
|
415
|
+
</fingerprint>
|
416
|
+
<fingerprint pattern="^0xb5000023\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
417
|
+
<description>TeleStream Technologies, Inc. H.323 Server</description>
|
418
|
+
<param pos="0" name="service.vendor" value="TeleStream Technologies, Inc."/>
|
419
|
+
<param pos="1" name="service.product"/>
|
420
|
+
<param pos="2" name="service.version"/>
|
421
|
+
</fingerprint>
|
422
|
+
<fingerprint pattern="^0xb5000024\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
423
|
+
<description>Spirent Communications H.323 Server</description>
|
424
|
+
<param pos="0" name="service.vendor" value="Spirent Communications"/>
|
425
|
+
<param pos="1" name="service.product"/>
|
426
|
+
<param pos="2" name="service.version"/>
|
427
|
+
</fingerprint>
|
428
|
+
<fingerprint pattern="^0xb5000025\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
429
|
+
<description>CrystalVoice Communications H.323 Server</description>
|
430
|
+
<param pos="0" name="service.vendor" value="CrystalVoice Communications"/>
|
431
|
+
<param pos="1" name="service.product"/>
|
432
|
+
<param pos="2" name="service.version"/>
|
433
|
+
</fingerprint>
|
434
|
+
<fingerprint pattern="^0xb5000026\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
435
|
+
<description>Xiph.org H.323 Server</description>
|
436
|
+
<param pos="0" name="service.vendor" value="Xiph.org"/>
|
437
|
+
<param pos="1" name="service.product"/>
|
438
|
+
<param pos="2" name="service.version"/>
|
439
|
+
</fingerprint>
|
440
|
+
<fingerprint pattern="^0xb5000027\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
441
|
+
<description>NACT Telecommunications H.323 Server</description>
|
442
|
+
<param pos="0" name="service.vendor" value="NACT Telecommunications"/>
|
443
|
+
<param pos="1" name="service.product"/>
|
444
|
+
<param pos="2" name="service.version"/>
|
445
|
+
</fingerprint>
|
446
|
+
<fingerprint pattern="^0xb5000028\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
447
|
+
<description>AudioCodes, Inc. H.323 Server</description>
|
448
|
+
<param pos="0" name="service.vendor" value="AudioCodes, Inc."/>
|
449
|
+
<param pos="1" name="service.product"/>
|
450
|
+
<param pos="2" name="service.version"/>
|
451
|
+
</fingerprint>
|
452
|
+
<fingerprint pattern="^0xb5000120\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
453
|
+
<description>AT&T - GBCS H.323 Server</description>
|
454
|
+
<param pos="0" name="service.vendor" value="AT&T - GBCS"/>
|
455
|
+
<param pos="1" name="service.product"/>
|
456
|
+
<param pos="2" name="service.version"/>
|
457
|
+
</fingerprint>
|
458
|
+
<fingerprint pattern="^0xb5000168\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
459
|
+
<description>Leadtek Research Inc. H.323 Server</description>
|
460
|
+
<param pos="0" name="service.vendor" value="Leadtek Research Inc."/>
|
461
|
+
<param pos="1" name="service.product"/>
|
462
|
+
<param pos="2" name="service.version"/>
|
463
|
+
</fingerprint>
|
464
|
+
<fingerprint pattern="^0xb5000247\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
465
|
+
<description>Lucent Technologies H.323 Server</description>
|
466
|
+
<param pos="0" name="service.vendor" value="Lucent Technologies"/>
|
467
|
+
<param pos="1" name="service.product"/>
|
468
|
+
<param pos="2" name="service.version"/>
|
469
|
+
</fingerprint>
|
470
|
+
<fingerprint pattern="^0xb500029a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
471
|
+
<description>Symbol Technologies Inc. H.323 Server</description>
|
472
|
+
<param pos="0" name="service.vendor" value="Symbol Technologies Inc."/>
|
473
|
+
<param pos="1" name="service.product"/>
|
474
|
+
<param pos="2" name="service.version"/>
|
475
|
+
</fingerprint>
|
476
|
+
<fingerprint pattern="^0xb5000378\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
477
|
+
<description>StarVox, Inc. H.323 Server</description>
|
478
|
+
<param pos="0" name="service.vendor" value="StarVox, Inc."/>
|
479
|
+
<param pos="1" name="service.product"/>
|
480
|
+
<param pos="2" name="service.version"/>
|
481
|
+
</fingerprint>
|
482
|
+
<fingerprint pattern="^0xb50003f7\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
483
|
+
<description>Inari Inc. H.323 Server</description>
|
484
|
+
<param pos="0" name="service.vendor" value="Inari Inc."/>
|
485
|
+
<param pos="1" name="service.product"/>
|
486
|
+
<param pos="2" name="service.version"/>
|
487
|
+
</fingerprint>
|
488
|
+
<fingerprint pattern="^0xb5000727\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
489
|
+
<description>Quintum Technologies, Inc. H.323 Server</description>
|
490
|
+
<param pos="0" name="service.vendor" value="Quintum Technologies, Inc."/>
|
491
|
+
<param pos="1" name="service.product"/>
|
492
|
+
<param pos="2" name="service.version"/>
|
493
|
+
</fingerprint>
|
494
|
+
<fingerprint pattern="^0xb5000918\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
495
|
+
<description>Netrix Corporation H.323 Server</description>
|
496
|
+
<param pos="0" name="service.vendor" value="Netrix Corporation"/>
|
497
|
+
<param pos="1" name="service.product"/>
|
498
|
+
<param pos="2" name="service.version"/>
|
499
|
+
</fingerprint>
|
500
|
+
<fingerprint pattern="^0xb500101e\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
501
|
+
<description>SysMaster Corporation H.323 Server</description>
|
502
|
+
<param pos="0" name="service.vendor" value="SysMaster Corporation"/>
|
503
|
+
<param pos="1" name="service.product"/>
|
504
|
+
<param pos="2" name="service.version"/>
|
505
|
+
</fingerprint>
|
506
|
+
<fingerprint pattern="^0xb5001a1a\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
507
|
+
<description>Alpha Telecom, Inc. U.S.A. H.323 Server</description>
|
508
|
+
<param pos="0" name="service.vendor" value="Alpha Telecom, Inc. U.S.A."/>
|
509
|
+
<param pos="1" name="service.product"/>
|
510
|
+
<param pos="2" name="service.version"/>
|
511
|
+
</fingerprint>
|
512
|
+
<fingerprint pattern="^0xb5002331\:(.*)\:Release\s[\s-]*(\d+\.+\d+\.*\d*).*$" flags="REG_ICASE">
|
513
|
+
<description>ViaVideo/PolyCom H.323 Server</description>
|
514
|
+
<example>0xb5002331:ViewStation 7.0:Release 7.5.4 - 04 Mar 2005</example>
|
515
|
+
<param pos="0" name="service.vendor" value="ViaVideo/PolyCom"/>
|
516
|
+
<param pos="1" name="service.product"/>
|
517
|
+
<param pos="2" name="service.version"/>
|
518
|
+
</fingerprint>
|
519
|
+
<fingerprint pattern="^0xb500301c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
520
|
+
<description>Congruency, Inc. H.323 Server</description>
|
521
|
+
<param pos="0" name="service.vendor" value="Congruency, Inc."/>
|
522
|
+
<param pos="1" name="service.product"/>
|
523
|
+
<param pos="2" name="service.version"/>
|
524
|
+
</fingerprint>
|
525
|
+
<fingerprint pattern="^0xb5003039\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
526
|
+
<description>MiBridge Inc. H.323 Server</description>
|
527
|
+
<param pos="0" name="service.vendor" value="MiBridge Inc."/>
|
528
|
+
<param pos="1" name="service.product"/>
|
529
|
+
<param pos="2" name="service.version"/>
|
530
|
+
</fingerprint>
|
531
|
+
<fingerprint pattern="^0xb5003838\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
532
|
+
<description>8x8 Inc. H.323 Server</description>
|
533
|
+
<param pos="0" name="service.vendor" value="8x8 Inc."/>
|
534
|
+
<param pos="1" name="service.product"/>
|
535
|
+
<param pos="2" name="service.version"/>
|
536
|
+
</fingerprint>
|
537
|
+
<fingerprint pattern="^0xb5004147\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
538
|
+
<description>Agere Systems H.323 Server</description>
|
539
|
+
<param pos="0" name="service.vendor" value="Agere Systems"/>
|
540
|
+
<param pos="1" name="service.product"/>
|
541
|
+
<param pos="2" name="service.version"/>
|
542
|
+
</fingerprint>
|
543
|
+
<fingerprint pattern="^0xb5004153\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
544
|
+
<description>Artisoft Inc. H.323 Server</description>
|
545
|
+
<param pos="0" name="service.vendor" value="Artisoft Inc."/>
|
546
|
+
<param pos="1" name="service.product"/>
|
547
|
+
<param pos="2" name="service.version"/>
|
548
|
+
</fingerprint>
|
549
|
+
<fingerprint pattern="^0xb5004156\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
550
|
+
<description>Avaya H.323 Server</description>
|
551
|
+
<param pos="0" name="service.vendor" value="Avaya"/>
|
552
|
+
<param pos="1" name="service.product"/>
|
553
|
+
<param pos="2" name="service.version"/>
|
554
|
+
</fingerprint>
|
555
|
+
<fingerprint pattern="^0xb5004242\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
556
|
+
<description>IBM H.323 Server</description>
|
557
|
+
<param pos="0" name="service.vendor" value="IBM"/>
|
558
|
+
<param pos="1" name="service.product"/>
|
559
|
+
<param pos="2" name="service.version"/>
|
560
|
+
</fingerprint>
|
561
|
+
<fingerprint pattern="^0xb5004257\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
562
|
+
<description>StreamComm H.323 Server</description>
|
563
|
+
<param pos="0" name="service.vendor" value="StreamComm"/>
|
564
|
+
<param pos="1" name="service.product"/>
|
565
|
+
<param pos="2" name="service.version"/>
|
566
|
+
</fingerprint>
|
567
|
+
<fingerprint pattern="^0xb500(?:4c54|600d)\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
568
|
+
<description>Lucent Technologies H.323 Server - variant 1</description>
|
569
|
+
<param pos="0" name="service.vendor" value="Lucent Technologies"/>
|
570
|
+
<param pos="1" name="service.product"/>
|
571
|
+
<param pos="2" name="service.version"/>
|
572
|
+
</fingerprint>
|
573
|
+
<fingerprint pattern="^0xb5004d47\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
574
|
+
<description>MediaGate H.323 Server</description>
|
575
|
+
<param pos="0" name="service.vendor" value="MediaGate"/>
|
576
|
+
<param pos="1" name="service.product"/>
|
577
|
+
<param pos="2" name="service.version"/>
|
578
|
+
</fingerprint>
|
579
|
+
<fingerprint pattern="^0xb5004e54\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
580
|
+
<description>Nortel Networks H.323 Server</description>
|
581
|
+
<param pos="0" name="service.vendor" value="Nortel Networks"/>
|
582
|
+
<param pos="1" name="service.product"/>
|
583
|
+
<param pos="2" name="service.version"/>
|
584
|
+
</fingerprint>
|
585
|
+
<fingerprint pattern="^0xb5005243\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
586
|
+
<description>Siemens Business Communication Systems H.323 Server</description>
|
587
|
+
<param pos="0" name="service.vendor" value="Siemens Business Communication Systems"/>
|
588
|
+
<param pos="1" name="service.product"/>
|
589
|
+
<param pos="2" name="service.version"/>
|
590
|
+
</fingerprint>
|
591
|
+
<fingerprint pattern="^0xb500534c\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
592
|
+
<description>Microsoft H.323 Server</description>
|
593
|
+
<param pos="0" name="service.vendor" value="Microsoft"/>
|
594
|
+
<param pos="1" name="service.product"/>
|
595
|
+
<param pos="2" name="service.version"/>
|
596
|
+
</fingerprint>
|
597
|
+
<fingerprint pattern="^0xb5008080\:(.*)\:.*?(\d*\.*\d*\.*\d*).*$" flags="REG_ICASE">
|
598
|
+
<description>Intel H.323 Server</description>
|
599
|
+
<param pos="0" name="service.vendor" value="Intel"/>
|
600
|
+
<param pos="1" name="service.product"/>
|
601
|
+
<param pos="2" name="service.version"/>
|
602
|
+
</fingerprint>
|
603
|
+
</fingerprints>
|