recog-intrigue 2.3.7 → 2.3.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/SECURITY.md +35 -0
- data/.gitignore +9 -0
- data/CONTRIBUTING.md +136 -37
- data/README.md +18 -16
- data/bin/recog_cleanup +16 -0
- data/bin/recog_standardize +30 -6
- data/cpe-remap.yaml +38 -1
- data/identifiers/README.md +9 -0
- data/identifiers/hw_device.txt +77 -0
- data/identifiers/hw_family.txt +96 -0
- data/identifiers/hw_product.txt +328 -0
- data/identifiers/os_architecture.txt +6 -6
- data/identifiers/os_device.txt +45 -3
- data/identifiers/os_family.txt +206 -41
- data/identifiers/os_product.txt +238 -17
- data/identifiers/service_family.txt +144 -57
- data/identifiers/service_product.txt +385 -83
- data/identifiers/vendor.txt +554 -68
- data/lib/recog/version.rb +1 -1
- data/requirements.txt +1 -1
- data/update_cpes.py +4 -1
- data/xml/apache_modules.xml +292 -5
- data/xml/apache_os.xml +41 -2
- data/xml/architecture.xml +11 -3
- data/xml/dns_versionbind.xml +200 -26
- data/xml/favicons.xml +1701 -0
- data/xml/ftp_banners.xml +256 -23
- data/xml/h323_callresp.xml +112 -12
- data/xml/hp_pjl_id.xml +47 -5
- data/xml/html_title.xml +1156 -70
- data/xml/http_cookies.xml +69 -11
- data/xml/http_servers.xml +1094 -107
- data/xml/http_wwwauth.xml +143 -27
- data/xml/imap_banners.xml +62 -13
- data/xml/ldap_searchresult.xml +81 -9
- data/xml/mdns_device-info_txt.xml +194 -17
- data/xml/mdns_workstation_txt.xml +4 -2
- data/xml/mysql_banners.xml +233 -40
- data/xml/mysql_error.xml +113 -6
- data/xml/nntp_banners.xml +10 -2
- data/xml/ntp_banners.xml +93 -9
- data/xml/operating_system.xml +90 -3
- data/xml/pop_banners.xml +87 -33
- data/xml/rsh_resp.xml +11 -2
- data/xml/rtsp_servers.xml +43 -23
- data/xml/sip_banners.xml +6 -11
- data/xml/sip_user_agents.xml +29 -2
- data/xml/smb_native_lm.xml +10 -2
- data/xml/smb_native_os.xml +80 -2
- data/xml/smtp_banners.xml +233 -13
- data/xml/smtp_debug.xml +6 -4
- data/xml/smtp_ehlo.xml +7 -5
- data/xml/smtp_expn.xml +13 -4
- data/xml/smtp_help.xml +23 -4
- data/xml/smtp_mailfrom.xml +5 -2
- data/xml/smtp_noop.xml +6 -5
- data/xml/smtp_quit.xml +5 -4
- data/xml/smtp_rcptto.xml +5 -2
- data/xml/smtp_rset.xml +4 -4
- data/xml/smtp_turn.xml +4 -4
- data/xml/smtp_vrfy.xml +14 -4
- data/xml/snmp_sysdescr.xml +741 -32
- data/xml/snmp_sysobjid.xml +47 -2
- data/xml/ssh_banners.xml +255 -81
- data/xml/telnet_banners.xml +503 -30
- data/xml/x11_banners.xml +26 -3
- data/xml/x509_issuers.xml +37 -13
- data/xml/x509_subjects.xml +214 -52
- metadata +12 -5
@@ -1,4 +1,4 @@
|
|
1
|
-
<?xml version=
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
2
|
<fingerprints matches="mdns.workstation.txt" protocol="mdns" database_type="service">
|
3
3
|
<!--
|
4
4
|
Fingerprint definitions that are matched against the string values in the
|
@@ -7,9 +7,11 @@
|
|
7
7
|
to the domain name for a server to respond with the record:
|
8
8
|
e.g. 'host-name._workstation._tcp.local'.
|
9
9
|
-->
|
10
|
+
|
10
11
|
<fingerprint pattern="^org\.freedesktop\.Avahi\.cookie=\S+$">
|
11
12
|
<description>Avahi</description>
|
12
13
|
<example>org.freedesktop.Avahi.cookie=1023312927</example>
|
13
14
|
<param pos="0" name="service.product" value="Avahi"/>
|
14
15
|
</fingerprint>
|
15
|
-
|
16
|
+
|
17
|
+
</fingerprints>
|
data/xml/mysql_banners.xml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<?xml version=
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
2
|
<fingerprints matches="mysql.banners" protocol="mysql" database_type="service" preference="0.75">
|
3
3
|
<!--
|
4
4
|
Upon successful connection to an MySQL/derivative TCP endpoint, provided
|
@@ -11,6 +11,7 @@
|
|
11
11
|
the TCP payload and the fingerprints below are used to match and extract
|
12
12
|
from this version.
|
13
13
|
-->
|
14
|
+
|
14
15
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}(?:[.-]\d{1,2})?(?:[.-]\d{1})?)(?:-m\d{1,2})?(?:-rc)?(?:-alpha)?(?:-beta)?(?:-gamma)?(?:-?max)?(?:-rs)?(?:-modified)?(?:-debug)?(?:-log)?$" flags="REG_ICASE">
|
15
16
|
<description>Oracle MySQL (common)</description>
|
16
17
|
<example service.version="4.1.20">4.1.20</example>
|
@@ -33,6 +34,7 @@
|
|
33
34
|
<param pos="0" name="service.product" value="MySQL"/>
|
34
35
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
35
36
|
</fingerprint>
|
37
|
+
|
36
38
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-m\d)?(?:-rc)?(?:-alpha)?(?:-beta)?-community(?:-max)?(?:-debug)?(?:-log)?(?:-debug)?$" flags="REG_ICASE">
|
37
39
|
<description>Oracle MySQL Community Edition</description>
|
38
40
|
<example service.version="5.0.95">5.0.95-community-log</example>
|
@@ -49,6 +51,7 @@
|
|
49
51
|
<param pos="0" name="service.edition" value="Community Edition"/>
|
50
52
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
51
53
|
</fingerprint>
|
54
|
+
|
52
55
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-alpha)?(?:-beta)?(?:-rc)?-community(?:-max)?-nt(?:-log)?(?:-debug)?(?:-log)?$" flags="REG_ICASE">
|
53
56
|
<description>Oracle MySQL Community Edition with Named Pipes (Windows)</description>
|
54
57
|
<example service.version="4.1.22">4.1.22-community-max-nt</example>
|
@@ -66,6 +69,7 @@
|
|
66
69
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
67
70
|
<param pos="0" name="os.family" value="Windows"/>
|
68
71
|
</fingerprint>
|
72
|
+
|
69
73
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-alpha)?(?:-beta)?(?:-rc)?(?:-gamma)?(?:-max)?-nt(?:-max)?(?:-log)?$" flags="REG_ICASE">
|
70
74
|
<description>Oracle MySQL with Named Pipes (Windows)</description>
|
71
75
|
<example service.version="5.0.18">5.0.18-nt</example>
|
@@ -81,6 +85,7 @@
|
|
81
85
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
82
86
|
<param pos="0" name="os.family" value="Windows"/>
|
83
87
|
</fingerprint>
|
88
|
+
|
84
89
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-cll$" flags="REG_ICASE">
|
85
90
|
<description>Oracle MySQL hosted on CPanel</description>
|
86
91
|
<example service.version="5.5.25a">5.5.25a-cll</example>
|
@@ -91,6 +96,7 @@
|
|
91
96
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
92
97
|
<param pos="0" name="os.family" value="Linux"/>
|
93
98
|
</fingerprint>
|
99
|
+
|
94
100
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-community-cll$" flags="REG_ICASE">
|
95
101
|
<description>Oracle MySQL Community hosted on CPanel</description>
|
96
102
|
<example service.version="5.0.91">5.0.91-community-cll</example>
|
@@ -103,6 +109,7 @@
|
|
103
109
|
<param pos="0" name="os.family" value="Linux"/>
|
104
110
|
<param pos="0" name="os.product" value="Linux"/>
|
105
111
|
</fingerprint>
|
112
|
+
|
106
113
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-cll-lve$" flags="REG_ICASE">
|
107
114
|
<description>Oracle MySQL on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
108
115
|
<example service.version="5.1.66">5.1.66-cll-lve</example>
|
@@ -115,6 +122,7 @@
|
|
115
122
|
<param pos="0" name="os.family" value="Linux"/>
|
116
123
|
<param pos="0" name="os.product" value="Linux"/>
|
117
124
|
</fingerprint>
|
125
|
+
|
118
126
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-community-cll-lve$" flags="REG_ICASE">
|
119
127
|
<description>Oracle MySQL Community on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
120
128
|
<example service.version="5.0.95">5.0.95-community-cll-lve</example>
|
@@ -128,6 +136,7 @@
|
|
128
136
|
<param pos="0" name="os.family" value="Linux"/>
|
129
137
|
<param pos="0" name="os.product" value="Linux"/>
|
130
138
|
</fingerprint>
|
139
|
+
|
131
140
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})-0ubuntu0.(\d\d\.\d\d)[.\d]*(?:-log)?$">
|
132
141
|
<description>Oracle MySQL on Ubuntu</description>
|
133
142
|
<example service.version="5.1.66" os.version="10.04">5.1.66-0ubuntu0.10.04.3-log</example>
|
@@ -143,6 +152,7 @@
|
|
143
152
|
<param pos="2" name="os.version"/>
|
144
153
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:{os.version}"/>
|
145
154
|
</fingerprint>
|
155
|
+
|
146
156
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})-(?:Debian_)?\dubuntu(\d{1,2}\.\d\d)[.\d]*(?:-log)?$">
|
147
157
|
<description>Oracle MySQL on Ubuntu - Debian string variant</description>
|
148
158
|
<example service.version="5.0.22" os.version="6.06">5.0.22-Debian_0ubuntu6.06.14-log</example>
|
@@ -158,6 +168,7 @@
|
|
158
168
|
<param pos="2" name="os.version"/>
|
159
169
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:{os.version}"/>
|
160
170
|
</fingerprint>
|
171
|
+
|
161
172
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})[-_](?:Ubuntu[_-])?(?:Debian[_-])?\d{1,2}(?:~exp1)?ubuntu\d{1,2}(?:\.\d)?(?:-log)?$" flags="REG_ICASE">
|
162
173
|
<description>Oracle MySQL on Ubuntu where trailing digits aren't OS version</description>
|
163
174
|
<example service.version="5.0.45">5.0.45-Debian_1ubuntu3.4</example>
|
@@ -177,6 +188,7 @@
|
|
177
188
|
<param pos="0" name="os.product" value="Linux"/>
|
178
189
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:-"/>
|
179
190
|
</fingerprint>
|
191
|
+
|
180
192
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb\.sury\.org~precise\+\d(?:-log)?$">
|
181
193
|
<description>Oracle MySQL on Ubuntu 12.04 (Precise Pangolin) packaged by deb.sury.org</description>
|
182
194
|
<example service.version="5.6.19-1">5.6.19-1+deb.sury.org~precise+1</example>
|
@@ -192,6 +204,7 @@
|
|
192
204
|
<param pos="0" name="os.version" value="12.04"/>
|
193
205
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.04"/>
|
194
206
|
</fingerprint>
|
207
|
+
|
195
208
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb\.sury\.org~trusty\+\d(?:-log)?$">
|
196
209
|
<description>Oracle MySQL on Ubuntu 14.04 (Trusty Tahr) packaged by deb.sury.org</description>
|
197
210
|
<example service.version="5.6.21-1">5.6.21-1+deb.sury.org~trusty+1</example>
|
@@ -207,6 +220,70 @@
|
|
207
220
|
<param pos="0" name="os.version" value="14.04"/>
|
208
221
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.04"/>
|
209
222
|
</fingerprint>
|
223
|
+
|
224
|
+
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb8u1(?:-log)?$">
|
225
|
+
<description>Oracle MySQL on Debian 8.1 (jessie)</description>
|
226
|
+
<example service.version="5.5.62-0">5.5.62-0+deb8u1</example>
|
227
|
+
<example service.version="5.5.49-0">5.5.49-0+deb8u1-log</example>
|
228
|
+
<param pos="1" name="service.version"/>
|
229
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
230
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
231
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
232
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
233
|
+
<param pos="0" name="os.vendor" value="Debian"/>
|
234
|
+
<param pos="0" name="os.family" value="Linux"/>
|
235
|
+
<param pos="0" name="os.product" value="Linux"/>
|
236
|
+
<param pos="0" name="os.version" value="8.1"/>
|
237
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:8.1"/>
|
238
|
+
</fingerprint>
|
239
|
+
|
240
|
+
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+\d?jessie\d?(?:-log)?$">
|
241
|
+
<description>Oracle MySQL on Debian 8.0 (jessie)</description>
|
242
|
+
<example service.version="5.6.31-1">5.6.31-1+jessie</example>
|
243
|
+
<param pos="1" name="service.version"/>
|
244
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
245
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
246
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
247
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
248
|
+
<param pos="0" name="os.vendor" value="Debian"/>
|
249
|
+
<param pos="0" name="os.family" value="Linux"/>
|
250
|
+
<param pos="0" name="os.product" value="Linux"/>
|
251
|
+
<param pos="0" name="os.version" value="8.0"/>
|
252
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:8.0"/>
|
253
|
+
</fingerprint>
|
254
|
+
|
255
|
+
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb7u2(?:-log)?$">
|
256
|
+
<description>Oracle MySQL on Debian 7.2 (wheezy)</description>
|
257
|
+
<example service.version="5.5.60-0">5.5.60-0+deb7u2</example>
|
258
|
+
<example service.version="5.5.60-0">5.5.60-0+deb7u2-log</example>
|
259
|
+
<param pos="1" name="service.version"/>
|
260
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
261
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
262
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
263
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
264
|
+
<param pos="0" name="os.vendor" value="Debian"/>
|
265
|
+
<param pos="0" name="os.family" value="Linux"/>
|
266
|
+
<param pos="0" name="os.product" value="Linux"/>
|
267
|
+
<param pos="0" name="os.version" value="7.2"/>
|
268
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.2"/>
|
269
|
+
</fingerprint>
|
270
|
+
|
271
|
+
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb7u1(?:-log)?$">
|
272
|
+
<description>Oracle MySQL on Debian 7.1 (wheezy)</description>
|
273
|
+
<example service.version="5.5.60-0">5.5.60-0+deb7u1</example>
|
274
|
+
<example service.version="5.5.60-0">5.5.60-0+deb7u1-log</example>
|
275
|
+
<param pos="1" name="service.version"/>
|
276
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
277
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
278
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
279
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
280
|
+
<param pos="0" name="os.vendor" value="Debian"/>
|
281
|
+
<param pos="0" name="os.family" value="Linux"/>
|
282
|
+
<param pos="0" name="os.product" value="Linux"/>
|
283
|
+
<param pos="0" name="os.version" value="7.1"/>
|
284
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.1"/>
|
285
|
+
</fingerprint>
|
286
|
+
|
210
287
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+(?:squeeze\d|deb6u1)(?:-log)?$">
|
211
288
|
<description>Oracle MySQL on Debian 6.0 (squeeze)</description>
|
212
289
|
<example service.version="5.1.66-0">5.1.66-0+squeeze1</example>
|
@@ -223,10 +300,12 @@
|
|
223
300
|
<param pos="0" name="os.version" value="6.0"/>
|
224
301
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:6.0"/>
|
225
302
|
</fingerprint>
|
226
|
-
|
303
|
+
|
304
|
+
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+\d?wheezy\d?(?:-log)?$">
|
227
305
|
<description>Oracle MySQL on Debian 7.0 (wheezy)</description>
|
228
306
|
<example service.version="5.5.41-0">5.5.41-0+wheezy1</example>
|
229
307
|
<example service.version="5.5.35-0">5.5.35-0+wheezy1-log</example>
|
308
|
+
<example service.version="5.5.59-25.23">5.5.59-25.23+1wheezy</example>
|
230
309
|
<param pos="1" name="service.version"/>
|
231
310
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
232
311
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -238,6 +317,7 @@
|
|
238
317
|
<param pos="0" name="os.version" value="7.0"/>
|
239
318
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.0"/>
|
240
319
|
</fingerprint>
|
320
|
+
|
241
321
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+lenny\d*(?:\+spu\d)?(?:-log)?$">
|
242
322
|
<description>Oracle MySQL on Debian 5.0 (lenny)</description>
|
243
323
|
<example service.version="5.0.51a-24">5.0.51a-24+lenny1-log</example>
|
@@ -254,6 +334,7 @@
|
|
254
334
|
<param pos="0" name="os.version" value="5.0"/>
|
255
335
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:5.0"/>
|
256
336
|
</fingerprint>
|
337
|
+
|
257
338
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d~bpo50" flags="REG_ICASE">
|
258
339
|
<description>Oracle MySQL Backport on Debian 5.0 (lenny)</description>
|
259
340
|
<example service.version="5.1.49">5.1.49-3~bpo50+1-log</example>
|
@@ -268,6 +349,7 @@
|
|
268
349
|
<param pos="0" name="os.version" value="5.0"/>
|
269
350
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:5.0"/>
|
270
351
|
</fingerprint>
|
352
|
+
|
271
353
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}).*~?bpo40(?:\+\d)?(?:-log)?$" flags="REG_ICASE">
|
272
354
|
<description>Oracle MySQL Backport on Debian 4.0 (etch)</description>
|
273
355
|
<example service.version="5.0.51a">5.0.51a-24+lenny2~bpo40+1-log</example>
|
@@ -282,6 +364,7 @@
|
|
282
364
|
<param pos="0" name="os.version" value="4.0"/>
|
283
365
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:4.0"/>
|
284
366
|
</fingerprint>
|
367
|
+
|
285
368
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Debian.*~?bpo31(?:\+\d)?(?:-log)?$" flags="REG_ICASE">
|
286
369
|
<description>Oracle MySQL Backport on Debian 3.1 (sarge)</description>
|
287
370
|
<example service.version="5.0.32">5.0.32-Debian_7etch5~bpo31+1-log</example>
|
@@ -296,7 +379,9 @@
|
|
296
379
|
<param pos="0" name="os.version" value="3.1"/>
|
297
380
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:3.1"/>
|
298
381
|
</fingerprint>
|
382
|
+
|
299
383
|
<!-- FIXFIX -->
|
384
|
+
|
300
385
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Debian_\d~?bpo\.?\d" flags="REG_ICASE">
|
301
386
|
<description>Oracle MySQL Backport on Debian</description>
|
302
387
|
<example service.version="5.0.22">5.0.22-Debian_2bpo1</example>
|
@@ -311,6 +396,7 @@
|
|
311
396
|
<param pos="0" name="os.product" value="Linux"/>
|
312
397
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
313
398
|
</fingerprint>
|
399
|
+
|
314
400
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})-Debian_\d?etch\d*(?:-log)?$">
|
315
401
|
<description>Oracle MySQL on Debian 4.0 (etch)</description>
|
316
402
|
<example service.version="4.1.11">4.1.11-Debian_etch1-log</example>
|
@@ -326,6 +412,7 @@
|
|
326
412
|
<param pos="0" name="os.version" value="4.0"/>
|
327
413
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:4.0"/>
|
328
414
|
</fingerprint>
|
415
|
+
|
329
416
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})[_-]Debian[_-]\d{1,2}sarge\d*(?:-log)?$">
|
330
417
|
<description>Oracle MySQL on Debian 3.1 (sarge)</description>
|
331
418
|
<example service.version="4.0.24">4.0.24_Debian-10sarge2-log</example>
|
@@ -341,6 +428,7 @@
|
|
341
428
|
<param pos="0" name="os.version" value="3.1"/>
|
342
429
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:3.1"/>
|
343
430
|
</fingerprint>
|
431
|
+
|
344
432
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})[_-]Debian[_-]\d{1,2}woody\d*(?:-log)?$">
|
345
433
|
<description>Oracle MySQL on Debian 3.0 (woody)</description>
|
346
434
|
<example service.version="4.0.24">4.0.24_Debian-4woody1</example>
|
@@ -355,6 +443,7 @@
|
|
355
443
|
<param pos="0" name="os.version" value="3.0"/>
|
356
444
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:3.0"/>
|
357
445
|
</fingerprint>
|
446
|
+
|
358
447
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:[_-]\d{8})?[_-]Debian[_-]\d{1,2}(?:-log)?$" flags="REG_ICASE">
|
359
448
|
<description>Oracle MySQL on Debian (Generic match)</description>
|
360
449
|
<example service.version="4.0.23">4.0.23_Debian-3-log</example>
|
@@ -369,6 +458,7 @@
|
|
369
458
|
<param pos="0" name="os.product" value="Linux"/>
|
370
459
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
371
460
|
</fingerprint>
|
461
|
+
|
372
462
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})(?:-rc)?[_-]Debian[_-]\d{1,2}~ppa\d(?:-log)?$">
|
373
463
|
<description>Oracle MySQL on Debian (Generic match) using PPA</description>
|
374
464
|
<example service.version="5.1.22">5.1.22-rc-Debian_2~ppa5-log</example>
|
@@ -382,6 +472,7 @@
|
|
382
472
|
<param pos="0" name="os.product" value="Linux"/>
|
383
473
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
384
474
|
</fingerprint>
|
475
|
+
|
385
476
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-\d{1,2})?(?:-Debian)?(?:-Dotdeb)?[-~_\d\.]+dotdeb\.\d(?:-log)?$" flags="REG_ICASE">
|
386
477
|
<description>Oracle MySQL packaged by DotDeb.org</description>
|
387
478
|
<example service.version="5.1.54">5.1.54-0.dotdeb.0</example>
|
@@ -398,6 +489,7 @@
|
|
398
489
|
<param pos="0" name="os.product" value="Linux"/>
|
399
490
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
400
491
|
</fingerprint>
|
492
|
+
|
401
493
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-alpha)?(?:-beta)?(?:-gamma)?(?:-rc)?-standard(?:-log)?$" flags="REG_ICASE">
|
402
494
|
<description>Oracle MySQL Standard Edition</description>
|
403
495
|
<example service.version="5.0.13">5.0.13-rc-standard-log</example>
|
@@ -410,6 +502,7 @@
|
|
410
502
|
<param pos="0" name="service.edition" value="Standard Edition"/>
|
411
503
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
412
504
|
</fingerprint>
|
505
|
+
|
413
506
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-pro(?:-gpl)?-nt(?:-log)?$" flags="REG_ICASE">
|
414
507
|
<description>Oracle MySQL Commercial Edition with Named Pipes (Windows)</description>
|
415
508
|
<example service.version="5.0.24">5.0.24-pro-nt</example>
|
@@ -423,6 +516,7 @@
|
|
423
516
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
424
517
|
<param pos="0" name="os.family" value="Windows"/>
|
425
518
|
</fingerprint>
|
519
|
+
|
426
520
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-pro(?:-gpl)?(?:-cert)?(?:-log)?$" flags="REG_ICASE">
|
427
521
|
<description>Oracle MySQL Commercial Edition</description>
|
428
522
|
<example service.version="4.1.23">4.1.23-pro-gpl-log</example>
|
@@ -434,6 +528,7 @@
|
|
434
528
|
<param pos="0" name="service.edition" value="Commercial Edition"/>
|
435
529
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
436
530
|
</fingerprint>
|
531
|
+
|
437
532
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}sp1)" flags="REG_ICASE">
|
438
533
|
<description>Oracle MySQL Enterprise Edition</description>
|
439
534
|
<example service.version="5.0.82sp1">5.0.82sp1</example>
|
@@ -445,6 +540,7 @@
|
|
445
540
|
<param pos="0" name="service.edition" value="Enterprise Edition"/>
|
446
541
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
447
542
|
</fingerprint>
|
543
|
+
|
448
544
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-enterprise-nt" flags="REG_ICASE">
|
449
545
|
<description>Oracle MySQL Enterprise Edition with Named Pipes (Windows)</description>
|
450
546
|
<example service.version="5.0.84">5.0.84-enterprise-nt</example>
|
@@ -457,6 +553,7 @@
|
|
457
553
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
458
554
|
<param pos="0" name="os.family" value="Windows"/>
|
459
555
|
</fingerprint>
|
556
|
+
|
460
557
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-rc)?-enterprise" flags="REG_ICASE">
|
461
558
|
<description>Oracle MySQL Enterprise Edition - variant 1</description>
|
462
559
|
<example service.version="5.1.26">5.1.26-rc-enterprise-gpl-log</example>
|
@@ -468,6 +565,7 @@
|
|
468
565
|
<param pos="0" name="service.edition" value="Enterprise Edition"/>
|
469
566
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
470
567
|
</fingerprint>
|
568
|
+
|
471
569
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-ndb-\d\.\d{1,2}\.[a-f\d]{1,3})" flags="REG_ICASE">
|
472
570
|
<description>Oracle MySQL Cluster Edition - nbd variant</description>
|
473
571
|
<example service.version="5.1.30-ndb-6.3.20">5.1.30-ndb-6.3.20-cluster-gpl-log</example>
|
@@ -479,6 +577,7 @@
|
|
479
577
|
<param pos="0" name="service.edition" value="Cluster Edition"/>
|
480
578
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
481
579
|
</fingerprint>
|
580
|
+
|
482
581
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-CLUSTERS?(?:-log)?$" flags="REG_ICASE">
|
483
582
|
<description>Oracle MySQL Cluster Edition</description>
|
484
583
|
<example service.version="4.1.21">4.1.21-CLUSTERS</example>
|
@@ -490,6 +589,7 @@
|
|
490
589
|
<param pos="0" name="service.edition" value="Cluster Edition"/>
|
491
590
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
492
591
|
</fingerprint>
|
592
|
+
|
493
593
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-classic(?:-log)?" flags="REG_ICASE">
|
494
594
|
<description>Oracle MySQL Classic Edition</description>
|
495
595
|
<example service.version="5.0.86">5.0.86-classic-log</example>
|
@@ -500,8 +600,11 @@
|
|
500
600
|
<param pos="0" name="service.edition" value="Classic Edition"/>
|
501
601
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
502
602
|
</fingerprint>
|
603
|
+
|
503
604
|
<!-- Linux only - http://www.percona.com/services/mysql-support/supported-platforms -->
|
605
|
+
|
504
606
|
<!-- Build list - http://www.percona.com/doc/percona-server/5.1/release-notes/release-notes_index.html -->
|
607
|
+
|
505
608
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-?rel\d\d\.\d)(?:-log)?" flags="REG_ICASE">
|
506
609
|
<description>Percona Server (MySQL fork) match w/ 'rel'</description>
|
507
610
|
<example service.version="5.1.57-rel12.8">5.1.57-rel12.8</example>
|
@@ -515,6 +618,7 @@
|
|
515
618
|
<param pos="0" name="os.family" value="Linux"/>
|
516
619
|
<param pos="0" name="os.product" value="Linux"/>
|
517
620
|
</fingerprint>
|
621
|
+
|
518
622
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d{1,2}-rel\d\d\.\d{1,2}(?:-log)?$" flags="REG_ICASE">
|
519
623
|
<description>Percona Server (MySQL fork) match w/ 'rel' variant 1</description>
|
520
624
|
<example service.version="5.6.17">5.6.17-65.0-rel65.0</example>
|
@@ -526,6 +630,7 @@
|
|
526
630
|
<param pos="0" name="os.family" value="Linux"/>
|
527
631
|
<param pos="0" name="os.product" value="Linux"/>
|
528
632
|
</fingerprint>
|
633
|
+
|
529
634
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-(?:rc)?percona" flags="REG_ICASE">
|
530
635
|
<description>Percona Server (MySQL fork) w/ percona in banner</description>
|
531
636
|
<example service.version="5.1.50">5.1.50-percona</example>
|
@@ -539,6 +644,7 @@
|
|
539
644
|
<param pos="0" name="os.family" value="Linux"/>
|
540
645
|
<param pos="0" name="os.product" value="Linux"/>
|
541
646
|
</fingerprint>
|
647
|
+
|
542
648
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d{1,2}(?:-\d\d)?(?:-log)?$" flags="REG_ICASE">
|
543
649
|
<description>Percona Server (MySQL fork) (just version number match)</description>
|
544
650
|
<example service.version="5.1.73">5.1.73-14.12</example>
|
@@ -552,6 +658,7 @@
|
|
552
658
|
<param pos="0" name="os.family" value="Linux"/>
|
553
659
|
<param pos="0" name="os.product" value="Linux"/>
|
554
660
|
</fingerprint>
|
661
|
+
|
555
662
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-rc\d\d\.\d(?:-log)?$" flags="REG_ICASE">
|
556
663
|
<description>Percona Server (MySQL fork) match w/ 'rc'</description>
|
557
664
|
<example service.version="5.6.13">5.6.13-rc60.6</example>
|
@@ -564,6 +671,7 @@
|
|
564
671
|
<param pos="0" name="os.family" value="Linux"/>
|
565
672
|
<param pos="0" name="os.product" value="Linux"/>
|
566
673
|
</fingerprint>
|
674
|
+
|
567
675
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.trusty(?:-log)?$" flags="REG_ICASE">
|
568
676
|
<description>Percona Server (MySQL fork) on Ubuntu 14.04 (Trusty Tahr)</description>
|
569
677
|
<example service.version="5.6.17">5.6.17-65.0-583.trusty</example>
|
@@ -578,6 +686,7 @@
|
|
578
686
|
<param pos="0" name="os.version" value="14.04"/>
|
579
687
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.04"/>
|
580
688
|
</fingerprint>
|
689
|
+
|
581
690
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.saucy(?:-log)?$" flags="REG_ICASE">
|
582
691
|
<description>Percona Server (MySQL fork) on Ubuntu 13.10 (Saucy Salamander)</description>
|
583
692
|
<example service.version="5.6.17">5.6.17-65.0-587.saucy</example>
|
@@ -592,6 +701,7 @@
|
|
592
701
|
<param pos="0" name="os.version" value="13.10"/>
|
593
702
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:13.10"/>
|
594
703
|
</fingerprint>
|
704
|
+
|
595
705
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.quantal(?:-log)?$" flags="REG_ICASE">
|
596
706
|
<description>Percona Server (MySQL fork) on Ubuntu 12.10 (Quantal Quetzal)</description>
|
597
707
|
<example service.version="5.6.16">5.6.16-64.2-569.quantal-log</example>
|
@@ -606,8 +716,9 @@
|
|
606
716
|
<param pos="0" name="os.version" value="12.10"/>
|
607
717
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.10"/>
|
608
718
|
</fingerprint>
|
719
|
+
|
609
720
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.precise(?:-log)?$" flags="REG_ICASE">
|
610
|
-
<description>Percona Server (MySQL fork) on Ubuntu 12.04
|
721
|
+
<description>Percona Server (MySQL fork) on Ubuntu 12.04 (Precise Pangolin)</description>
|
611
722
|
<example service.version="5.6.16">5.6.16-64.2-569.precise-log</example>
|
612
723
|
<param pos="1" name="service.version"/>
|
613
724
|
<param pos="0" name="service.vendor" value="Percona"/>
|
@@ -620,6 +731,7 @@
|
|
620
731
|
<param pos="0" name="os.version" value="12.04"/>
|
621
732
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.04"/>
|
622
733
|
</fingerprint>
|
734
|
+
|
623
735
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.wheezy(?:-log)?$" flags="REG_ICASE">
|
624
736
|
<description>Percona Server (MySQL fork) on Debian 7.0 (wheezy)</description>
|
625
737
|
<example service.version="5.5.36">5.5.36-34.2-648.wheezy-log</example>
|
@@ -634,6 +746,7 @@
|
|
634
746
|
<param pos="0" name="os.version" value="7.0"/>
|
635
747
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.0"/>
|
636
748
|
</fingerprint>
|
749
|
+
|
637
750
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d-\d{3}\.squeeze(?:-log)?$" flags="REG_ICASE">
|
638
751
|
<description>Percona Server (MySQL fork) on Debian 6.0 (squeeze)</description>
|
639
752
|
<example service.version="5.5.36">5.5.36-34.2-648.squeeze</example>
|
@@ -648,6 +761,7 @@
|
|
648
761
|
<param pos="0" name="os.version" value="6.0"/>
|
649
762
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:6.0"/>
|
650
763
|
</fingerprint>
|
764
|
+
|
651
765
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-nmm" flags="REG_ICASE">
|
652
766
|
<description>Oracle MySQL (nmm variant)</description>
|
653
767
|
<example service.version="4.0.27">4.0.27-nmm1-log</example>
|
@@ -658,6 +772,7 @@
|
|
658
772
|
<param pos="0" name="service.product" value="MySQL"/>
|
659
773
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
660
774
|
</fingerprint>
|
775
|
+
|
661
776
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-nightly-\d{8}(?:-log)?$" flags="REG_ICASE">
|
662
777
|
<description>Oracle MySQL nightly build</description>
|
663
778
|
<example service.version="3.23.59">3.23.59-nightly-20050301-log</example>
|
@@ -667,6 +782,7 @@
|
|
667
782
|
<param pos="0" name="service.product" value="MySQL"/>
|
668
783
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
669
784
|
</fingerprint>
|
785
|
+
|
670
786
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-SERVER" flags="REG_ICASE">
|
671
787
|
<description>Oracle MySQL (SERVER variant)</description>
|
672
788
|
<example service.version="5.1.30">5.1.30-SERVER-104</example>
|
@@ -676,6 +792,7 @@
|
|
676
792
|
<param pos="0" name="service.product" value="MySQL"/>
|
677
793
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
678
794
|
</fingerprint>
|
795
|
+
|
679
796
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-ISPrime" flags="REG_ICASE">
|
680
797
|
<description>Oracle MySQL (ISPrime variant)</description>
|
681
798
|
<example service.version="4.0.15a">4.0.15a-ISPrime</example>
|
@@ -685,6 +802,7 @@
|
|
685
802
|
<param pos="0" name="service.product" value="MySQL"/>
|
686
803
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
687
804
|
</fingerprint>
|
805
|
+
|
688
806
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-rc-\d\.\d{1,2}\.[a-f\d]{1,3}" flags="REG_ICASE">
|
689
807
|
<description>Oracle MySQL possibly Debian specific</description>
|
690
808
|
<example service.version="5.1.26">5.1.26-rc-5.1.26rc-log</example>
|
@@ -694,6 +812,7 @@
|
|
694
812
|
<param pos="0" name="service.product" value="MySQL"/>
|
695
813
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
696
814
|
</fingerprint>
|
815
|
+
|
697
816
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-ius(?:-log)?$" flags="REG_ICASE">
|
698
817
|
<description>Oracle MySQL packaged for RHEL/CentOS by IUS</description>
|
699
818
|
<example service.version="5.1.66">5.1.66-ius-log</example>
|
@@ -705,6 +824,7 @@
|
|
705
824
|
<param pos="0" name="os.family" value="Linux"/>
|
706
825
|
<param pos="0" name="os.product" value="Linux"/>
|
707
826
|
</fingerprint>
|
827
|
+
|
708
828
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})[\.-]d\d{1,2}-ourdelta\d{0,2}(?:-log)?$" flags="REG_ICASE">
|
709
829
|
<description>Oracle MySQL tweaked and packaged by OurDelta</description>
|
710
830
|
<example service.version="5.0.67">5.0.67.d7-ourdelta-log</example>
|
@@ -717,6 +837,7 @@
|
|
717
837
|
<param pos="0" name="os.family" value="Linux"/>
|
718
838
|
<param pos="0" name="os.product" value="Linux"/>
|
719
839
|
</fingerprint>
|
840
|
+
|
720
841
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Alibaba(?:-rds)?-\d{6}(?:-log)?$" flags="REG_ICASE">
|
721
842
|
<description>Oracle MySQL Alibaba build? distro? Aliyun.com hosted?</description>
|
722
843
|
<example service.version="5.1.61">5.1.61-Alibaba-121011-log</example>
|
@@ -727,24 +848,21 @@
|
|
727
848
|
<param pos="0" name="service.product" value="MySQL"/>
|
728
849
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
729
850
|
</fingerprint>
|
851
|
+
|
730
852
|
<!--
|
731
853
|
MariaDB Fingerprinting note: MariaDB uses version numbers in the same range
|
732
854
|
as MySQL all the way through the 5.5.x family. Banners look like this:
|
733
|
-
|
734
855
|
5.5.34-MariaDB-cll-lve
|
735
856
|
5.5.31-MariaDB-1~squeeze-log
|
736
|
-
|
737
857
|
After 5.5.x they jumped to 10.x.x. Banners for the 10.x.x family will have
|
738
858
|
MySQL version that the code is based off of first, and then the MariaDB
|
739
859
|
version number will follow:
|
740
|
-
|
741
860
|
5.5.5-10.0.15-MariaDB-cll-lve
|
742
861
|
5.5.5-10.0.15-MariaDB-1~squeeze-log
|
743
|
-
|
744
862
|
In the banners above, 10.0.15 is the accurate version number.
|
745
|
-
|
746
863
|
Reference: https://mariadb.org/explanation-on-mariadb-10-0/
|
747
864
|
-->
|
865
|
+
|
748
866
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB(?:-log)?-cll-lve$" flags="REG_ICASE">
|
749
867
|
<description>MariaDB MariaDB on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
750
868
|
<example service.version="5.5.34">5.5.34-MariaDB-cll-lve</example>
|
@@ -759,6 +877,7 @@
|
|
759
877
|
<param pos="0" name="os.family" value="Linux"/>
|
760
878
|
<param pos="0" name="os.product" value="Linux"/>
|
761
879
|
</fingerprint>
|
880
|
+
|
762
881
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~jessie(?:-log)?$" flags="REG_ICASE">
|
763
882
|
<description>MariaDB MariaDB on Debian 8.0 (jessie)</description>
|
764
883
|
<example service.version="5.5.37">5.5.37-MariaDB-1~jessie-log</example>
|
@@ -775,6 +894,7 @@
|
|
775
894
|
<param pos="0" name="os.version" value="8.0"/>
|
776
895
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:8.0"/>
|
777
896
|
</fingerprint>
|
897
|
+
|
778
898
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~wheezy(?:-log)?$" flags="REG_ICASE">
|
779
899
|
<description>MariaDB MariaDB on Debian 7.0 (wheezy)</description>
|
780
900
|
<example service.version="5.5.37">5.5.37-MariaDB-1~wheezy-log</example>
|
@@ -791,6 +911,7 @@
|
|
791
911
|
<param pos="0" name="os.version" value="7.0"/>
|
792
912
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.0"/>
|
793
913
|
</fingerprint>
|
914
|
+
|
794
915
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~squeeze(?:-log)?$" flags="REG_ICASE">
|
795
916
|
<description>MariaDB MariaDB on Debian 6.0 (squeeze)</description>
|
796
917
|
<example service.version="5.5.31">5.5.31-MariaDB-1~squeeze-log</example>
|
@@ -806,6 +927,7 @@
|
|
806
927
|
<param pos="0" name="os.version" value="6.0"/>
|
807
928
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:6.0"/>
|
808
929
|
</fingerprint>
|
930
|
+
|
809
931
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-MariaDB.+~lenny(?:-log)?$" flags="REG_ICASE">
|
810
932
|
<description>MariaDB MariaDB on Debian 5.0 (lenny)</description>
|
811
933
|
<example service.version="5.3.2">5.3.2-MariaDB-beta-mariadb102~lenny</example>
|
@@ -820,8 +942,9 @@
|
|
820
942
|
<param pos="0" name="os.version" value="5.0"/>
|
821
943
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:5.0"/>
|
822
944
|
</fingerprint>
|
945
|
+
|
823
946
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~sid(?:-log)?$" flags="REG_ICASE">
|
824
|
-
<description>MariaDB MariaDB on Debian Unstable/No version
|
947
|
+
<description>MariaDB MariaDB on Debian Unstable/No version (sid)</description>
|
825
948
|
<example service.version="10.0.16">5.5.5-10.0.16-MariaDB-1~sid</example>
|
826
949
|
<param pos="1" name="service.version"/>
|
827
950
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
@@ -833,6 +956,7 @@
|
|
833
956
|
<param pos="0" name="os.product" value="Linux"/>
|
834
957
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
835
958
|
</fingerprint>
|
959
|
+
|
836
960
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~xenial(?:-log)?$" flags="REG_ICASE">
|
837
961
|
<description>MariaDB MariaDB on Ubuntu 16.04 (Xenial Xerus)</description>
|
838
962
|
<example service.version="10.1.23">5.5.5-10.1.23-MariaDB-1~xenial</example>
|
@@ -847,6 +971,7 @@
|
|
847
971
|
<param pos="0" name="os.version" value="16.04"/>
|
848
972
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:16.04"/>
|
849
973
|
</fingerprint>
|
974
|
+
|
850
975
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~utopic(?:-log)?$" flags="REG_ICASE">
|
851
976
|
<description>MariaDB MariaDB on Ubuntu 14.10 (Utopic Unicorn)</description>
|
852
977
|
<example service.version="10.0.16">5.5.5-10.0.16-MariaDB-1~utopic-log</example>
|
@@ -861,6 +986,7 @@
|
|
861
986
|
<param pos="0" name="os.version" value="14.10"/>
|
862
987
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.10"/>
|
863
988
|
</fingerprint>
|
989
|
+
|
864
990
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~trusty(?:-log)?$" flags="REG_ICASE">
|
865
991
|
<description>MariaDB MariaDB on Ubuntu 14.04 (Trusty Tahr)</description>
|
866
992
|
<example service.version="10.0.15">5.5.5-10.0.15-MariaDB-1~trusty</example>
|
@@ -875,6 +1001,7 @@
|
|
875
1001
|
<param pos="0" name="os.version" value="14.04"/>
|
876
1002
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.04"/>
|
877
1003
|
</fingerprint>
|
1004
|
+
|
878
1005
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~saucy(?:-log)?$" flags="REG_ICASE">
|
879
1006
|
<description>MariaDB MariaDB on Ubuntu 13.10 (Saucy Salamander)</description>
|
880
1007
|
<example service.version="5.5.39">5.5.39-MariaDB-1~saucy-log</example>
|
@@ -889,8 +1016,9 @@
|
|
889
1016
|
<param pos="0" name="os.version" value="13.10"/>
|
890
1017
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:13.10"/>
|
891
1018
|
</fingerprint>
|
1019
|
+
|
892
1020
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~buster(?:-log)?$" flags="REG_ICASE">
|
893
|
-
<description>MariaDB MariaDB on Debian 10 (
|
1021
|
+
<description>MariaDB MariaDB on Debian 10 (buster)</description>
|
894
1022
|
<example service.version="10.3.20">5.5.5-10.3.20-MariaDB-1:10.3.20+maria~buster-log</example>
|
895
1023
|
<param pos="1" name="service.version"/>
|
896
1024
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
@@ -901,8 +1029,9 @@
|
|
901
1029
|
<param pos="0" name="os.family" value="Linux"/>
|
902
1030
|
<param pos="0" name="os.product" value="Linux"/>
|
903
1031
|
<param pos="0" name="os.version" value="10.0"/>
|
904
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:
|
1032
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:10.0"/>
|
905
1033
|
</fingerprint>
|
1034
|
+
|
906
1035
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~yakkety(?:-log)?$" flags="REG_ICASE">
|
907
1036
|
<description>MariaDB MariaDB on Ubuntu 16.10 (Yakkety Yak)</description>
|
908
1037
|
<example service.version="10.1.26">5.5.5-10.1.26-MariaDB-1~yakkety</example>
|
@@ -917,22 +1046,25 @@
|
|
917
1046
|
<param pos="0" name="os.version" value="16.10"/>
|
918
1047
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:16.10"/>
|
919
1048
|
</fingerprint>
|
1049
|
+
|
920
1050
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-1~yakkety-(?:wsrep)?$" flags="REG_ICASE">
|
921
|
-
<description>MariaDB MariaDB
|
1051
|
+
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 16.10 (Yakkety Yak)</description>
|
922
1052
|
<example service.version="10.0.28">5.5.5-10.0.28-MariaDB-1~yakkety-wsrep</example>
|
923
1053
|
<param pos="1" name="service.version"/>
|
924
1054
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
925
1055
|
<param pos="0" name="service.family" value="MySQL"/>
|
1056
|
+
<param pos="0" name="service.product" value="MariaDB"/>
|
926
1057
|
<param pos="0" name="service.edition" value="Galera Cluster"/>
|
927
1058
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
928
1059
|
<param pos="0" name="os.vendor" value="Ubuntu"/>
|
929
1060
|
<param pos="0" name="os.family" value="Linux"/>
|
930
1061
|
<param pos="0" name="os.product" value="Linux"/>
|
931
1062
|
<param pos="0" name="os.version" value="16.10"/>
|
932
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:
|
1063
|
+
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:16.10"/>
|
933
1064
|
</fingerprint>
|
1065
|
+
|
934
1066
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~wily(?:-log)?$" flags="REG_ICASE">
|
935
|
-
<description>MariaDB MariaDB on Ubuntu 15.10 (
|
1067
|
+
<description>MariaDB MariaDB on Ubuntu 15.10 (Wily Werewolf)</description>
|
936
1068
|
<example service.version="10.3.22">5.5.5-10.3.22-MariaDB-1:10.3.22+maria~wily</example>
|
937
1069
|
<example service.version="10.4.12">5.5.5-10.4.12-MariaDB-1:10.4.12+maria~wily-log</example>
|
938
1070
|
<example service.version="10.1.11">5.5.5-10.1.11-MariaDB-1~wily-log</example>
|
@@ -948,6 +1080,7 @@
|
|
948
1080
|
<param pos="0" name="os.version" value="15.10"/>
|
949
1081
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:15.10"/>
|
950
1082
|
</fingerprint>
|
1083
|
+
|
951
1084
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~vivid(?:-log)?$" flags="REG_ICASE">
|
952
1085
|
<description>MariaDB MariaDB on Ubuntu 15.04 (Vivid Vervet)</description>
|
953
1086
|
<example service.version="10.0.24">5.5.5-10.0.24-MariaDB-1~vivid</example>
|
@@ -963,6 +1096,7 @@
|
|
963
1096
|
<param pos="0" name="os.version" value="15.04"/>
|
964
1097
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:15.04"/>
|
965
1098
|
</fingerprint>
|
1099
|
+
|
966
1100
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~vivid-wsrep(?:-log)?$" flags="REG_ICASE">
|
967
1101
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 15.04 (Vivid Vervet)</description>
|
968
1102
|
<example service.version="10.0.24">5.5.5-10.0.24-MariaDB-1~vivid-wsrep</example>
|
@@ -970,6 +1104,7 @@
|
|
970
1104
|
<param pos="1" name="service.version"/>
|
971
1105
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
972
1106
|
<param pos="0" name="service.family" value="MySQL"/>
|
1107
|
+
<param pos="0" name="service.product" value="MariaDB"/>
|
973
1108
|
<param pos="0" name="service.edition" value="Galera Cluster"/>
|
974
1109
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
975
1110
|
<param pos="0" name="os.vendor" value="Ubuntu"/>
|
@@ -978,8 +1113,9 @@
|
|
978
1113
|
<param pos="0" name="os.version" value="15.04"/>
|
979
1114
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:15.04"/>
|
980
1115
|
</fingerprint>
|
1116
|
+
|
981
1117
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~eoan(?:-log)?$" flags="REG_ICASE">
|
982
|
-
<description>MariaDB MariaDB on Ubuntu 19.10 (Eoan)</description>
|
1118
|
+
<description>MariaDB MariaDB on Ubuntu 19.10 (Eoan Ermine)</description>
|
983
1119
|
<example service.version="10.3.22">5.5.5-10.3.22-MariaDB-1:10.3.22+maria~eoan</example>
|
984
1120
|
<example service.version="10.4.12">5.5.5-10.4.12-MariaDB-1:10.4.12+maria~eoan-log</example>
|
985
1121
|
<param pos="1" name="service.version"/>
|
@@ -993,8 +1129,9 @@
|
|
993
1129
|
<param pos="0" name="os.version" value="19.10"/>
|
994
1130
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:19.10"/>
|
995
1131
|
</fingerprint>
|
1132
|
+
|
996
1133
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~cosmic(?:-log)?$" flags="REG_ICASE">
|
997
|
-
<description>MariaDB MariaDB on Ubuntu 18.10 (Cosmic)</description>
|
1134
|
+
<description>MariaDB MariaDB on Ubuntu 18.10 (Cosmic Cuttlefish)</description>
|
998
1135
|
<example service.version="10.3.17">5.5.5-10.3.17-MariaDB-1:10.3.17+maria~cosmic-log</example>
|
999
1136
|
<example service.version="10.1.20">5.5.5-10.1.20-MariaDB-1:10.3.17+maria~cosmic</example>
|
1000
1137
|
<param pos="1" name="service.version"/>
|
@@ -1008,8 +1145,9 @@
|
|
1008
1145
|
<param pos="0" name="os.version" value="18.10"/>
|
1009
1146
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:18.10"/>
|
1010
1147
|
</fingerprint>
|
1148
|
+
|
1011
1149
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~disco(?:-log)?$" flags="REG_ICASE">
|
1012
|
-
<description>MariaDB MariaDB on Ubuntu 19.04 (Disco)</description>
|
1150
|
+
<description>MariaDB MariaDB on Ubuntu 19.04 (Disco Dingo)</description>
|
1013
1151
|
<example service.version="10.3.17">5.5.5-10.3.17-MariaDB-1:10.3.17+maria~disco-log</example>
|
1014
1152
|
<example service.version="10.1.20">5.5.5-10.1.20-MariaDB-1:10.3.17+maria~disco</example>
|
1015
1153
|
<param pos="1" name="service.version"/>
|
@@ -1023,6 +1161,7 @@
|
|
1023
1161
|
<param pos="0" name="os.version" value="19.04"/>
|
1024
1162
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:19.04"/>
|
1025
1163
|
</fingerprint>
|
1164
|
+
|
1026
1165
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~raring(?:-log)?$" flags="REG_ICASE">
|
1027
1166
|
<description>MariaDB MariaDB on Ubuntu 13.04 (Raring Ringtail)</description>
|
1028
1167
|
<example service.version="5.5.32">5.5.32-MariaDB-1~raring-log</example>
|
@@ -1037,6 +1176,7 @@
|
|
1037
1176
|
<param pos="0" name="os.version" value="13.04"/>
|
1038
1177
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:13.04"/>
|
1039
1178
|
</fingerprint>
|
1179
|
+
|
1040
1180
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~quantal(?:-log)?$" flags="REG_ICASE">
|
1041
1181
|
<description>MariaDB MariaDB on Ubuntu 12.10 (Quantal Quetzal)</description>
|
1042
1182
|
<example service.version="10.0.12">5.5.5-10.0.12-MariaDB-1~quantal-log</example>
|
@@ -1052,8 +1192,9 @@
|
|
1052
1192
|
<param pos="0" name="os.version" value="12.10"/>
|
1053
1193
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.10"/>
|
1054
1194
|
</fingerprint>
|
1195
|
+
|
1055
1196
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~precise(?:-log)?$" flags="REG_ICASE">
|
1056
|
-
<description>MariaDB MariaDB on Ubuntu 12.04
|
1197
|
+
<description>MariaDB MariaDB on Ubuntu 12.04 (Precise Pangolin)</description>
|
1057
1198
|
<example service.version="5.5.41">5.5.41-MariaDB-1~precise-log</example>
|
1058
1199
|
<example service.version="10.0.16">5.5.5-10.0.16-MariaDB-1~precise-log</example>
|
1059
1200
|
<param pos="1" name="service.version"/>
|
@@ -1067,8 +1208,9 @@
|
|
1067
1208
|
<param pos="0" name="os.version" value="12.04"/>
|
1068
1209
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.04"/>
|
1069
1210
|
</fingerprint>
|
1211
|
+
|
1070
1212
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~hardy(?:-log)?$" flags="REG_ICASE">
|
1071
|
-
<description>MariaDB MariaDB on Ubuntu 8.04
|
1213
|
+
<description>MariaDB MariaDB on Ubuntu 8.04 (Hardy Heron)</description>
|
1072
1214
|
<example service.version="5.5.34">5.5.34-MariaDB-mariadb122~hardy-log</example>
|
1073
1215
|
<param pos="1" name="service.version"/>
|
1074
1216
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
@@ -1081,6 +1223,7 @@
|
|
1081
1223
|
<param pos="0" name="os.version" value="8.04"/>
|
1082
1224
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:8.04"/>
|
1083
1225
|
</fingerprint>
|
1226
|
+
|
1084
1227
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~trusty-wsrep(?:-log)?$" flags="REG_ICASE">
|
1085
1228
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 14.04 (Trusty Tahr)</description>
|
1086
1229
|
<example service.version="10.1.1">5.5.5-10.1.1-MariaDB-1~trusty-wsrep-log</example>
|
@@ -1096,8 +1239,9 @@
|
|
1096
1239
|
<param pos="0" name="os.version" value="14.04"/>
|
1097
1240
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:14.04"/>
|
1098
1241
|
</fingerprint>
|
1242
|
+
|
1099
1243
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~jessie-wsrep(?:-log)?$" flags="REG_ICASE">
|
1100
|
-
<description>MariaDB MariaDB with Galera Cluster on Debian 8.0 (
|
1244
|
+
<description>MariaDB MariaDB with Galera Cluster on Debian 8.0 (jessie)</description>
|
1101
1245
|
<example service.version="10.0.26">5.5.5-10.0.26-MariaDB-1~jessie-wsrep</example>
|
1102
1246
|
<example service.version="10.0.22">5.5.5-10.0.22-MariaDB-1~jessie-wsrep-log</example>
|
1103
1247
|
<param pos="1" name="service.version"/>
|
@@ -1112,6 +1256,7 @@
|
|
1112
1256
|
<param pos="0" name="os.version" value="8.0"/>
|
1113
1257
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:8.0"/>
|
1114
1258
|
</fingerprint>
|
1259
|
+
|
1115
1260
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~xenial-wsrep(?:-log)?$" flags="REG_ICASE">
|
1116
1261
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 16.04 (Xenial Xerus)</description>
|
1117
1262
|
<example service.version="10.0.36">5.5.5-10.0.36-MariaDB-1~xenial-wsrep</example>
|
@@ -1128,6 +1273,7 @@
|
|
1128
1273
|
<param pos="0" name="os.version" value="16.04"/>
|
1129
1274
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:16.04"/>
|
1130
1275
|
</fingerprint>
|
1276
|
+
|
1131
1277
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~saucy-wsrep(?:-log)?$" flags="REG_ICASE">
|
1132
1278
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 13.10 (Saucy Salamander)</description>
|
1133
1279
|
<example service.version="10.0.10">5.5.5-10.0.10-MariaDB-1~saucy-wsrep-log</example>
|
@@ -1143,6 +1289,7 @@
|
|
1143
1289
|
<param pos="0" name="os.version" value="13.10"/>
|
1144
1290
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:13.10"/>
|
1145
1291
|
</fingerprint>
|
1292
|
+
|
1146
1293
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~precise-wsrep(?:-log)?$" flags="REG_ICASE">
|
1147
1294
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 12.04 (Precise Pangolin)</description>
|
1148
1295
|
<example service.version="10.1.1">5.5.5-10.1.1-MariaDB-1~precise-wsrep</example>
|
@@ -1158,8 +1305,9 @@
|
|
1158
1305
|
<param pos="0" name="os.version" value="12.04"/>
|
1159
1306
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:12.04"/>
|
1160
1307
|
</fingerprint>
|
1308
|
+
|
1161
1309
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~lucid-wsrep(?:-log)?$" flags="REG_ICASE">
|
1162
|
-
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 10.04
|
1310
|
+
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 10.04 (Lucid Lynx)</description>
|
1163
1311
|
<example service.version="5.5.34">5.5.34-MariaDB-1~lucid-wsrep-log</example>
|
1164
1312
|
<param pos="1" name="service.version"/>
|
1165
1313
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
@@ -1173,6 +1321,7 @@
|
|
1173
1321
|
<param pos="0" name="os.version" value="10.04"/>
|
1174
1322
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:10.04"/>
|
1175
1323
|
</fingerprint>
|
1324
|
+
|
1176
1325
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-\dubuntu\d(?:\.\d{1,3}\.\d{1,3}\.\d{1,3})?(?:-log)?$" flags="REG_ICASE">
|
1177
1326
|
<description>MariaDB MariaDB on Ubuntu</description>
|
1178
1327
|
<example service.version="10.0.17">5.5.5-10.0.17-MariaDB-0ubuntu1</example>
|
@@ -1189,7 +1338,8 @@
|
|
1189
1338
|
<param pos="0" name="os.product" value="Linux"/>
|
1190
1339
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:-"/>
|
1191
1340
|
</fingerprint>
|
1192
|
-
|
1341
|
+
|
1342
|
+
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~lucid(?:-log)?$" flags="REG_ICASE">
|
1193
1343
|
<description>MariaDB MariaDB on Ubuntu 10.04 (Lucid lynx)</description>
|
1194
1344
|
<example service.version="5.5.34">5.5.34-MariaDB-1~lucid-log</example>
|
1195
1345
|
<param pos="1" name="service.version"/>
|
@@ -1203,8 +1353,9 @@
|
|
1203
1353
|
<param pos="0" name="os.version" value="10.04"/>
|
1204
1354
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:10.04"/>
|
1205
1355
|
</fingerprint>
|
1356
|
+
|
1206
1357
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-\d\:.*\+maria\~focal$" flags="REG_ICASE">
|
1207
|
-
<description>MariaDB MariaDB
|
1358
|
+
<description>MariaDB MariaDB on Ubuntu 20.04 (Focal Fossa)</description>
|
1208
1359
|
<example service.version="10.5.2">5.5.5-10.5.2-MariaDB-1:10.5.2+maria~focal</example>
|
1209
1360
|
<param pos="1" name="service.version"/>
|
1210
1361
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
@@ -1217,8 +1368,9 @@
|
|
1217
1368
|
<param pos="0" name="os.version" value="20.04"/>
|
1218
1369
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:20.04"/>
|
1219
1370
|
</fingerprint>
|
1371
|
+
|
1220
1372
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-mariadb\d\Smaverick$" flags="REG_ICASE">
|
1221
|
-
<description>MariaDB MariaDB
|
1373
|
+
<description>MariaDB MariaDB on Ubuntu 10.10 (Maverick Meerkat)</description>
|
1222
1374
|
<example service.version="5.5.29">5.5.29-MariaDB-mariadb1~maverick</example>
|
1223
1375
|
<param pos="1" name="service.version"/>
|
1224
1376
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
@@ -1231,8 +1383,9 @@
|
|
1231
1383
|
<param pos="0" name="os.version" value="10.10"/>
|
1232
1384
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:10.10"/>
|
1233
1385
|
</fingerprint>
|
1386
|
+
|
1234
1387
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4}(?:\-\d)?)-MariaDB-alt\d{1,2}(?:-log)?.*$" flags="REG_ICASE">
|
1235
|
-
<description>MariaDB MariaDB
|
1388
|
+
<description>MariaDB MariaDB on a ALT Linux</description>
|
1236
1389
|
<example service.version="10.1.29">5.5.5-10.1.29-MariaDB-alt1.M80P.1</example>
|
1237
1390
|
<example service.version="10.2.15">5.5.5-10.2.15-MariaDB-alt2.M80P.3.S1</example>
|
1238
1391
|
<param pos="1" name="service.version"/>
|
@@ -1243,8 +1396,8 @@
|
|
1243
1396
|
<param pos="0" name="os.vendor" value="ALT"/>
|
1244
1397
|
<param pos="0" name="os.family" value="Linux"/>
|
1245
1398
|
<param pos="0" name="os.product" value="Linux"/>
|
1246
|
-
<param pos="0" name="os.cpe23" value="cpe:/o:altlinux:alt_linux:-"/>
|
1247
1399
|
</fingerprint>
|
1400
|
+
|
1248
1401
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4}\-\d{1,2})-MariaDB-enterprise(?:-log)?$" flags="REG_ICASE">
|
1249
1402
|
<description>MariaDB Maria DB Enterprise Edition</description>
|
1250
1403
|
<example service.version="10.4.10-4">5.5.5-10.4.10-4-MariaDB-enterprise-log</example>
|
@@ -1255,6 +1408,7 @@
|
|
1255
1408
|
<param pos="0" name="service.edition" value="Enterprise Edition"/>
|
1256
1409
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1257
1410
|
</fingerprint>
|
1411
|
+
|
1258
1412
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4}(?:\-\d)?)-MariaDB(?:\-\d{1,2})?(?:\+\S{1,2})?$" flags="REG_ICASE">
|
1259
1413
|
<description>MariaDB</description>
|
1260
1414
|
<example service.version="10.0.40-2">5.5.5-10.0.40-2-MariaDB</example>
|
@@ -1269,7 +1423,8 @@
|
|
1269
1423
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1270
1424
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1271
1425
|
</fingerprint>
|
1272
|
-
|
1426
|
+
|
1427
|
+
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)MariaDB-\d{1,2}\:(\d{1,2}\.\d{1,2}\.\d{1,2})$" flags="REG_ICASE">
|
1273
1428
|
<description>MariaDB MariaDB alternate version format</description>
|
1274
1429
|
<example service.version="10.3.13">5.7.8-MariaDB-1:10.3.13</example>
|
1275
1430
|
<param pos="1" name="service.version"/>
|
@@ -1278,6 +1433,7 @@
|
|
1278
1433
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1279
1434
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1280
1435
|
</fingerprint>
|
1436
|
+
|
1281
1437
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~wheezy-wsrep(?:-log)?$" flags="REG_ICASE">
|
1282
1438
|
<description>MariaDB MariaDB with Galera Cluster on Debian 7.0 (wheezy)</description>
|
1283
1439
|
<example service.version="10.1.1">5.5.5-10.1.1-MariaDB-1~wheezy-wsrep-log</example>
|
@@ -1293,6 +1449,7 @@
|
|
1293
1449
|
<param pos="0" name="os.version" value="7.0"/>
|
1294
1450
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:7.0"/>
|
1295
1451
|
</fingerprint>
|
1452
|
+
|
1296
1453
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~squeeze-wsrep(?:-log)?$" flags="REG_ICASE">
|
1297
1454
|
<description>MariaDB MariaDB with Galera Cluster on Debian 6.0 (squeeze)</description>
|
1298
1455
|
<example service.version="10.1.1">5.5.5-10.1.1-MariaDB-1~squeeze-wsrep</example>
|
@@ -1308,6 +1465,7 @@
|
|
1308
1465
|
<param pos="0" name="os.version" value="6.0"/>
|
1309
1466
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:6.0"/>
|
1310
1467
|
</fingerprint>
|
1468
|
+
|
1311
1469
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~zesty(?:-log)?$" flags="REG_ICASE">
|
1312
1470
|
<description>MariaDB MariaDB on Ubuntu 17.04 (Zesty Zapus)</description>
|
1313
1471
|
<example service.version="10.2.12">5.5.5-10.2.12-MariaDB-10.2.12+maria~zesty-log</example>
|
@@ -1323,15 +1481,15 @@
|
|
1323
1481
|
<param pos="0" name="os.version" value="17.04"/>
|
1324
1482
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:17.04"/>
|
1325
1483
|
</fingerprint>
|
1484
|
+
|
1326
1485
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~artful(?:-log)?$" flags="REG_ICASE">
|
1327
|
-
<description>MariaDB MariaDB
|
1486
|
+
<description>MariaDB MariaDB on Ubuntu 17.10 (Artful Ardvark)</description>
|
1328
1487
|
<example service.version="10.5.12">5.5.5-10.5.12-MariaDB-10.2.12+maria~artful-log</example>
|
1329
1488
|
<example service.version="10.3.2">5.5.5-10.3.2-MariaDB-10.2.12+maria~artful</example>
|
1330
1489
|
<param pos="1" name="service.version"/>
|
1331
1490
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
1332
1491
|
<param pos="0" name="service.family" value="MySQL"/>
|
1333
1492
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1334
|
-
<param pos="0" name="service.edition" value="Galera Cluster"/>
|
1335
1493
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1336
1494
|
<param pos="0" name="os.vendor" value="Ubuntu"/>
|
1337
1495
|
<param pos="0" name="os.family" value="Linux"/>
|
@@ -1339,6 +1497,7 @@
|
|
1339
1497
|
<param pos="0" name="os.version" value="17.10"/>
|
1340
1498
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:17.10"/>
|
1341
1499
|
</fingerprint>
|
1500
|
+
|
1342
1501
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB.+~sid-wsrep(?:-log)?$" flags="REG_ICASE">
|
1343
1502
|
<description>MariaDB MariaDB with Galera Cluster on Debian Unstable/No version (sid)</description>
|
1344
1503
|
<example service.version="10.0.16">5.5.5-10.0.16-MariaDB-1~sid-wsrep</example>
|
@@ -1353,6 +1512,7 @@
|
|
1353
1512
|
<param pos="0" name="os.product" value="Linux"/>
|
1354
1513
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
1355
1514
|
</fingerprint>
|
1515
|
+
|
1356
1516
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-wsrep(?:-log)?$" flags="REG_ICASE">
|
1357
1517
|
<description>MariaDB MariaDB with Galera Cluster</description>
|
1358
1518
|
<example service.version="10.0.15">5.5.5-10.0.15-MariaDB-wsrep</example>
|
@@ -1363,6 +1523,7 @@
|
|
1363
1523
|
<param pos="0" name="service.edition" value="Galera Cluster"/>
|
1364
1524
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1365
1525
|
</fingerprint>
|
1526
|
+
|
1366
1527
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-Maria(?:DB)?[-\d]*(?:-debug)?(?:-ga)?(?:-beta)?(?:-mariadb)?[~\.\d]*(?:-log)?$" flags="REG_ICASE">
|
1367
1528
|
<description>MariaDB MariaDB</description>
|
1368
1529
|
<example service.version="5.1.39">5.1.39-maria-beta</example>
|
@@ -1378,6 +1539,7 @@
|
|
1378
1539
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1379
1540
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1380
1541
|
</fingerprint>
|
1542
|
+
|
1381
1543
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Community-Maria(?:DB)?(?:-log)?$" flags="REG_ICASE">
|
1382
1544
|
<description>MariaDB MariaDB Community Edition</description>
|
1383
1545
|
<example service.version="5.1.44">5.1.44-community-maria-log</example>
|
@@ -1388,6 +1550,7 @@
|
|
1388
1550
|
<param pos="0" name="service.edition" value="Community Edition"/>
|
1389
1551
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1390
1552
|
</fingerprint>
|
1553
|
+
|
1391
1554
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)?(\d{1,2}\.\d{1,3}\.[a-f\d]{1,4})-MariaDB-enterprise(?:-log)?$" flags="REG_ICASE">
|
1392
1555
|
<description>MariaDB MariaDB Enterprise Edition</description>
|
1393
1556
|
<example service.version="10.1.21">5.5.5-10.1.21-MariaDB-enterprise</example>
|
@@ -1400,6 +1563,7 @@
|
|
1400
1563
|
<param pos="0" name="service.edition" value="Enterprise Edition"/>
|
1401
1564
|
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1402
1565
|
</fingerprint>
|
1566
|
+
|
1403
1567
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,2}\.[a-f\d]{1,2})(?:-\d{1,2}\.\d{1,2}\.[a-f\d]{1,2})?\s(\d{1,2}\.\d{1,2}\.\d{1,2})-maxscale$">
|
1404
1568
|
<description>MariaDB MariaDB MaxScale</description>
|
1405
1569
|
<example service.version="2.1.14">5.5.5-10.0.0 2.1.14-maxscale</example>
|
@@ -1408,6 +1572,7 @@
|
|
1408
1572
|
<param pos="0" name="service.family" value="MySQL"/>
|
1409
1573
|
<param pos="0" name="service.product" value="MaxScale"/>
|
1410
1574
|
</fingerprint>
|
1575
|
+
|
1411
1576
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-falcon-alpha-community-nt" flags="REG_ICASE">
|
1412
1577
|
<description>Oracle MySQL with defunct Falcon Storage Engine with Named Pipes (Windows)</description>
|
1413
1578
|
<example service.version="5.2.0">5.2.0-falcon-alpha-community-nt</example>
|
@@ -1419,6 +1584,7 @@
|
|
1419
1584
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
1420
1585
|
<param pos="0" name="os.family" value="Windows"/>
|
1421
1586
|
</fingerprint>
|
1587
|
+
|
1422
1588
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-falcon-alpha(?:-community)?(?:-log)?$" flags="REG_ICASE">
|
1423
1589
|
<description>Oracle MySQL with defunct Falcon Storage Engine</description>
|
1424
1590
|
<example service.version="5.2.0">5.2.0-falcon-alpha-log</example>
|
@@ -1429,6 +1595,7 @@
|
|
1429
1595
|
<param pos="0" name="service.product" value="MySQL"/>
|
1430
1596
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1431
1597
|
</fingerprint>
|
1598
|
+
|
1432
1599
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-tokudb-\d\.\d\.\d{1,2}(?:-\d*)?(?:-log)?$" flags="REG_ICASE">
|
1433
1600
|
<description>Tokutek customized MySQL</description>
|
1434
1601
|
<example service.version="5.5.40">5.5.40-tokudb-7.5.3-log</example>
|
@@ -1438,6 +1605,7 @@
|
|
1438
1605
|
<param pos="0" name="service.family" value="MySQL"/>
|
1439
1606
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1440
1607
|
</fingerprint>
|
1608
|
+
|
1441
1609
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-tokudb-.*MariaDB(?:-log)?$" flags="REG_ICASE">
|
1442
1610
|
<description>Tokutek customized MariaDB</description>
|
1443
1611
|
<example service.version="5.5.25">5.5.25-tokudb-6.1.1-47477-MariaDB-log</example>
|
@@ -1446,47 +1614,57 @@
|
|
1446
1614
|
<param pos="0" name="service.family" value="MySQL"/>
|
1447
1615
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1448
1616
|
</fingerprint>
|
1617
|
+
|
1449
1618
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)(\d*\.\d*\.\d*)-MariaDB.*-*~bionic?(?:-log)?$" flags="REG_ICASE">
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1619
|
+
<description>MariaDB MariaDB on Ubuntu 18.04 (Bionic Beaver)</description>
|
1620
|
+
<example service.version="10.2.17">5.5.5-10.2.17-MariaDB-1:10.2.17+maria~bionic</example>
|
1621
|
+
<example service.version="10.2.14">5.5.5-10.2.14-MariaDB-1:10.2.14+maria~bionic-log</example>
|
1622
|
+
<example service.version="10.1.40">5.5.5-10.1.40-MariaDB-1~bionic</example>
|
1623
|
+
<example service.version="10.2.39">5.5.5-10.2.39-MariaDB-1~bionic-log</example>
|
1455
1624
|
<param pos="1" name="service.version"/>
|
1456
1625
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
1457
1626
|
<param pos="0" name="service.family" value="MySQL"/>
|
1458
1627
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1628
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1459
1629
|
<param pos="0" name="os.vendor" value="Ubuntu"/>
|
1460
1630
|
<param pos="0" name="os.family" value="Linux"/>
|
1461
1631
|
<param pos="0" name="os.product" value="Linux"/>
|
1632
|
+
<param pos="0" name="os.version" value="18.04"/>
|
1462
1633
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:18.04"/>
|
1463
1634
|
</fingerprint>
|
1635
|
+
|
1464
1636
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)(\d*\.\d*\.\d*)-MariaDB.*~stretch(?:-log)?$" flags="REG_ICASE">
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1637
|
+
<description>MariaDB MariaDB on Debian 9.0 (stretch)</description>
|
1638
|
+
<example service.version="10.2.17">5.5.5-10.2.17-MariaDB-1:10.2.17+maria~stretch</example>
|
1639
|
+
<example service.version="10.2.25">5.5.5-10.2.25-MariaDB-10.2.25+maria~stretch-log</example>
|
1640
|
+
<example service.version="10.1.39">5.5.5-10.1.39-MariaDB-1~stretch</example>
|
1469
1641
|
<param pos="1" name="service.version"/>
|
1470
1642
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
1471
1643
|
<param pos="0" name="service.family" value="MySQL"/>
|
1472
1644
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1645
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1473
1646
|
<param pos="0" name="os.vendor" value="Debian"/>
|
1474
1647
|
<param pos="0" name="os.family" value="Linux"/>
|
1475
1648
|
<param pos="0" name="os.product" value="Linux"/>
|
1649
|
+
<param pos="0" name="os.version" value="9.0"/>
|
1476
1650
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:9.0"/>
|
1477
1651
|
</fingerprint>
|
1652
|
+
|
1478
1653
|
<fingerprint pattern="^(?:\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}-)(\d*\.\d*\.\d*)-MariaDB\S*deb\S*$" flags="REG_ICASE">
|
1479
|
-
<description>MariaDB MariaDB
|
1654
|
+
<description>MariaDB MariaDB on Debian 9.1 (stretch)</description>
|
1480
1655
|
<example service.version="10.1.23">5.5.5-10.1.23-MariaDB-9+deb9u1</example>
|
1481
1656
|
<param pos="1" name="service.version"/>
|
1482
1657
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
1483
1658
|
<param pos="0" name="service.family" value="MySQL"/>
|
1484
1659
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1660
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:{service.version}"/>
|
1485
1661
|
<param pos="0" name="os.vendor" value="Debian"/>
|
1486
1662
|
<param pos="0" name="os.family" value="Linux"/>
|
1487
1663
|
<param pos="0" name="os.product" value="Linux"/>
|
1664
|
+
<param pos="0" name="os.version" value="9.1"/>
|
1488
1665
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:9.1"/>
|
1489
1666
|
</fingerprint>
|
1667
|
+
|
1490
1668
|
<fingerprint pattern="^^(\d{1,2}\.\d{1,2}\.[a-f\d]{1,3})-Sphinx" flags="REG_ICASE">
|
1491
1669
|
<description>Oracle MySQL with the Sphinx full text search engine</description>
|
1492
1670
|
<example service.version="5.1.40">5.1.40-Sphinx</example>
|
@@ -1496,6 +1674,7 @@
|
|
1496
1674
|
<param pos="0" name="service.product" value="MySQL"/>
|
1497
1675
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1498
1676
|
</fingerprint>
|
1677
|
+
|
1499
1678
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})(?:-\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})?\+tld\d" flags="REG_ICASE">
|
1500
1679
|
<description>Oracle MySQL packaged by TLD Linux</description>
|
1501
1680
|
<example service.version="5.0.91">5.0.91+tld0-log</example>
|
@@ -1509,6 +1688,7 @@
|
|
1509
1688
|
<param pos="0" name="os.family" value="Linux"/>
|
1510
1689
|
<param pos="0" name="os.product" value="Linux"/>
|
1511
1690
|
</fingerprint>
|
1691
|
+
|
1512
1692
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Debian_\d\.infrant\d$" flags="REG_ICASE">
|
1513
1693
|
<description>Oracle MySQL on a Netgear ReadyNAS</description>
|
1514
1694
|
<example service.version="5.0.24a">5.0.24a-Debian_3.infrant1</example>
|
@@ -1527,6 +1707,7 @@
|
|
1527
1707
|
<param pos="0" name="hw.family" value="ReadyNAS"/>
|
1528
1708
|
<param pos="0" name="hw.product" value="ReadyNAS"/>
|
1529
1709
|
</fingerprint>
|
1710
|
+
|
1530
1711
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-beget(?:-log)?$" flags="REG_ICASE">
|
1531
1712
|
<description>Oracle MySQL at Ukrainian hoster BeGet(?)</description>
|
1532
1713
|
<example service.version="5.1.61">5.1.61-beget-log</example>
|
@@ -1536,6 +1717,7 @@
|
|
1536
1717
|
<param pos="0" name="service.product" value="MySQL"/>
|
1537
1718
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1538
1719
|
</fingerprint>
|
1720
|
+
|
1539
1721
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-(?:Linuxtone.Org|LTOPS)(?:-log)?$" flags="REG_ICASE">
|
1540
1722
|
<description>Oracle MySQL at Chinese hoster Linuxtone.org</description>
|
1541
1723
|
<example service.version="5.0.56">5.0.56-Linuxtone.Org</example>
|
@@ -1546,6 +1728,7 @@
|
|
1546
1728
|
<param pos="0" name="service.product" value="MySQL"/>
|
1547
1729
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1548
1730
|
</fingerprint>
|
1731
|
+
|
1549
1732
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-xencdn.net(?:-log)?$" flags="REG_ICASE">
|
1550
1733
|
<description>Oracle MySQL at Chinese hoster Xencdn.net</description>
|
1551
1734
|
<example service.version="5.1.66">5.1.66-xencdn.net-log</example>
|
@@ -1555,6 +1738,7 @@
|
|
1555
1738
|
<param pos="0" name="service.product" value="MySQL"/>
|
1556
1739
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1557
1740
|
</fingerprint>
|
1741
|
+
|
1558
1742
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-Comsenz(?:-log)?$" flags="REG_ICASE">
|
1559
1743
|
<description>Oracle MySQL at Chinese hoster Comsenz</description>
|
1560
1744
|
<example service.version="5.0.27">5.0.27-Comsenz-log</example>
|
@@ -1564,6 +1748,7 @@
|
|
1564
1748
|
<param pos="0" name="service.product" value="MySQL"/>
|
1565
1749
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1566
1750
|
</fingerprint>
|
1751
|
+
|
1567
1752
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-www\.gamewave\.net(?:-edition)?(?:-log)?$" flags="REG_ICASE">
|
1568
1753
|
<description>Oracle MySQL at Chinese game hoster Gamewave</description>
|
1569
1754
|
<example service.version="5.1.56">5.1.56-www.gamewave.net-edition-log</example>
|
@@ -1574,6 +1759,7 @@
|
|
1574
1759
|
<param pos="0" name="service.product" value="MySQL"/>
|
1575
1760
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1576
1761
|
</fingerprint>
|
1762
|
+
|
1577
1763
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}(?:[.-]\d{1,2})?(?:[.-]\d{1})?)[-\d]*-beget(?:-log)?$" flags="REG_ICASE">
|
1578
1764
|
<description>Oracle MySQL at Russian hoster Beget</description>
|
1579
1765
|
<example service.version="5.6.16-64.0">5.6.16-64.0-beget-log</example>
|
@@ -1584,6 +1770,7 @@
|
|
1584
1770
|
<param pos="0" name="service.product" value="MySQL"/>
|
1585
1771
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1586
1772
|
</fingerprint>
|
1773
|
+
|
1587
1774
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})yes(?:-log)?$" flags="REG_ICASE">
|
1588
1775
|
<description>Oracle MySQL part of KB2 / Kimsboard (Korean site mgmt)?</description>
|
1589
1776
|
<example service.version="4.0.27">4.0.27yes</example>
|
@@ -1593,6 +1780,7 @@
|
|
1593
1780
|
<param pos="0" name="service.product" value="MySQL"/>
|
1594
1781
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1595
1782
|
</fingerprint>
|
1783
|
+
|
1596
1784
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})\.t\d{1,2}(?:[\.\d]{3})?(?:-log)?$" flags="REG_ICASE">
|
1597
1785
|
<description>Oracle MySQL audited/published by Twitter</description>
|
1598
1786
|
<example service.version="5.5.24">5.5.24.t7-log</example>
|
@@ -1603,6 +1791,7 @@
|
|
1603
1791
|
<param pos="0" name="service.product" value="MySQL"/>
|
1604
1792
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1605
1793
|
</fingerprint>
|
1794
|
+
|
1606
1795
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}) Hybrid Cluster MySQL Proxy to$" flags="REG_ICASE">
|
1607
1796
|
<description>Oracle MySQL by Hybrid Cluster (hosted?)</description>
|
1608
1797
|
<example service.version="5.5.15">5.5.15 Hybrid Cluster MySQL Proxy to</example>
|
@@ -1612,6 +1801,7 @@
|
|
1612
1801
|
<param pos="0" name="service.product" value="MySQL"/>
|
1613
1802
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1614
1803
|
</fingerprint>
|
1804
|
+
|
1615
1805
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}) ScaleBase Data Traffic Manager [\.\d]+$" flags="REG_ICASE">
|
1616
1806
|
<description>Oracle MySQL behind ScaleBase Data Traffic Manager</description>
|
1617
1807
|
<example service.version="5.1.53">5.1.53 ScaleBase Data Traffic Manager 3.2.3</example>
|
@@ -1621,6 +1811,7 @@
|
|
1621
1811
|
<param pos="0" name="service.product" value="MySQL"/>
|
1622
1812
|
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:{service.version}"/>
|
1623
1813
|
</fingerprint>
|
1814
|
+
|
1624
1815
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3})-\d\d\.\d{1,2}-\d\.ctbanco\d+(?:-log)?$" flags="REG_ICASE">
|
1625
1816
|
<description>Percona Server (MySQL fork) with 'ctbanco' </description>
|
1626
1817
|
<example service.version="5.6.16">5.6.16-64.1-1.ctbanco60-log</example>
|
@@ -1633,6 +1824,7 @@
|
|
1633
1824
|
<param pos="0" name="os.family" value="Linux"/>
|
1634
1825
|
<param pos="0" name="os.product" value="Linux"/>
|
1635
1826
|
</fingerprint>
|
1827
|
+
|
1636
1828
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[a-f\d]{1,3}) Complete MySQL by Server Logistics(?:-log)?$" flags="REG_ICASE">
|
1637
1829
|
<description>Oracle MySQL packaged by Server Logistics, Mac specific</description>
|
1638
1830
|
<example service.version="4.0.21">4.0.21 Complete MySQL by Server Logistics-log</example>
|
@@ -1646,4 +1838,5 @@
|
|
1646
1838
|
<param pos="0" name="os.product" value="Mac OS X"/>
|
1647
1839
|
<param pos="0" name="os.cpe23" value="cpe:/o:apple:mac_os_x:-"/>
|
1648
1840
|
</fingerprint>
|
1649
|
-
|
1841
|
+
|
1842
|
+
</fingerprints>
|