recog 2.0.13 → 2.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +19 -6
- data/features/{xml → data}/failing_banners_fingerprints.xml +0 -0
- data/features/{xml → data}/matching_banners_fingerprints.xml +0 -0
- data/features/{xml → data}/no_tests.xml +0 -0
- data/features/{xml/banners.xml → data/sample_banner.txt} +0 -0
- data/features/{xml → data}/successful_tests.xml +0 -0
- data/features/{xml → data}/tests_with_failures.xml +0 -0
- data/features/{xml → data}/tests_with_warnings.xml +0 -0
- data/features/match.feature +2 -2
- data/features/support/env.rb +1 -1
- data/lib/recog/version.rb +1 -1
- data/misc/order.xsl +17 -0
- data/spec/lib/fingerprint_self_test_spec.rb +8 -0
- data/xml/apache_os.xml +270 -334
- data/xml/architecture.xml +28 -41
- data/xml/fingerprints.xsd +37 -0
- data/xml/ftp_banners.xml +52 -58
- data/xml/h323_callresp.xml +597 -695
- data/xml/hp_pjl_id.xml +370 -409
- data/xml/http_cookies.xml +304 -348
- data/xml/http_servers.xml +3202 -3483
- data/xml/http_wwwauth.xml +342 -409
- data/xml/imap_banners.xml +149 -190
- data/xml/mdns_device-info_txt.xml +97 -111
- data/xml/mdns_workstation_txt.xml +6 -6
- data/xml/mysql_banners.xml +99 -198
- data/xml/mysql_error.xml +4 -11
- data/xml/nntp_banners.xml +42 -45
- data/xml/ntp_banners.xml +2 -3
- data/xml/pop_banners.xml +214 -247
- data/xml/rsh_resp.xml +68 -76
- data/xml/sip_banners.xml +19 -19
- data/xml/sip_user_agents.xml +63 -74
- data/xml/smb_native_os.xml +387 -433
- data/xml/smtp_banners.xml +1318 -1460
- data/xml/smtp_debug.xml +24 -27
- data/xml/smtp_ehlo.xml +19 -22
- data/xml/smtp_expn.xml +61 -70
- data/xml/smtp_help.xml +139 -160
- data/xml/smtp_mailfrom.xml +14 -16
- data/xml/smtp_noop.xml +28 -31
- data/xml/smtp_quit.xml +16 -18
- data/xml/smtp_rcptto.xml +8 -10
- data/xml/smtp_rset.xml +12 -13
- data/xml/smtp_turn.xml +12 -13
- data/xml/smtp_vrfy.xml +66 -76
- data/xml/snmp_sysdescr.xml +7257 -8016
- data/xml/snmp_sysobjid.xml +392 -434
- data/xml/ssh_banners.xml +783 -867
- data/xml/upnp_banners.xml +594 -628
- metadata +11 -9
@@ -1,4 +1,4 @@
|
|
1
|
-
<?xml version="1.0"?>
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<!--
|
3
3
|
Fingerprint definitions that are matched against the string values in the
|
4
4
|
TXT record returned by an mDNS endpoint for the '_workstation._tcp.local.'
|
@@ -7,9 +7,9 @@
|
|
7
7
|
e.g. 'host-name._workstation._tcp.local'.
|
8
8
|
-->
|
9
9
|
<fingerprints matches="mdns.workstation.txt">
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
10
|
+
<fingerprint pattern="^org\.freedesktop\.Avahi\.cookie=\S+$">
|
11
|
+
<description>Avahi</description>
|
12
|
+
<example>org.freedesktop.Avahi.cookie=1023312927</example>
|
13
|
+
<param pos="0" name="service.product" value="Avahi"/>
|
14
|
+
</fingerprint>
|
15
15
|
</fingerprints>
|
data/xml/mysql_banners.xml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<?xml version="1.0"?>
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<!--
|
3
3
|
Upon successful connection to an MySQL/derivative TCP endpoint, provided
|
4
4
|
the connecting client is allowed to speak to the MySQL service (for
|
@@ -11,8 +11,8 @@
|
|
11
11
|
from this version.
|
12
12
|
-->
|
13
13
|
<fingerprints matches="mysql.banners">
|
14
|
-
|
15
|
-
|
14
|
+
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}(?:[.-]\d{1,2})?(?:[.-]\d{1})?)(?:-m\d{1,2})?(?:-rc)?(?:-alpha)?(?:-beta)?(?:-gamma)?(?:-?[Mm]ax)?(?:-rs)?(?:-modified)?(?:-debug)?(?:-log)?$">
|
15
|
+
<description>Oracle MySQL (common)</description>
|
16
16
|
<example service.version="4.1.20">4.1.20</example>
|
17
17
|
<example service.version="5.5.23-55">5.5.23-55</example>
|
18
18
|
<example service.version="5.5.30-1.1">5.5.30-1.1</example>
|
@@ -27,14 +27,13 @@
|
|
27
27
|
<example service.version="5.5.3">5.5.3-m3-log</example>
|
28
28
|
<example service.version="4.0.20a">4.0.20a-debug</example>
|
29
29
|
<example service.version="5.1.37">5.1.37-debug-log</example>
|
30
|
-
<description>Oracle MySQL (common)</description>
|
31
30
|
<param pos="1" name="service.version"/>
|
32
31
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
33
32
|
<param pos="0" name="service.family" value="MySQL"/>
|
34
33
|
<param pos="0" name="service.product" value="MySQL"/>
|
35
34
|
</fingerprint>
|
36
|
-
|
37
35
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-m\d)?(?:-rc)?(?:-alpha)?(?:-beta)?-[Cc]ommunity(?:-max)?(?:-debug)?(?:-log)?(?:-debug)?$">
|
36
|
+
<description>Oracle MySQL Community Edition</description>
|
38
37
|
<example service.version="5.0.95">5.0.95-community-log</example>
|
39
38
|
<example service.version="5.0.37">5.0.37-Community-log</example>
|
40
39
|
<example service.version="5.0.21">5.0.21-community-max</example>
|
@@ -42,22 +41,20 @@
|
|
42
41
|
<example service.version="6.0.4">6.0.4-alpha-community</example>
|
43
42
|
<example service.version="5.1.33">5.1.33-community-debug</example>
|
44
43
|
<example service.version="5.5.0">5.5.0-m2-community-debug-log</example>
|
45
|
-
<description>Oracle MySQL Community Edition</description>
|
46
44
|
<param pos="1" name="service.version"/>
|
47
45
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
48
46
|
<param pos="0" name="service.family" value="MySQL"/>
|
49
47
|
<param pos="0" name="service.product" value="MySQL"/>
|
50
48
|
<param pos="0" name="service.edition" value="Community Edition"/>
|
51
49
|
</fingerprint>
|
52
|
-
|
53
50
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-alpha)?(?:-beta)?(?:-rc)?-[Cc]ommunity(?:-max)?-nt(?:-log)?(?:-debug)?(?:-log)?$">
|
51
|
+
<description>Oracle MySQL Community Edition with Named Pipes (Windows)</description>
|
54
52
|
<example service.version="4.1.22">4.1.22-community-max-nt</example>
|
55
53
|
<example service.version="5.0.88">5.0.88-community-nt</example>
|
56
54
|
<example service.version="5.0.67">5.0.67-community-nt-log</example>
|
57
55
|
<example service.version="5.1.20">5.1.20-beta-community-nt-debug</example>
|
58
56
|
<example service.version="6.0.0">6.0.0-alpha-community-nt-debug</example>
|
59
57
|
<example service.version="6.0.2">6.0.2-alpha-community-nt-debug-log</example>
|
60
|
-
<description>Oracle MySQL Community Edition with Named Pipes (Windows)</description>
|
61
58
|
<param pos="1" name="service.version"/>
|
62
59
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
63
60
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -66,14 +63,13 @@
|
|
66
63
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
67
64
|
<param pos="0" name="os.family" value="Windows"/>
|
68
65
|
</fingerprint>
|
69
|
-
|
70
66
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-alpha)?(?:-beta)?(?:-rc)?(?:-gamma)?(?:-max)?-nt(?:-max)?(?:-log)?$">
|
67
|
+
<description>Oracle MySQL with Named Pipes (Windows)</description>
|
71
68
|
<example service.version="5.0.18">5.0.18-nt</example>
|
72
69
|
<example service.version="4.1.12a">4.1.12a-nt-max-log</example>
|
73
70
|
<example service.version="3.23.58">3.23.58-max-nt</example>
|
74
71
|
<example service.version="5.1.6">5.1.6-alpha-nt-max</example>
|
75
72
|
<example service.version="4.0.11">4.0.11-gamma-max-nt</example>
|
76
|
-
<description>Oracle MySQL with Named Pipes (Windows)</description>
|
77
73
|
<param pos="1" name="service.version"/>
|
78
74
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
79
75
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -81,20 +77,18 @@
|
|
81
77
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
82
78
|
<param pos="0" name="os.family" value="Windows"/>
|
83
79
|
</fingerprint>
|
84
|
-
|
85
80
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-cll$">
|
86
|
-
<example service.version="5.5.25a">5.5.25a-cll</example>
|
87
81
|
<description>Oracle MySQL hosted on CPanel</description>
|
82
|
+
<example service.version="5.5.25a">5.5.25a-cll</example>
|
88
83
|
<param pos="1" name="service.version"/>
|
89
84
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
90
85
|
<param pos="0" name="service.family" value="MySQL"/>
|
91
86
|
<param pos="0" name="service.product" value="MySQL"/>
|
92
87
|
<param pos="0" name="os.family" value="Linux"/>
|
93
88
|
</fingerprint>
|
94
|
-
|
95
89
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-community-cll$">
|
96
|
-
<example service.version="5.0.91">5.0.91-community-cll</example>
|
97
90
|
<description>Oracle MySQL Community hosted on CPanel</description>
|
91
|
+
<example service.version="5.0.91">5.0.91-community-cll</example>
|
98
92
|
<param pos="1" name="service.version"/>
|
99
93
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
100
94
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -103,10 +97,9 @@
|
|
103
97
|
<param pos="0" name="os.family" value="Linux"/>
|
104
98
|
<param pos="0" name="os.product" value="Linux"/>
|
105
99
|
</fingerprint>
|
106
|
-
|
107
100
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-cll-lve$">
|
108
|
-
<example service.version="5.1.66">5.1.66-cll-lve</example>
|
109
101
|
<description>Oracle MySQL on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
102
|
+
<example service.version="5.1.66">5.1.66-cll-lve</example>
|
110
103
|
<param pos="1" name="service.version"/>
|
111
104
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
112
105
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -115,10 +108,9 @@
|
|
115
108
|
<param pos="0" name="os.family" value="Linux"/>
|
116
109
|
<param pos="0" name="os.product" value="Linux"/>
|
117
110
|
</fingerprint>
|
118
|
-
|
119
111
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-community-cll-lve$">
|
120
|
-
<example service.version="5.0.95">5.0.95-community-cll-lve</example>
|
121
112
|
<description>Oracle MySQL Community on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
113
|
+
<example service.version="5.0.95">5.0.95-community-cll-lve</example>
|
122
114
|
<param pos="1" name="service.version"/>
|
123
115
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
124
116
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -128,11 +120,10 @@
|
|
128
120
|
<param pos="0" name="os.family" value="Linux"/>
|
129
121
|
<param pos="0" name="os.product" value="Linux"/>
|
130
122
|
</fingerprint>
|
131
|
-
|
132
123
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})-0ubuntu0.(\d\d\.\d\d)[.\d]*(?:-log)?$">
|
124
|
+
<description>Oracle MySQL on Ubuntu</description>
|
133
125
|
<example service.version="5.1.66" os.version="10.04">5.1.66-0ubuntu0.10.04.3-log</example>
|
134
126
|
<example service.version="5.5.28" os.version="12.04">5.5.28-0ubuntu0.12.04.3-log</example>
|
135
|
-
<description>Oracle MySQL on Ubuntu</description>
|
136
127
|
<param pos="1" name="service.version"/>
|
137
128
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
138
129
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -142,11 +133,10 @@
|
|
142
133
|
<param pos="0" name="os.product" value="Linux"/>
|
143
134
|
<param pos="2" name="os.version"/>
|
144
135
|
</fingerprint>
|
145
|
-
|
146
136
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})-(?:Debian_)?\dubuntu(\d{1,2}\.\d\d)[.\d]*(?:-log)?$">
|
137
|
+
<description>Oracle MySQL on Ubuntu</description>
|
147
138
|
<example service.version="5.0.22" os.version="6.06">5.0.22-Debian_0ubuntu6.06.14-log</example>
|
148
139
|
<example service.version="5.1.41" os.version="12.10">5.1.41-3ubuntu12.10</example>
|
149
|
-
<description>Oracle MySQL on Ubuntu</description>
|
150
140
|
<param pos="1" name="service.version"/>
|
151
141
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
152
142
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -156,8 +146,8 @@
|
|
156
146
|
<param pos="0" name="os.product" value="Linux"/>
|
157
147
|
<param pos="2" name="os.version"/>
|
158
148
|
</fingerprint>
|
159
|
-
|
160
149
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})[-_](?:Ubuntu[_-])?(?:Debian[_-])?\d{1,2}(?:~exp1)?ubuntu\d{1,2}(?:\.\d)?(?:-log)?$">
|
150
|
+
<description>Oracle MySQL on Ubuntu where trailing digits aren't OS version</description>
|
161
151
|
<example service.version="5.0.45">5.0.45-Debian_1ubuntu3.4</example>
|
162
152
|
<example service.version="5.0.51a">5.0.51a-3ubuntu5.5</example>
|
163
153
|
<example service.version="5.0.51a">5.0.51a-3ubuntu5.8-log</example>
|
@@ -165,7 +155,6 @@
|
|
165
155
|
<example service.version="5.1.58">5.1.58-1ubuntu1</example>
|
166
156
|
<example service.version="4.0.24">4.0.24_Debian-10ubuntu2-log</example>
|
167
157
|
<example service.version="5.6.19">5.6.19-1~exp1ubuntu2-log</example>
|
168
|
-
<description>Oracle MySQL on Ubuntu where trailing digits aren't OS version</description>
|
169
158
|
<param pos="1" name="service.version"/>
|
170
159
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
171
160
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -174,11 +163,10 @@
|
|
174
163
|
<param pos="0" name="os.family" value="Linux"/>
|
175
164
|
<param pos="0" name="os.product" value="Linux"/>
|
176
165
|
</fingerprint>
|
177
|
-
|
178
166
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb\.sury\.org~precise\+\d(?:-log)?$">
|
167
|
+
<description>Oracle MySQL on Ubuntu 12.04 (Precise Pangolin) packaged by deb.sury.org</description>
|
179
168
|
<example service.version="5.6.19-1">5.6.19-1+deb.sury.org~precise+1</example>
|
180
169
|
<example service.version="5.6.20-1">5.6.20-1+deb.sury.org~precise+1-log</example>
|
181
|
-
<description>Oracle MySQL on Ubuntu 12.04 (Precise Pangolin) packaged by deb.sury.org</description>
|
182
170
|
<param pos="1" name="service.version"/>
|
183
171
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
184
172
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -188,11 +176,10 @@
|
|
188
176
|
<param pos="0" name="os.product" value="Linux"/>
|
189
177
|
<param pos="0" name="os.version" value="12.04"/>
|
190
178
|
</fingerprint>
|
191
|
-
|
192
179
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+deb\.sury\.org~trusty\+\d(?:-log)?$">
|
180
|
+
<description>Oracle MySQL on Ubuntu 14.04 (Trusty Tahr) packaged by deb.sury.org</description>
|
193
181
|
<example service.version="5.6.21-1">5.6.21-1+deb.sury.org~trusty+1</example>
|
194
182
|
<example service.version="5.6.19-1">5.6.19-1+deb.sury.org~trusty+1-log</example>
|
195
|
-
<description>Oracle MySQL on Ubuntu 14.04 (Trusty Tahr) packaged by deb.sury.org</description>
|
196
183
|
<param pos="1" name="service.version"/>
|
197
184
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
198
185
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -202,12 +189,11 @@
|
|
202
189
|
<param pos="0" name="os.product" value="Linux"/>
|
203
190
|
<param pos="0" name="os.version" value="14.04"/>
|
204
191
|
</fingerprint>
|
205
|
-
|
206
192
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+(?:squeeze\d|deb6u1)(?:-log)?$">
|
193
|
+
<description>Oracle MySQL on Debian 6.0 (squeeze)</description>
|
207
194
|
<example service.version="5.1.66-0">5.1.66-0+squeeze1</example>
|
208
195
|
<example service.version="5.1.66-0">5.1.66-0+squeeze1-log</example>
|
209
196
|
<example service.version="5.1.73-1">5.1.73-1+deb6u1</example>
|
210
|
-
<description>Oracle MySQL on Debian 6.0 (squeeze)</description>
|
211
197
|
<param pos="1" name="service.version"/>
|
212
198
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
213
199
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -217,11 +203,10 @@
|
|
217
203
|
<param pos="0" name="os.product" value="Linux"/>
|
218
204
|
<param pos="0" name="os.version" value="6.0"/>
|
219
205
|
</fingerprint>
|
220
|
-
|
221
206
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+wheezy\d(?:-log)?$">
|
207
|
+
<description>Oracle MySQL on Debian 7.0 (wheezy)</description>
|
222
208
|
<example service.version="5.5.41-0">5.5.41-0+wheezy1</example>
|
223
209
|
<example service.version="5.5.35-0">5.5.35-0+wheezy1-log</example>
|
224
|
-
<description>Oracle MySQL on Debian 7.0 (wheezy)</description>
|
225
210
|
<param pos="1" name="service.version"/>
|
226
211
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
227
212
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -231,12 +216,11 @@
|
|
231
216
|
<param pos="0" name="os.product" value="Linux"/>
|
232
217
|
<param pos="0" name="os.version" value="7.0"/>
|
233
218
|
</fingerprint>
|
234
|
-
|
235
219
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.[^+]+)\+lenny\d*(?:\+spu\d)?(?:-log)?$">
|
220
|
+
<description>Oracle MySQL on Debian 5.0 (lenny)</description>
|
236
221
|
<example service.version="5.0.51a-24">5.0.51a-24+lenny1-log</example>
|
237
222
|
<example service.version="5.0.51a-24">5.0.51a-24+lenny2</example>
|
238
223
|
<example service.version="5.0.51a-24">5.0.51a-24+lenny2+spu1-log</example>
|
239
|
-
<description>Oracle MySQL on Debian 5.0 (lenny)</description>
|
240
224
|
<param pos="1" name="service.version"/>
|
241
225
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
242
226
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -246,10 +230,9 @@
|
|
246
230
|
<param pos="0" name="os.product" value="Linux"/>
|
247
231
|
<param pos="0" name="os.version" value="5.0"/>
|
248
232
|
</fingerprint>
|
249
|
-
|
250
233
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d~bpo50">
|
251
|
-
<example service.version="5.1.49">5.1.49-3~bpo50+1-log</example>
|
252
234
|
<description>Oracle MySQL Backport on Debian 5.0 (lenny)</description>
|
235
|
+
<example service.version="5.1.49">5.1.49-3~bpo50+1-log</example>
|
253
236
|
<param pos="1" name="service.version"/>
|
254
237
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
255
238
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -259,10 +242,9 @@
|
|
259
242
|
<param pos="0" name="os.product" value="Linux"/>
|
260
243
|
<param pos="0" name="os.version" value="5.0"/>
|
261
244
|
</fingerprint>
|
262
|
-
|
263
245
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}).*~?bpo40(?:\+\d)?(?:-log)?$">
|
264
|
-
<example service.version="5.0.51a">5.0.51a-24+lenny2~bpo40+1-log</example>
|
265
246
|
<description>Oracle MySQL Backport on Debian 4.0 (etch)</description>
|
247
|
+
<example service.version="5.0.51a">5.0.51a-24+lenny2~bpo40+1-log</example>
|
266
248
|
<param pos="1" name="service.version"/>
|
267
249
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
268
250
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -272,10 +254,9 @@
|
|
272
254
|
<param pos="0" name="os.product" value="Linux"/>
|
273
255
|
<param pos="0" name="os.version" value="4.0"/>
|
274
256
|
</fingerprint>
|
275
|
-
|
276
257
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-Debian.*~?bpo31(?:\+\d)?(?:-log)?$">
|
277
|
-
<example service.version="5.0.32">5.0.32-Debian_7etch5~bpo31+1-log</example>
|
278
258
|
<description>Oracle MySQL Backport on Debian 3.1 (sarge)</description>
|
259
|
+
<example service.version="5.0.32">5.0.32-Debian_7etch5~bpo31+1-log</example>
|
279
260
|
<param pos="1" name="service.version"/>
|
280
261
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
281
262
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -287,9 +268,9 @@
|
|
287
268
|
</fingerprint>
|
288
269
|
<!-- FIXFIX -->
|
289
270
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-Debian_\d~?bpo\.?\d">
|
271
|
+
<description>Oracle MySQL Backport on Debian</description>
|
290
272
|
<example service.version="5.0.22">5.0.22-Debian_2bpo1</example>
|
291
273
|
<example service.version="5.0.32">5.0.32-Debian_7~bpo.1-log</example>
|
292
|
-
<description>Oracle MySQL Backport on Debian</description>
|
293
274
|
<param pos="1" name="service.version"/>
|
294
275
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
295
276
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -298,11 +279,10 @@
|
|
298
279
|
<param pos="0" name="os.family" value="Linux"/>
|
299
280
|
<param pos="0" name="os.product" value="Linux"/>
|
300
281
|
</fingerprint>
|
301
|
-
|
302
282
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})-Debian_\d?etch\d*(?:-log)?$">
|
283
|
+
<description>Oracle MySQL on Debian 4.0 (etch)</description>
|
303
284
|
<example service.version="4.1.11">4.1.11-Debian_etch1-log</example>
|
304
285
|
<example service.version="5.0.32">5.0.32-Debian_7etch6-log</example>
|
305
|
-
<description>Oracle MySQL on Debian 4.0 (etch)</description>
|
306
286
|
<param pos="1" name="service.version"/>
|
307
287
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
308
288
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -312,11 +292,10 @@
|
|
312
292
|
<param pos="0" name="os.product" value="Linux"/>
|
313
293
|
<param pos="0" name="os.version" value="4.0"/>
|
314
294
|
</fingerprint>
|
315
|
-
|
316
295
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})[_-]Debian[_-]\d{1,2}sarge\d*(?:-log)?$">
|
296
|
+
<description>Oracle MySQL on Debian 3.1 (sarge)</description>
|
317
297
|
<example service.version="4.0.24">4.0.24_Debian-10sarge2-log</example>
|
318
298
|
<example service.version="4.1.11">4.1.11-Debian_4sarge7-log</example>
|
319
|
-
<description>Oracle MySQL on Debian 3.1 (sarge)</description>
|
320
299
|
<param pos="1" name="service.version"/>
|
321
300
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
322
301
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -326,10 +305,9 @@
|
|
326
305
|
<param pos="0" name="os.product" value="Linux"/>
|
327
306
|
<param pos="0" name="os.version" value="3.1"/>
|
328
307
|
</fingerprint>
|
329
|
-
|
330
308
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})[_-]Debian[_-]\d{1,2}woody\d*(?:-log)?$">
|
331
|
-
<example service.version="4.0.24">4.0.24_Debian-4woody1</example>
|
332
309
|
<description>Oracle MySQL on Debian 3.0 (woody)</description>
|
310
|
+
<example service.version="4.0.24">4.0.24_Debian-4woody1</example>
|
333
311
|
<param pos="1" name="service.version"/>
|
334
312
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
335
313
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -339,11 +317,10 @@
|
|
339
317
|
<param pos="0" name="os.product" value="Linux"/>
|
340
318
|
<param pos="0" name="os.version" value="3.0"/>
|
341
319
|
</fingerprint>
|
342
|
-
|
343
320
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:[_-]\d{8})?[_-]Debian[_-]\d{1,2}(?:-log)?$">
|
321
|
+
<description>Oracle MySQL on Debian (Generic match)</description>
|
344
322
|
<example service.version="4.0.23">4.0.23_Debian-3-log</example>
|
345
323
|
<example service.version="4.0.31">4.0.31-20070605_Debian-7-log</example>
|
346
|
-
<description>Oracle MySQL on Debian (Generic match)</description>
|
347
324
|
<param pos="1" name="service.version"/>
|
348
325
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
349
326
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -352,10 +329,9 @@
|
|
352
329
|
<param pos="0" name="os.family" value="Linux"/>
|
353
330
|
<param pos="0" name="os.product" value="Linux"/>
|
354
331
|
</fingerprint>
|
355
|
-
|
356
332
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,2})(?:-rc)?[_-]Debian[_-]\d{1,2}~ppa\d(?:-log)?$">
|
357
|
-
<example service.version="5.1.22">5.1.22-rc-Debian_2~ppa5-log</example>
|
358
333
|
<description>Oracle MySQL on Debian (Generic match) using PPA</description>
|
334
|
+
<example service.version="5.1.22">5.1.22-rc-Debian_2~ppa5-log</example>
|
359
335
|
<param pos="1" name="service.version"/>
|
360
336
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
361
337
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -364,13 +340,12 @@
|
|
364
340
|
<param pos="0" name="os.family" value="Linux"/>
|
365
341
|
<param pos="0" name="os.product" value="Linux"/>
|
366
342
|
</fingerprint>
|
367
|
-
|
368
343
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2})?(?:-Debian)?(?:-Dotdeb)?[-~_\d\.]+dotdeb\.\d(?:-log)?$">
|
344
|
+
<description>Oracle MySQL packaged by DotDeb.org</description>
|
369
345
|
<example service.version="5.1.54">5.1.54-0.dotdeb.0</example>
|
370
346
|
<example service.version="5.1.58">5.1.58-1~dotdeb.0</example>
|
371
347
|
<example service.version="5.5.30">5.5.30-1~dotdeb.0-log</example>
|
372
348
|
<example service.version="5.1.30">5.1.30-Dotdeb_0.dotdeb.0-log</example>
|
373
|
-
<description>Oracle MySQL packaged by DotDeb.org</description>
|
374
349
|
<param pos="1" name="service.version"/>
|
375
350
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
376
351
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -379,23 +354,21 @@
|
|
379
354
|
<param pos="0" name="os.family" value="Linux"/>
|
380
355
|
<param pos="0" name="os.product" value="Linux"/>
|
381
356
|
</fingerprint>
|
382
|
-
|
383
357
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-alpha)?(?:-beta)?(?:-gamma)?(?:-rc)?-standard(?:-log)?$">
|
358
|
+
<description>Oracle MySQL Standard Edition</description>
|
384
359
|
<example service.version="5.0.13">5.0.13-rc-standard-log</example>
|
385
360
|
<example service.version="5.0.37">5.0.37-standard</example>
|
386
361
|
<example service.version="5.0.51a">5.0.51a-standard-log</example>
|
387
|
-
<description>Oracle MySQL Standard Edition</description>
|
388
362
|
<param pos="1" name="service.version"/>
|
389
363
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
390
364
|
<param pos="0" name="service.family" value="MySQL"/>
|
391
365
|
<param pos="0" name="service.product" value="MySQL"/>
|
392
366
|
<param pos="0" name="service.edition" value="Standard Edition"/>
|
393
367
|
</fingerprint>
|
394
|
-
|
395
368
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-pro(?:-gpl)?-nt(?:-log)?$">
|
369
|
+
<description>Oracle MySQL Commercial Edition with Named Pipes (Windows)</description>
|
396
370
|
<example service.version="5.0.24">5.0.24-pro-nt</example>
|
397
371
|
<example service.version="4.1.25">4.1.25-pro-gpl-nt-log</example>
|
398
|
-
<description>Oracle MySQL Commercial Edition with Named Pipes (Windows)</description>
|
399
372
|
<param pos="1" name="service.version"/>
|
400
373
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
401
374
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -404,32 +377,29 @@
|
|
404
377
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
405
378
|
<param pos="0" name="os.family" value="Windows"/>
|
406
379
|
</fingerprint>
|
407
|
-
|
408
380
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-pro(?:-gpl)?(?:-cert)?(?:-log)?$">
|
381
|
+
<description>Oracle MySQL Commercial Edition</description>
|
409
382
|
<example service.version="4.1.23">4.1.23-pro-gpl-log</example>
|
410
383
|
<example service.version="5.0.17c">5.0.17c-pro-gpl-cert</example>
|
411
|
-
<description>Oracle MySQL Commercial Edition</description>
|
412
384
|
<param pos="1" name="service.version"/>
|
413
385
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
414
386
|
<param pos="0" name="service.family" value="MySQL"/>
|
415
387
|
<param pos="0" name="service.product" value="MySQL"/>
|
416
388
|
<param pos="0" name="service.edition" value="Commercial Edition"/>
|
417
389
|
</fingerprint>
|
418
|
-
|
419
390
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}sp1)">
|
391
|
+
<description>Oracle MySQL Enterprise Edition</description>
|
420
392
|
<example service.version="5.0.82sp1">5.0.82sp1</example>
|
421
393
|
<example service.version="5.1.46sp1">5.1.46sp1-enterprise-gpl-advanced-log</example>
|
422
|
-
<description>Oracle MySQL Enterprise Edition</description>
|
423
394
|
<param pos="1" name="service.version"/>
|
424
395
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
425
396
|
<param pos="0" name="service.family" value="MySQL"/>
|
426
397
|
<param pos="0" name="service.product" value="MySQL"/>
|
427
398
|
<param pos="0" name="service.edition" value="Enterprise Edition"/>
|
428
399
|
</fingerprint>
|
429
|
-
|
430
400
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-enterprise-nt">
|
431
|
-
<example service.version="5.0.84">5.0.84-enterprise-nt</example>
|
432
401
|
<description>Oracle MySQL Enterprise Edition with Named Pipes (Windows)</description>
|
402
|
+
<example service.version="5.0.84">5.0.84-enterprise-nt</example>
|
433
403
|
<param pos="1" name="service.version"/>
|
434
404
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
435
405
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -438,57 +408,52 @@
|
|
438
408
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
439
409
|
<param pos="0" name="os.family" value="Windows"/>
|
440
410
|
</fingerprint>
|
441
|
-
|
442
411
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-rc)?-enterprise">
|
412
|
+
<description>Oracle MySQL Enterprise Edition</description>
|
443
413
|
<example service.version="5.1.26">5.1.26-rc-enterprise-gpl-log</example>
|
444
414
|
<example service.version="5.5.27">5.5.27-enterprise-commercial-advanced-log</example>
|
445
|
-
<description>Oracle MySQL Enterprise Edition</description>
|
446
415
|
<param pos="1" name="service.version"/>
|
447
416
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
448
417
|
<param pos="0" name="service.family" value="MySQL"/>
|
449
418
|
<param pos="0" name="service.product" value="MySQL"/>
|
450
419
|
<param pos="0" name="service.edition" value="Enterprise Edition"/>
|
451
420
|
</fingerprint>
|
452
|
-
|
453
421
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}-ndb-\d\.\d{1,2}\.\h{1,3})">
|
422
|
+
<description>Oracle MySQL Cluster Edition</description>
|
454
423
|
<example service.version="5.1.30-ndb-6.3.20">5.1.30-ndb-6.3.20-cluster-gpl-log</example>
|
455
424
|
<example service.version="5.5.20-ndb-7.2.5">5.5.20-ndb-7.2.5-gpl</example>
|
456
|
-
<description>Oracle MySQL Cluster Edition</description>
|
457
425
|
<param pos="1" name="service.version"/>
|
458
426
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
459
427
|
<param pos="0" name="service.family" value="MySQL"/>
|
460
428
|
<param pos="0" name="service.product" value="MySQL"/>
|
461
429
|
<param pos="0" name="service.edition" value="Cluster Edition"/>
|
462
430
|
</fingerprint>
|
463
|
-
|
464
431
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-CLUSTERS?(?:-log)?$" flags="REG_ICASE">
|
432
|
+
<description>Oracle MySQL Cluster Edition</description>
|
465
433
|
<example service.version="4.1.21">4.1.21-CLUSTERS</example>
|
466
434
|
<example service.version="5.0.46">5.0.46-cluster</example>
|
467
|
-
<description>Oracle MySQL Cluster Edition</description>
|
468
435
|
<param pos="1" name="service.version"/>
|
469
436
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
470
437
|
<param pos="0" name="service.family" value="MySQL"/>
|
471
438
|
<param pos="0" name="service.product" value="MySQL"/>
|
472
439
|
<param pos="0" name="service.edition" value="Cluster Edition"/>
|
473
440
|
</fingerprint>
|
474
|
-
|
475
441
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-classic(?:-log)?">
|
476
|
-
<example service.version="5.0.86">5.0.86-classic-log</example>
|
477
442
|
<description>Oracle MySQL Classic Edition</description>
|
443
|
+
<example service.version="5.0.86">5.0.86-classic-log</example>
|
478
444
|
<param pos="1" name="service.version"/>
|
479
445
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
480
446
|
<param pos="0" name="service.family" value="MySQL"/>
|
481
447
|
<param pos="0" name="service.product" value="MySQL"/>
|
482
448
|
<param pos="0" name="service.edition" value="Classic Edition"/>
|
483
449
|
</fingerprint>
|
484
|
-
|
485
450
|
<!-- Linux only - http://www.percona.com/services/mysql-support/supported-platforms -->
|
486
451
|
<!-- Build list - http://www.percona.com/doc/percona-server/5.1/release-notes/release-notes_index.html -->
|
487
452
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}-?rel\d\d\.\d)(?:-log)?">
|
453
|
+
<description>Percona Server (MySQL fork) match w/ 'rel'</description>
|
488
454
|
<example service.version="5.1.57-rel12.8">5.1.57-rel12.8</example>
|
489
455
|
<example service.version="5.1.60rel13.1">5.1.60rel13.1-log</example>
|
490
456
|
<example service.version="5.1.67-rel14.3">5.1.67-rel14.3-log</example>
|
491
|
-
<description>Percona Server (MySQL fork) match w/ 'rel'</description>
|
492
457
|
<param pos="1" name="service.version"/>
|
493
458
|
<param pos="0" name="service.vendor" value="Percona"/>
|
494
459
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -496,10 +461,9 @@
|
|
496
461
|
<param pos="0" name="os.family" value="Linux"/>
|
497
462
|
<param pos="0" name="os.product" value="Linux"/>
|
498
463
|
</fingerprint>
|
499
|
-
|
500
464
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d{1,2}-rel\d\d\.\d{1,2}(?:-log)?$">
|
501
|
-
<example service.version="5.6.17">5.6.17-65.0-rel65.0</example>
|
502
465
|
<description>Percona Server (MySQL fork) match w/ 'rel' variant 1</description>
|
466
|
+
<example service.version="5.6.17">5.6.17-65.0-rel65.0</example>
|
503
467
|
<param pos="1" name="service.version"/>
|
504
468
|
<param pos="0" name="service.vendor" value="Percona"/>
|
505
469
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -507,12 +471,11 @@
|
|
507
471
|
<param pos="0" name="os.family" value="Linux"/>
|
508
472
|
<param pos="0" name="os.product" value="Linux"/>
|
509
473
|
</fingerprint>
|
510
|
-
|
511
474
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-(?:rc)?[Pp]ercona">
|
475
|
+
<description>Percona Server (MySQL fork) w/ percona in banner</description>
|
512
476
|
<example service.version="5.1.50">5.1.50-percona</example>
|
513
477
|
<example service.version="5.5.27">5.5.27-percona-sure1-log</example>
|
514
478
|
<example service.version="5.5.7">5.5.7-rcPercona-Server-log</example>
|
515
|
-
<description>Percona Server (MySQL fork) w/ percona in banner</description>
|
516
479
|
<param pos="1" name="service.version"/>
|
517
480
|
<param pos="0" name="service.vendor" value="Percona"/>
|
518
481
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -520,12 +483,11 @@
|
|
520
483
|
<param pos="0" name="os.family" value="Linux"/>
|
521
484
|
<param pos="0" name="os.product" value="Linux"/>
|
522
485
|
</fingerprint>
|
523
|
-
|
524
486
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d{1,2}(?:-\d\d)?(?:-log)?$">
|
487
|
+
<description>Percona Server (MySQL fork) (just version number match)</description>
|
525
488
|
<example service.version="5.1.73">5.1.73-14.12</example>
|
526
489
|
<example service.version="5.6.20">5.6.20-68.0-56</example>
|
527
490
|
<example service.version="5.6.16">5.6.16-64.2-25-log</example>
|
528
|
-
<description>Percona Server (MySQL fork) (just version number match)</description>
|
529
491
|
<param pos="1" name="service.version"/>
|
530
492
|
<param pos="0" name="service.vendor" value="Percona"/>
|
531
493
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -533,11 +495,10 @@
|
|
533
495
|
<param pos="0" name="os.family" value="Linux"/>
|
534
496
|
<param pos="0" name="os.product" value="Linux"/>
|
535
497
|
</fingerprint>
|
536
|
-
|
537
498
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-rc\d\d\.\d(?:-log)?$">
|
499
|
+
<description>Percona Server (MySQL fork) match w/ 'rc'</description>
|
538
500
|
<example service.version="5.6.13">5.6.13-rc60.6</example>
|
539
501
|
<example service.version="5.6.13">5.6.13-rc61.0-log</example>
|
540
|
-
<description>Percona Server (MySQL fork) match w/ 'rc'</description>
|
541
502
|
<param pos="1" name="service.version"/>
|
542
503
|
<param pos="0" name="service.vendor" value="Percona"/>
|
543
504
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -545,10 +506,9 @@
|
|
545
506
|
<param pos="0" name="os.family" value="Linux"/>
|
546
507
|
<param pos="0" name="os.product" value="Linux"/>
|
547
508
|
</fingerprint>
|
548
|
-
|
549
509
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d-\d{3}\.trusty(?:-log)?$">
|
550
|
-
<example service.version="5.6.17">5.6.17-65.0-583.trusty</example>
|
551
510
|
<description>Percona Server (MySQL fork) on Ubuntu 14.04 (Trusty Tahr)</description>
|
511
|
+
<example service.version="5.6.17">5.6.17-65.0-583.trusty</example>
|
552
512
|
<param pos="1" name="service.version"/>
|
553
513
|
<param pos="0" name="service.vendor" value="Percona"/>
|
554
514
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -558,10 +518,9 @@
|
|
558
518
|
<param pos="0" name="os.product" value="Linux"/>
|
559
519
|
<param pos="0" name="os.version" value="14.04"/>
|
560
520
|
</fingerprint>
|
561
|
-
|
562
521
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d-\d{3}\.saucy(?:-log)?$">
|
563
|
-
<example service.version="5.6.17">5.6.17-65.0-587.saucy</example>
|
564
522
|
<description>Percona Server (MySQL fork) on Ubuntu 13.10 (Saucy Salamander)</description>
|
523
|
+
<example service.version="5.6.17">5.6.17-65.0-587.saucy</example>
|
565
524
|
<param pos="1" name="service.version"/>
|
566
525
|
<param pos="0" name="service.vendor" value="Percona"/>
|
567
526
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -571,10 +530,9 @@
|
|
571
530
|
<param pos="0" name="os.product" value="Linux"/>
|
572
531
|
<param pos="0" name="os.version" value="13.10"/>
|
573
532
|
</fingerprint>
|
574
|
-
|
575
533
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d-\d{3}\.quantal(?:-log)?$">
|
576
|
-
<example service.version="5.6.16">5.6.16-64.2-569.quantal-log</example>
|
577
534
|
<description>Percona Server (MySQL fork) on Ubuntu 12.10 (Quantal Quetzal)</description>
|
535
|
+
<example service.version="5.6.16">5.6.16-64.2-569.quantal-log</example>
|
578
536
|
<param pos="1" name="service.version"/>
|
579
537
|
<param pos="0" name="service.vendor" value="Percona"/>
|
580
538
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -584,10 +542,9 @@
|
|
584
542
|
<param pos="0" name="os.product" value="Linux"/>
|
585
543
|
<param pos="0" name="os.version" value="12.10"/>
|
586
544
|
</fingerprint>
|
587
|
-
|
588
545
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d-\d{3}\.precise(?:-log)?$">
|
589
|
-
<example service.version="5.6.16">5.6.16-64.2-569.precise-log</example>
|
590
546
|
<description>Percona Server (MySQL fork) on Ubuntu 12.04 LTS (Precise Pangolin)</description>
|
547
|
+
<example service.version="5.6.16">5.6.16-64.2-569.precise-log</example>
|
591
548
|
<param pos="1" name="service.version"/>
|
592
549
|
<param pos="0" name="service.vendor" value="Percona"/>
|
593
550
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -597,10 +554,9 @@
|
|
597
554
|
<param pos="0" name="os.product" value="Linux"/>
|
598
555
|
<param pos="0" name="os.version" value="12.04"/>
|
599
556
|
</fingerprint>
|
600
|
-
|
601
557
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d-\d{3}\.wheezy(?:-log)?$">
|
602
|
-
<example service.version="5.5.36">5.5.36-34.2-648.wheezy-log</example>
|
603
558
|
<description>Percona Server (MySQL fork) on Debian 7.0 (wheezy)</description>
|
559
|
+
<example service.version="5.5.36">5.5.36-34.2-648.wheezy-log</example>
|
604
560
|
<param pos="1" name="service.version"/>
|
605
561
|
<param pos="0" name="service.vendor" value="Percona"/>
|
606
562
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -610,10 +566,9 @@
|
|
610
566
|
<param pos="0" name="os.product" value="Linux"/>
|
611
567
|
<param pos="0" name="os.version" value="7.0"/>
|
612
568
|
</fingerprint>
|
613
|
-
|
614
569
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d-\d{3}\.squeeze(?:-log)?$">
|
615
|
-
<example service.version="5.5.36">5.5.36-34.2-648.squeeze</example>
|
616
570
|
<description>Percona Server (MySQL fork) on Debian 6.0 (squeeze)</description>
|
571
|
+
<example service.version="5.5.36">5.5.36-34.2-648.squeeze</example>
|
617
572
|
<param pos="1" name="service.version"/>
|
618
573
|
<param pos="0" name="service.vendor" value="Percona"/>
|
619
574
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -623,56 +578,50 @@
|
|
623
578
|
<param pos="0" name="os.product" value="Linux"/>
|
624
579
|
<param pos="0" name="os.version" value="6.0"/>
|
625
580
|
</fingerprint>
|
626
|
-
|
627
581
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-nmm">
|
582
|
+
<description>Oracle MySQL (nmm variant)</description>
|
628
583
|
<example service.version="4.0.27">4.0.27-nmm1-log</example>
|
629
584
|
<example service.version="4.1.22">4.1.22-nmm-1-log</example>
|
630
|
-
<description>Oracle MySQL (nmm variant)</description>
|
631
585
|
<param pos="1" name="service.version"/>
|
632
586
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
633
587
|
<param pos="0" name="service.family" value="MySQL"/>
|
634
588
|
<param pos="0" name="service.product" value="MySQL"/>
|
635
589
|
</fingerprint>
|
636
|
-
|
637
590
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-nightly-\d{8}(?:-log)?$">
|
638
|
-
<example service.version="3.23.59">3.23.59-nightly-20050301-log</example>
|
639
591
|
<description>Oracle MySQL nightly build</description>
|
592
|
+
<example service.version="3.23.59">3.23.59-nightly-20050301-log</example>
|
640
593
|
<param pos="1" name="service.version"/>
|
641
594
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
642
595
|
<param pos="0" name="service.family" value="MySQL"/>
|
643
596
|
<param pos="0" name="service.product" value="MySQL"/>
|
644
597
|
</fingerprint>
|
645
|
-
|
646
598
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-SERVER">
|
647
|
-
<example service.version="5.1.30">5.1.30-SERVER-104</example>
|
648
599
|
<description>Oracle MySQL (SERVER variant)</description>
|
600
|
+
<example service.version="5.1.30">5.1.30-SERVER-104</example>
|
649
601
|
<param pos="1" name="service.version"/>
|
650
602
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
651
603
|
<param pos="0" name="service.family" value="MySQL"/>
|
652
604
|
<param pos="0" name="service.product" value="MySQL"/>
|
653
605
|
</fingerprint>
|
654
|
-
|
655
606
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-ISPrime">
|
656
|
-
<example service.version="4.0.15a">4.0.15a-ISPrime</example>
|
657
607
|
<description>Oracle MySQL (ISPrime variant)</description>
|
608
|
+
<example service.version="4.0.15a">4.0.15a-ISPrime</example>
|
658
609
|
<param pos="1" name="service.version"/>
|
659
610
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
660
611
|
<param pos="0" name="service.family" value="MySQL"/>
|
661
612
|
<param pos="0" name="service.product" value="MySQL"/>
|
662
613
|
</fingerprint>
|
663
|
-
|
664
614
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-rc-\d\.\d{1,2}\.\h{1,3}">
|
665
|
-
<example service.version="5.1.26">5.1.26-rc-5.1.26rc-log</example>
|
666
615
|
<description>Oracle MySQL possibly Debian specific</description>
|
616
|
+
<example service.version="5.1.26">5.1.26-rc-5.1.26rc-log</example>
|
667
617
|
<param pos="1" name="service.version"/>
|
668
618
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
669
619
|
<param pos="0" name="service.family" value="MySQL"/>
|
670
620
|
<param pos="0" name="service.product" value="MySQL"/>
|
671
621
|
</fingerprint>
|
672
|
-
|
673
622
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-ius(?:-log)?$">
|
674
|
-
<example service.version="5.1.66">5.1.66-ius-log</example>
|
675
623
|
<description>Oracle MySQL packaged for RHEL/CentOS by IUS</description>
|
624
|
+
<example service.version="5.1.66">5.1.66-ius-log</example>
|
676
625
|
<param pos="1" name="service.version"/>
|
677
626
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
678
627
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -680,12 +629,10 @@
|
|
680
629
|
<param pos="0" name="os.family" value="Linux"/>
|
681
630
|
<param pos="0" name="os.product" value="Linux"/>
|
682
631
|
</fingerprint>
|
683
|
-
|
684
632
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})[\.-]d\d{1,2}-ourdelta\d{0,2}(?:-log)?$">
|
633
|
+
<description>Oracle MySQL tweaked and packaged by OurDelta</description>
|
685
634
|
<example service.version="5.0.67">5.0.67.d7-ourdelta-log</example>
|
686
635
|
<example service.version="5.0.87">5.0.87-d10-ourdelta65-log</example>
|
687
|
-
<description>Oracle MySQL tweaked and packaged by OurDelta</description>
|
688
|
-
<!-- They also have a MariaDB based one based on 5.1 -->
|
689
636
|
<param pos="1" name="service.version"/>
|
690
637
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
691
638
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -693,21 +640,19 @@
|
|
693
640
|
<param pos="0" name="os.family" value="Linux"/>
|
694
641
|
<param pos="0" name="os.product" value="Linux"/>
|
695
642
|
</fingerprint>
|
696
|
-
|
697
643
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-Alibaba(?:-rds)?-\d{6}(?:-log)?$">
|
644
|
+
<description>Oracle MySQL Alibaba build? distro? Aliyun.com hosted?</description>
|
698
645
|
<example service.version="5.1.61">5.1.61-Alibaba-121011-log</example>
|
699
646
|
<example service.version="5.1.61">5.1.61-Alibaba-rds-201404-log</example>
|
700
|
-
<description>Oracle MySQL Alibaba build? distro? Aliyun.com hosted?</description>
|
701
647
|
<param pos="1" name="service.version"/>
|
702
648
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
703
649
|
<param pos="0" name="service.family" value="MySQL"/>
|
704
650
|
<param pos="0" name="service.product" value="MySQL"/>
|
705
651
|
</fingerprint>
|
706
|
-
|
707
652
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB-cll-lve$">
|
653
|
+
<description>MariaDB MariaDB on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
708
654
|
<example service.version="5.5.34">5.5.34-MariaDB-cll-lve</example>
|
709
655
|
<example service.version="5.5.5">5.5.5-10.0.15-MariaDB-cll-lve</example>
|
710
|
-
<description>MariaDB MariaDB on CloudLinux in a Lightweight Virtual Environment (LVE)</description>
|
711
656
|
<param pos="1" name="service.version"/>
|
712
657
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
713
658
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -716,12 +661,11 @@
|
|
716
661
|
<param pos="0" name="os.family" value="Linux"/>
|
717
662
|
<param pos="0" name="os.product" value="Linux"/>
|
718
663
|
</fingerprint>
|
719
|
-
|
720
664
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~wheezy(?:-log)?$">
|
665
|
+
<description>MariaDB MariaDB on Debian 7.0 (wheezy)</description>
|
721
666
|
<example service.version="5.5.37">5.5.37-MariaDB-1~wheezy-log</example>
|
722
667
|
<example service.version="10.0.11">10.0.11-MariaDB-1~wheezy-log</example>
|
723
668
|
<example service.version="5.5.5">5.5.5-10.0.14-MariaDB-1~wheezy-log</example>
|
724
|
-
<description>MariaDB MariaDB on Debian 7.0 (wheezy)</description>
|
725
669
|
<param pos="1" name="service.version"/>
|
726
670
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
727
671
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -731,11 +675,10 @@
|
|
731
675
|
<param pos="0" name="os.product" value="Linux"/>
|
732
676
|
<param pos="0" name="os.version" value="7.0"/>
|
733
677
|
</fingerprint>
|
734
|
-
|
735
678
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~squeeze(?:-log)?$">
|
679
|
+
<description>MariaDB MariaDB on Debian 6.0 (squeeze)</description>
|
736
680
|
<example service.version="5.5.31">5.5.31-MariaDB-1~squeeze-log</example>
|
737
681
|
<example service.version="5.5.5">5.5.5-10.0.15-MariaDB-1~squeeze-log</example>
|
738
|
-
<description>MariaDB MariaDB on Debian 6.0 (squeeze)</description>
|
739
682
|
<param pos="1" name="service.version"/>
|
740
683
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
741
684
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -745,10 +688,9 @@
|
|
745
688
|
<param pos="0" name="os.product" value="Linux"/>
|
746
689
|
<param pos="0" name="os.version" value="6.0"/>
|
747
690
|
</fingerprint>
|
748
|
-
|
749
691
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-MariaDB.+~lenny(?:-log)?$">
|
750
|
-
<example service.version="5.3.2">5.3.2-MariaDB-beta-mariadb102~lenny</example>
|
751
692
|
<description>MariaDB MariaDB on Debian 5.0 (lenny)</description>
|
693
|
+
<example service.version="5.3.2">5.3.2-MariaDB-beta-mariadb102~lenny</example>
|
752
694
|
<param pos="1" name="service.version"/>
|
753
695
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
754
696
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -758,10 +700,9 @@
|
|
758
700
|
<param pos="0" name="os.product" value="Linux"/>
|
759
701
|
<param pos="0" name="os.version" value="5.0"/>
|
760
702
|
</fingerprint>
|
761
|
-
|
762
703
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~sid(?:-log)?$">
|
763
|
-
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-1~sid</example>
|
764
704
|
<description>MariaDB MariaDB on Debian Unstable/No version (sid)</description>
|
705
|
+
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-1~sid</example>
|
765
706
|
<param pos="1" name="service.version"/>
|
766
707
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
767
708
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -770,10 +711,9 @@
|
|
770
711
|
<param pos="0" name="os.family" value="Linux"/>
|
771
712
|
<param pos="0" name="os.product" value="Linux"/>
|
772
713
|
</fingerprint>
|
773
|
-
|
774
714
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\d{1,4})-MariaDB-\dubuntu\d\.(\d{1,2}\.\d\d)[\.\d]*(?:-log)?$">
|
775
|
-
<example service.version="5.5.39" os.version="14.04">5.5.39-MariaDB-0ubuntu0.14.04.1</example>
|
776
715
|
<description>MariaDB MariaDB on Ubuntu</description>
|
716
|
+
<example service.version="5.5.39" os.version="14.04">5.5.39-MariaDB-0ubuntu0.14.04.1</example>
|
777
717
|
<param pos="1" name="service.version"/>
|
778
718
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
779
719
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -783,10 +723,9 @@
|
|
783
723
|
<param pos="0" name="os.product" value="Linux"/>
|
784
724
|
<param pos="2" name="os.version"/>
|
785
725
|
</fingerprint>
|
786
|
-
|
787
726
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~utopic(?:-log)?$">
|
788
|
-
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-1~utopic-log</example>
|
789
727
|
<description>MariaDB MariaDB on Ubuntu 14.10 (Utopic Unicorn)</description>
|
728
|
+
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-1~utopic-log</example>
|
790
729
|
<param pos="1" name="service.version"/>
|
791
730
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
792
731
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -796,10 +735,9 @@
|
|
796
735
|
<param pos="0" name="os.product" value="Linux"/>
|
797
736
|
<param pos="0" name="os.version" value="14.10"/>
|
798
737
|
</fingerprint>
|
799
|
-
|
800
738
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~trusty(?:-log)?$">
|
801
|
-
<example service.version="5.5.5">5.5.5-10.0.15-MariaDB-1~trusty</example>
|
802
739
|
<description>MariaDB MariaDB on Ubuntu 14.04 (Trusty Tahr)</description>
|
740
|
+
<example service.version="5.5.5">5.5.5-10.0.15-MariaDB-1~trusty</example>
|
803
741
|
<param pos="1" name="service.version"/>
|
804
742
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
805
743
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -809,10 +747,9 @@
|
|
809
747
|
<param pos="0" name="os.product" value="Linux"/>
|
810
748
|
<param pos="0" name="os.version" value="14.04"/>
|
811
749
|
</fingerprint>
|
812
|
-
|
813
750
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~saucy(?:-log)?$">
|
814
|
-
<example service.version="5.5.39">5.5.39-MariaDB-1~saucy-log</example>
|
815
751
|
<description>MariaDB MariaDB on Ubuntu 13.10 (Saucy Salamander)</description>
|
752
|
+
<example service.version="5.5.39">5.5.39-MariaDB-1~saucy-log</example>
|
816
753
|
<param pos="1" name="service.version"/>
|
817
754
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
818
755
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -822,10 +759,9 @@
|
|
822
759
|
<param pos="0" name="os.product" value="Linux"/>
|
823
760
|
<param pos="0" name="os.version" value="13.10"/>
|
824
761
|
</fingerprint>
|
825
|
-
|
826
762
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~raring(?:-log)?$">
|
827
|
-
<example service.version="5.5.32">5.5.32-MariaDB-1~raring-log</example>
|
828
763
|
<description>MariaDB MariaDB on Ubuntu 13.04 (Raring Ringtail)</description>
|
764
|
+
<example service.version="5.5.32">5.5.32-MariaDB-1~raring-log</example>
|
829
765
|
<param pos="1" name="service.version"/>
|
830
766
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
831
767
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -835,11 +771,10 @@
|
|
835
771
|
<param pos="0" name="os.product" value="Linux"/>
|
836
772
|
<param pos="0" name="os.version" value="13.04"/>
|
837
773
|
</fingerprint>
|
838
|
-
|
839
774
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~quantal(?:-log)?$">
|
775
|
+
<description>MariaDB MariaDB on Ubuntu 12.10 (Quantal Quetzal)</description>
|
840
776
|
<example service.version="5.5.5">5.5.5-10.0.12-MariaDB-1~quantal-log</example>
|
841
777
|
<example service.version="5.5.38">5.5.38-MariaDB-1~quantal-log</example>
|
842
|
-
<description>MariaDB MariaDB on Ubuntu 12.10 (Quantal Quetzal)</description>
|
843
778
|
<param pos="1" name="service.version"/>
|
844
779
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
845
780
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -849,10 +784,9 @@
|
|
849
784
|
<param pos="0" name="os.product" value="Linux"/>
|
850
785
|
<param pos="0" name="os.version" value="12.10"/>
|
851
786
|
</fingerprint>
|
852
|
-
|
853
787
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~precise(?:-log)?$">
|
854
|
-
<example service.version="5.5.41">5.5.41-MariaDB-1~precise-log</example>
|
855
788
|
<description>MariaDB MariaDB on Ubuntu 12.04 LTS (Precise Pangolin)</description>
|
789
|
+
<example service.version="5.5.41">5.5.41-MariaDB-1~precise-log</example>
|
856
790
|
<param pos="1" name="service.version"/>
|
857
791
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
858
792
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -862,10 +796,9 @@
|
|
862
796
|
<param pos="0" name="os.product" value="Linux"/>
|
863
797
|
<param pos="0" name="os.version" value="12.04"/>
|
864
798
|
</fingerprint>
|
865
|
-
|
866
799
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~lucid(?:-log)?$">
|
867
|
-
<example service.version="5.5.34">5.5.34-MariaDB-1~lucid-log</example>
|
868
800
|
<description>MariaDB MariaDB on Ubuntu 10.04 (Lucid Lynx)</description>
|
801
|
+
<example service.version="5.5.34">5.5.34-MariaDB-1~lucid-log</example>
|
869
802
|
<param pos="1" name="service.version"/>
|
870
803
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
871
804
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -875,10 +808,9 @@
|
|
875
808
|
<param pos="0" name="os.product" value="Linux"/>
|
876
809
|
<param pos="0" name="os.version" value="10.04"/>
|
877
810
|
</fingerprint>
|
878
|
-
|
879
811
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~hardy(?:-log)?$">
|
880
|
-
<example service.version="5.5.34">5.5.34-MariaDB-mariadb122~hardy-log</example>
|
881
812
|
<description>MariaDB MariaDB on Ubuntu 8.04 LTS (Hardy Heron)</description>
|
813
|
+
<example service.version="5.5.34">5.5.34-MariaDB-mariadb122~hardy-log</example>
|
882
814
|
<param pos="1" name="service.version"/>
|
883
815
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
884
816
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -888,10 +820,9 @@
|
|
888
820
|
<param pos="0" name="os.product" value="Linux"/>
|
889
821
|
<param pos="0" name="os.version" value="8.04"/>
|
890
822
|
</fingerprint>
|
891
|
-
|
892
823
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-[Mm]ariaDB.+~trusty-wsrep(?:-log)?$">
|
893
|
-
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~trusty-wsrep-log</example>
|
894
824
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 14.04 (Trusty Tahr)</description>
|
825
|
+
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~trusty-wsrep-log</example>
|
895
826
|
<param pos="1" name="service.version"/>
|
896
827
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
897
828
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -902,10 +833,9 @@
|
|
902
833
|
<param pos="0" name="os.product" value="Linux"/>
|
903
834
|
<param pos="0" name="os.version" value="14.04"/>
|
904
835
|
</fingerprint>
|
905
|
-
|
906
836
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~saucy-wsrep(?:-log)?$">
|
907
|
-
<example service.version="5.5.5">5.5.5-10.0.10-MariaDB-1~saucy-wsrep-log</example>
|
908
837
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 13.10 (Saucy Salamander)</description>
|
838
|
+
<example service.version="5.5.5">5.5.5-10.0.10-MariaDB-1~saucy-wsrep-log</example>
|
909
839
|
<param pos="1" name="service.version"/>
|
910
840
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
911
841
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -916,10 +846,9 @@
|
|
916
846
|
<param pos="0" name="os.product" value="Linux"/>
|
917
847
|
<param pos="0" name="os.version" value="13.10"/>
|
918
848
|
</fingerprint>
|
919
|
-
|
920
849
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~precise-wsrep(?:-log)?$">
|
921
|
-
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~precise-wsrep</example>
|
922
850
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 12.04 (Precise Pangolin)</description>
|
851
|
+
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~precise-wsrep</example>
|
923
852
|
<param pos="1" name="service.version"/>
|
924
853
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
925
854
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -930,10 +859,9 @@
|
|
930
859
|
<param pos="0" name="os.product" value="Linux"/>
|
931
860
|
<param pos="0" name="os.version" value="12.04"/>
|
932
861
|
</fingerprint>
|
933
|
-
|
934
862
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~lucid-wsrep(?:-log)?$">
|
935
|
-
<example service.version="5.5.34">5.5.34-MariaDB-1~lucid-wsrep-log</example>
|
936
863
|
<description>MariaDB MariaDB with Galera Cluster on Ubuntu 10.04 TLS (Lucid Lynx)</description>
|
864
|
+
<example service.version="5.5.34">5.5.34-MariaDB-1~lucid-wsrep-log</example>
|
937
865
|
<param pos="1" name="service.version"/>
|
938
866
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
939
867
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -944,10 +872,9 @@
|
|
944
872
|
<param pos="0" name="os.product" value="Linux"/>
|
945
873
|
<param pos="0" name="os.version" value="10.04"/>
|
946
874
|
</fingerprint>
|
947
|
-
|
948
875
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~wheezy-wsrep(?:-log)?$">
|
949
|
-
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~wheezy-wsrep-log</example>
|
950
876
|
<description>MariaDB MariaDB with Galera Cluster on Debian 7.0 (wheezy)</description>
|
877
|
+
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~wheezy-wsrep-log</example>
|
951
878
|
<param pos="1" name="service.version"/>
|
952
879
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
953
880
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -958,10 +885,9 @@
|
|
958
885
|
<param pos="0" name="os.product" value="Linux"/>
|
959
886
|
<param pos="0" name="os.version" value="7.0"/>
|
960
887
|
</fingerprint>
|
961
|
-
|
962
888
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~squeeze-wsrep(?:-log)?$">
|
963
|
-
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~squeeze-wsrep</example>
|
964
889
|
<description>MariaDB MariaDB with Galera Cluster on Debian 6.0 (squeeze)</description>
|
890
|
+
<example service.version="5.5.5">5.5.5-10.1.1-MariaDB-1~squeeze-wsrep</example>
|
965
891
|
<param pos="1" name="service.version"/>
|
966
892
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
967
893
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -972,10 +898,9 @@
|
|
972
898
|
<param pos="0" name="os.product" value="Linux"/>
|
973
899
|
<param pos="0" name="os.version" value="6.0"/>
|
974
900
|
</fingerprint>
|
975
|
-
|
976
901
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-MariaDB.+~sid-wsrep(?:-log)?$">
|
977
|
-
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-1~sid-wsrep</example>
|
978
902
|
<description>MariaDB MariaDB with Galera Cluster on Debian Unstable/No version (sid)</description>
|
903
|
+
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-1~sid-wsrep</example>
|
979
904
|
<param pos="1" name="service.version"/>
|
980
905
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
981
906
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -985,19 +910,17 @@
|
|
985
910
|
<param pos="0" name="os.family" value="Linux"/>
|
986
911
|
<param pos="0" name="os.product" value="Linux"/>
|
987
912
|
</fingerprint>
|
988
|
-
|
989
913
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-[Mm]ariaDB-wsrep(?:-log)?$">
|
990
|
-
<example service.version="5.5.5">5.5.5-10.0.15-MariaDB-wsrep</example>
|
991
914
|
<description>MariaDB MariaDB with Galera Cluster</description>
|
915
|
+
<example service.version="5.5.5">5.5.5-10.0.15-MariaDB-wsrep</example>
|
992
916
|
<param pos="1" name="service.version"/>
|
993
917
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
994
918
|
<param pos="0" name="service.family" value="MySQL"/>
|
995
919
|
<param pos="0" name="service.product" value="MariaDB"/>
|
996
920
|
<param pos="0" name="service.edition" value="Galera Cluster"/>
|
997
921
|
</fingerprint>
|
998
|
-
|
999
|
-
|
1000
922
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,4})?-[Mm]aria(?:DB)?[-\d]*(?:-debug)?(?:-ga)?(?:-beta)?(?:-mariadb)?[~\.\d]*(?:-log)?$">
|
923
|
+
<description>MariaDB MariaDB</description>
|
1001
924
|
<example service.version="5.1.39">5.1.39-maria-beta</example>
|
1002
925
|
<example service.version="5.3.5">5.3.5-MariaDB-ga-mariadb113-log</example>
|
1003
926
|
<example service.version="5.5.24">5.5.24-MariaDB-mariadb1~0.1</example>
|
@@ -1005,26 +928,23 @@
|
|
1005
928
|
<example service.version="5.5.5">5.5.5-10.0.16-MariaDB-log</example>
|
1006
929
|
<example service.version="5.5.30">5.5.30-MariaDB-debug</example>
|
1007
930
|
<example service.version="5.2.10">5.2.10-MariaDB-mariadb107</example>
|
1008
|
-
<description>MariaDB MariaDB</description>
|
1009
931
|
<param pos="1" name="service.version"/>
|
1010
932
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
1011
933
|
<param pos="0" name="service.family" value="MySQL"/>
|
1012
934
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1013
935
|
</fingerprint>
|
1014
|
-
|
1015
936
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-[Cc]ommunity-[Mm]aria(?:DB)?(?:-log)?$">
|
1016
|
-
<example service.version="5.1.44">5.1.44-community-maria-log</example>
|
1017
937
|
<description>MariaDB MariaDB Community Edition</description>
|
938
|
+
<example service.version="5.1.44">5.1.44-community-maria-log</example>
|
1018
939
|
<param pos="1" name="service.version"/>
|
1019
940
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
1020
941
|
<param pos="0" name="service.family" value="MySQL"/>
|
1021
942
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1022
943
|
<param pos="0" name="service.edition" value="Community Edition"/>
|
1023
944
|
</fingerprint>
|
1024
|
-
|
1025
945
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-falcon-alpha-community-nt">
|
1026
|
-
<example service.version="5.2.0">5.2.0-falcon-alpha-community-nt</example>
|
1027
946
|
<description>Oracle MySQL with defunct Falcon Storage Engine with Named Pipes (Windows)</description>
|
947
|
+
<example service.version="5.2.0">5.2.0-falcon-alpha-community-nt</example>
|
1028
948
|
<param pos="1" name="service.version"/>
|
1029
949
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1030
950
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -1032,49 +952,44 @@
|
|
1032
952
|
<param pos="0" name="os.vendor" value="Microsoft"/>
|
1033
953
|
<param pos="0" name="os.family" value="Windows"/>
|
1034
954
|
</fingerprint>
|
1035
|
-
|
1036
955
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-falcon-alpha(?:-community)?(?:-log)?$">
|
956
|
+
<description>Oracle MySQL with defunct Falcon Storage Engine</description>
|
1037
957
|
<example service.version="5.2.0">5.2.0-falcon-alpha-log</example>
|
1038
958
|
<example service.version="5.2.0">5.2.0-falcon-alpha-community</example>
|
1039
|
-
<description>Oracle MySQL with defunct Falcon Storage Engine</description>
|
1040
959
|
<param pos="1" name="service.version"/>
|
1041
960
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1042
961
|
<param pos="0" name="service.family" value="MySQL"/>
|
1043
962
|
<param pos="0" name="service.product" value="MySQL"/>
|
1044
963
|
</fingerprint>
|
1045
|
-
|
1046
964
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-tokudb-\d\.\d\.\d{1,2}(?:-\d*)?(?:-log)?$">
|
965
|
+
<description>Tokutek customized MySQL</description>
|
1047
966
|
<example service.version="5.5.40">5.5.40-tokudb-7.5.3-log</example>
|
1048
967
|
<example service.version="5.5.21">5.5.21-tokudb-6.0.0-42634</example>
|
1049
|
-
<description>Tokutek customized MySQL</description>
|
1050
968
|
<param pos="1" name="service.version"/>
|
1051
969
|
<param pos="0" name="service.vendor" value="Tokutek"/>
|
1052
970
|
<param pos="0" name="service.family" value="MySQL"/>
|
1053
971
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1054
972
|
</fingerprint>
|
1055
|
-
|
1056
973
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-tokudb-.*MariaDB(?:-log)?$">
|
1057
|
-
<example service.version="5.5.25">5.5.25-tokudb-6.1.1-47477-MariaDB-log</example>
|
1058
974
|
<description>Tokutek customized MariaDB</description>
|
975
|
+
<example service.version="5.5.25">5.5.25-tokudb-6.1.1-47477-MariaDB-log</example>
|
1059
976
|
<param pos="1" name="service.version"/>
|
1060
977
|
<param pos="0" name="service.vendor" value="Tokutek"/>
|
1061
978
|
<param pos="0" name="service.family" value="MySQL"/>
|
1062
979
|
<param pos="0" name="service.product" value="MariaDB"/>
|
1063
980
|
</fingerprint>
|
1064
|
-
|
1065
981
|
<fingerprint pattern="^^(\d{1,2}\.\d{1,2}\.\h{1,3})-Sphinx">
|
1066
|
-
<example service.version="5.1.40">5.1.40-Sphinx</example>
|
1067
982
|
<description>Oracle MySQL with the Sphinx full text search engine</description>
|
983
|
+
<example service.version="5.1.40">5.1.40-Sphinx</example>
|
1068
984
|
<param pos="1" name="service.version"/>
|
1069
985
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1070
986
|
<param pos="0" name="service.family" value="MySQL"/>
|
1071
987
|
<param pos="0" name="service.product" value="MySQL"/>
|
1072
988
|
</fingerprint>
|
1073
|
-
|
1074
989
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})(?:-\d{1,2}\.\d{1,3}\.\h{1,3})?\+tld\d">
|
990
|
+
<description>Oracle MySQL packaged by TLD Linux</description>
|
1075
991
|
<example service.version="5.0.91">5.0.91+tld0-log</example>
|
1076
992
|
<example service.version="5.1.57">5.1.57-5.1.57+tld2-log</example>
|
1077
|
-
<description>Oracle MySQL packaged by TLD Linux</description>
|
1078
993
|
<param pos="1" name="service.version"/>
|
1079
994
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1080
995
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -1083,10 +998,9 @@
|
|
1083
998
|
<param pos="0" name="os.family" value="Linux"/>
|
1084
999
|
<param pos="0" name="os.product" value="Linux"/>
|
1085
1000
|
</fingerprint>
|
1086
|
-
|
1087
1001
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-Debian_\d\.infrant\d$">
|
1088
|
-
<example service.version="5.0.24a">5.0.24a-Debian_3.infrant1</example>
|
1089
1002
|
<description>Oracle MySQL on a Netgear ReadyNAS</description>
|
1003
|
+
<example service.version="5.0.24a">5.0.24a-Debian_3.infrant1</example>
|
1090
1004
|
<param pos="1" name="service.version"/>
|
1091
1005
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1092
1006
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -1099,105 +1013,94 @@
|
|
1099
1013
|
<param pos="0" name="hw.family" value="ReadyNAS"/>
|
1100
1014
|
<param pos="0" name="hw.product" value="ReadyNAS"/>
|
1101
1015
|
</fingerprint>
|
1102
|
-
|
1103
1016
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-beget(?:-log)?$">
|
1104
|
-
<example service.version="5.1.61">5.1.61-beget-log</example>
|
1105
1017
|
<description>Oracle MySQL at Ukrainian hoster BeGet(?)</description>
|
1018
|
+
<example service.version="5.1.61">5.1.61-beget-log</example>
|
1106
1019
|
<param pos="1" name="service.version"/>
|
1107
1020
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1108
1021
|
<param pos="0" name="service.family" value="MySQL"/>
|
1109
1022
|
<param pos="0" name="service.product" value="MySQL"/>
|
1110
1023
|
</fingerprint>
|
1111
|
-
|
1112
1024
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-(?:Linuxtone.Org|LTOPS)(?:-log)?$">
|
1025
|
+
<description>Oracle MySQL at Chinese hoster Linuxtone.org</description>
|
1113
1026
|
<example service.version="5.0.56">5.0.56-Linuxtone.Org</example>
|
1114
1027
|
<example service.version="5.1.53">5.1.53-LTOPS-log</example>
|
1115
|
-
<description>Oracle MySQL at Chinese hoster Linuxtone.org</description>
|
1116
1028
|
<param pos="1" name="service.version"/>
|
1117
1029
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1118
1030
|
<param pos="0" name="service.family" value="MySQL"/>
|
1119
1031
|
<param pos="0" name="service.product" value="MySQL"/>
|
1120
1032
|
</fingerprint>
|
1121
|
-
|
1122
1033
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-xencdn.net(?:-log)?$">
|
1123
|
-
<example service.version="5.1.66">5.1.66-xencdn.net-log</example>
|
1124
1034
|
<description>Oracle MySQL at Chinese hoster Xencdn.net</description>
|
1035
|
+
<example service.version="5.1.66">5.1.66-xencdn.net-log</example>
|
1125
1036
|
<param pos="1" name="service.version"/>
|
1126
1037
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1127
1038
|
<param pos="0" name="service.family" value="MySQL"/>
|
1128
1039
|
<param pos="0" name="service.product" value="MySQL"/>
|
1129
1040
|
</fingerprint>
|
1130
|
-
|
1131
1041
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-Comsenz(?:-log)?$">
|
1132
|
-
<example service.version="5.0.27">5.0.27-Comsenz-log</example>
|
1133
1042
|
<description>Oracle MySQL at Chinese hoster Comsenz</description>
|
1043
|
+
<example service.version="5.0.27">5.0.27-Comsenz-log</example>
|
1134
1044
|
<param pos="1" name="service.version"/>
|
1135
1045
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1136
1046
|
<param pos="0" name="service.family" value="MySQL"/>
|
1137
1047
|
<param pos="0" name="service.product" value="MySQL"/>
|
1138
1048
|
</fingerprint>
|
1139
|
-
|
1140
1049
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-www\.gamewave\.net(?:-edition)?(?:-log)?$">
|
1050
|
+
<description>Oracle MySQL at Chinese game hoster Gamewave</description>
|
1141
1051
|
<example service.version="5.1.56">5.1.56-www.gamewave.net-edition-log</example>
|
1142
1052
|
<example service.version="5.1.56">5.1.56-www.gamewave.net-log</example>
|
1143
|
-
<description>Oracle MySQL at Chinese game hoster Gamewave</description>
|
1144
1053
|
<param pos="1" name="service.version"/>
|
1145
1054
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1146
1055
|
<param pos="0" name="service.family" value="MySQL"/>
|
1147
1056
|
<param pos="0" name="service.product" value="MySQL"/>
|
1148
1057
|
</fingerprint>
|
1149
|
-
|
1150
1058
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}(?:[.-]\d{1,2})?(?:[.-]\d{1})?)[-\d]*-beget(?:-log)?$">
|
1059
|
+
<description>Oracle MySQL at Russian hoster Beget</description>
|
1151
1060
|
<example service.version="5.6.16-64.0">5.6.16-64.0-beget-log</example>
|
1152
1061
|
<example service.version="5.6.21-70.0">5.6.21-70.0-1-beget-log</example>
|
1153
|
-
<description>Oracle MySQL at Russian hoster Beget</description>
|
1154
1062
|
<param pos="1" name="service.version"/>
|
1155
1063
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1156
1064
|
<param pos="0" name="service.family" value="MySQL"/>
|
1157
1065
|
<param pos="0" name="service.product" value="MySQL"/>
|
1158
1066
|
</fingerprint>
|
1159
|
-
|
1160
1067
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})yes(?:-log)?$">
|
1161
|
-
<example service.version="4.0.27">4.0.27yes</example>
|
1162
1068
|
<description>Oracle MySQL part of KB2 / Kimsboard (Korean site mgmt)?</description>
|
1069
|
+
<example service.version="4.0.27">4.0.27yes</example>
|
1163
1070
|
<param pos="1" name="service.version"/>
|
1164
1071
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1165
1072
|
<param pos="0" name="service.family" value="MySQL"/>
|
1166
1073
|
<param pos="0" name="service.product" value="MySQL"/>
|
1167
1074
|
</fingerprint>
|
1168
|
-
|
1169
1075
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})\.t\d{1,2}(?:[\.\d]{3})?(?:-log)?$">
|
1076
|
+
<description>Oracle MySQL audited/published by Twitter</description>
|
1170
1077
|
<example service.version="5.5.24">5.5.24.t7-log</example>
|
1171
1078
|
<example service.version="5.5.31">5.5.31.t11.1</example>
|
1172
|
-
<description>Oracle MySQL audited/published by Twitter</description>
|
1173
1079
|
<param pos="1" name="service.version"/>
|
1174
1080
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1175
1081
|
<param pos="0" name="service.family" value="MySQL"/>
|
1176
1082
|
<param pos="0" name="service.product" value="MySQL"/>
|
1177
1083
|
</fingerprint>
|
1178
|
-
|
1179
1084
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}) Hybrid Cluster MySQL Proxy to$">
|
1180
|
-
<example service.version="5.5.15">5.5.15 Hybrid Cluster MySQL Proxy to</example>
|
1181
1085
|
<description>Oracle MySQL by Hybrid Cluster (hosted?)</description>
|
1086
|
+
<example service.version="5.5.15">5.5.15 Hybrid Cluster MySQL Proxy to</example>
|
1182
1087
|
<param pos="1" name="service.version"/>
|
1183
1088
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1184
1089
|
<param pos="0" name="service.family" value="MySQL"/>
|
1185
1090
|
<param pos="0" name="service.product" value="MySQL"/>
|
1186
1091
|
</fingerprint>
|
1187
|
-
|
1188
1092
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}) ScaleBase Data Traffic Manager [\.\d]+$">
|
1189
|
-
<example service.version="5.1.53">5.1.53 ScaleBase Data Traffic Manager 3.2.3</example>
|
1190
1093
|
<description>Oracle MySQL behind ScaleBase Data Traffic Manager</description>
|
1094
|
+
<example service.version="5.1.53">5.1.53 ScaleBase Data Traffic Manager 3.2.3</example>
|
1191
1095
|
<param pos="1" name="service.version"/>
|
1192
1096
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1193
1097
|
<param pos="0" name="service.family" value="MySQL"/>
|
1194
1098
|
<param pos="0" name="service.product" value="MySQL"/>
|
1195
1099
|
</fingerprint>
|
1196
|
-
|
1197
1100
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3})-\d\d\.\d{1,2}-\d\.ctbanco\d+(?:-log)?$">
|
1101
|
+
<description>Percona Server (MySQL fork) with 'ctbanco' </description>
|
1198
1102
|
<example service.version="5.6.16">5.6.16-64.1-1.ctbanco60-log</example>
|
1199
1103
|
<example service.version="5.6.16">5.6.16-64.1-1.ctbanco7-log</example>
|
1200
|
-
<description>Percona Server (MySQL fork) with 'ctbanco' </description>
|
1201
1104
|
<param pos="1" name="service.version"/>
|
1202
1105
|
<param pos="0" name="service.vendor" value="Percona"/>
|
1203
1106
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -1205,10 +1108,9 @@
|
|
1205
1108
|
<param pos="0" name="os.family" value="Linux"/>
|
1206
1109
|
<param pos="0" name="os.product" value="Linux"/>
|
1207
1110
|
</fingerprint>
|
1208
|
-
|
1209
1111
|
<fingerprint pattern="^(\d{1,2}\.\d{1,3}\.\h{1,3}) Complete MySQL by Server Logistics(?:-log)?$">
|
1210
|
-
<example service.version="4.0.21">4.0.21 Complete MySQL by Server Logistics-log</example>
|
1211
1112
|
<description>Oracle MySQL packaged by Server Logistics, Mac specific</description>
|
1113
|
+
<example service.version="4.0.21">4.0.21 Complete MySQL by Server Logistics-log</example>
|
1212
1114
|
<param pos="1" name="service.version"/>
|
1213
1115
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
1214
1116
|
<param pos="0" name="service.family" value="MySQL"/>
|
@@ -1217,5 +1119,4 @@
|
|
1217
1119
|
<param pos="0" name="os.family" value="Mac OS X"/>
|
1218
1120
|
<param pos="0" name="os.product" value="Mac OS X"/>
|
1219
1121
|
</fingerprint>
|
1220
|
-
|
1221
1122
|
</fingerprints>
|