recog 2.1.20 → 2.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/recog/version.rb +1 -1
- data/remap.json +131 -0
- data/spec/lib/fingerprint_self_test_spec.rb +16 -1
- data/update_cpes.py +202 -0
- data/xml/apache_os.xml +29 -5
- data/xml/architecture.xml +3 -3
- data/xml/dns_versionbind.xml +56 -10
- data/xml/ftp_banners.xml +56 -12
- data/xml/h323_callresp.xml +4 -4
- data/xml/hp_pjl_id.xml +8 -8
- data/xml/http_cookies.xml +20 -8
- data/xml/http_servers.xml +122 -8
- data/xml/http_wwwauth.xml +13 -3
- data/xml/imap_banners.xml +19 -1
- data/xml/ldap_searchresult.xml +44 -68
- data/xml/mdns_device-info_txt.xml +18 -7
- data/xml/mdns_workstation_txt.xml +7 -7
- data/xml/mysql_banners.xml +159 -13
- data/xml/mysql_error.xml +124 -21
- data/xml/nntp_banners.xml +10 -4
- data/xml/ntp_banners.xml +144 -84
- data/xml/operating_system.xml +39 -10
- data/xml/pop_banners.xml +32 -12
- data/xml/rsh_resp.xml +8 -3
- data/xml/sip_banners.xml +4 -3
- data/xml/sip_user_agents.xml +4 -3
- data/xml/smb_native_lm.xml +9 -4
- data/xml/smb_native_os.xml +50 -25
- data/xml/smtp_banners.xml +108 -33
- data/xml/smtp_debug.xml +11 -8
- data/xml/smtp_ehlo.xml +14 -11
- data/xml/smtp_expn.xml +17 -11
- data/xml/smtp_help.xml +17 -11
- data/xml/smtp_mailfrom.xml +4 -3
- data/xml/smtp_noop.xml +13 -8
- data/xml/smtp_quit.xml +10 -8
- data/xml/smtp_rcptto.xml +1 -3
- data/xml/smtp_rset.xml +10 -8
- data/xml/smtp_turn.xml +10 -8
- data/xml/smtp_vrfy.xml +18 -11
- data/xml/snmp_sysdescr.xml +157 -451
- data/xml/snmp_sysobjid.xml +57 -4
- data/xml/ssh_banners.xml +104 -5
- data/xml/upnp_banners.xml +16 -1
- data/xml/x11_banners.xml +34 -9
- metadata +4 -2
data/xml/mysql_error.xml
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
2
|
+
<fingerprints matches="mysql.error" protocol="mysql" database_type="service" preference=".80">
|
3
|
+
<!--
|
4
|
+
Upon successful connection to a MySQL/derivative TCP endpoint, if the
|
5
|
+
connecting client is not allowed to speak to the MySQL service (for
|
6
|
+
example, it has been blocked for too many failed password attempts or it
|
7
|
+
isn't explicitly allowed to connect from this client, among other
|
8
|
+
reasons), the first packet received will contain an error message that is
|
9
|
+
used to inform the client of this failure prior to forcibly disconnecting
|
10
|
+
the client:
|
10
11
|
|
11
|
-
|
12
|
-
|
12
|
+
$ mysql -u root -h mysql.example.com
|
13
|
+
ERROR 1130 (HY000): Host '192.168.0.100' is not allowed to connect to this MySQL server
|
13
14
|
|
14
|
-
|
15
|
-
|
16
|
-
|
15
|
+
This free-form field starts at the 7th byte and ends at the end of the TCP
|
16
|
+
payload. The fingerprints below are used to match and extract from this
|
17
|
+
field.
|
17
18
|
|
18
|
-
|
19
|
-
|
19
|
+
More details on the various error codes can be found here:
|
20
|
+
http://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html
|
20
21
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
-->
|
26
|
-
<fingerprints matches="mysql.error" protocol="mysql" database_type="service" preference=".80">
|
22
|
+
The values for the various error messages below can be found in
|
23
|
+
sql/share/errmsg-utf8.txt from the MySQL source, for example
|
24
|
+
http://osxr.org/mysql/source/sql/share/errmsg-utf8.txt or
|
25
|
+
https://github.com/twitter/mysql/blob/master/sql/share/errmsg-utf8.txt
|
26
|
+
-->
|
27
27
|
<!-- ER_HOST_NOT_PRIVILEGED -->
|
28
28
|
<fingerprint pattern="^Stroj '[^']+' nemá povoleno se k tomuto MySQL serveru připojit$">
|
29
29
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (cze)</description>
|
@@ -31,6 +31,7 @@
|
|
31
31
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
32
32
|
<param pos="0" name="service.family" value="MySQL"/>
|
33
33
|
<param pos="0" name="service.product" value="MySQL"/>
|
34
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
34
35
|
</fingerprint>
|
35
36
|
<fingerprint pattern="^Værten '[^']+' kan ikke tilkoble denne MySQL-server$">
|
36
37
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (dan)</description>
|
@@ -38,6 +39,7 @@
|
|
38
39
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
39
40
|
<param pos="0" name="service.family" value="MySQL"/>
|
40
41
|
<param pos="0" name="service.product" value="MySQL"/>
|
42
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
41
43
|
</fingerprint>
|
42
44
|
<fingerprint pattern="^Het is host '[^']+' is niet toegestaan verbinding te maken met deze MySQL server$">
|
43
45
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (nla)</description>
|
@@ -45,6 +47,7 @@
|
|
45
47
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
46
48
|
<param pos="0" name="service.family" value="MySQL"/>
|
47
49
|
<param pos="0" name="service.product" value="MySQL"/>
|
50
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
48
51
|
</fingerprint>
|
49
52
|
<fingerprint pattern="^^(?:#HY000)?Host '[^']+' is not allowed to connect to this MySQL server$$">
|
50
53
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (eng)</description>
|
@@ -54,6 +57,7 @@
|
|
54
57
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
55
58
|
<param pos="0" name="service.family" value="MySQL"/>
|
56
59
|
<param pos="0" name="service.product" value="MySQL"/>
|
60
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
57
61
|
</fingerprint>
|
58
62
|
<fingerprint pattern="^Masinal '[^']+' puudub ligipääs sellele MySQL serverile$">
|
59
63
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (est)</description>
|
@@ -61,6 +65,7 @@
|
|
61
65
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
62
66
|
<param pos="0" name="service.family" value="MySQL"/>
|
63
67
|
<param pos="0" name="service.product" value="MySQL"/>
|
68
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
64
69
|
</fingerprint>
|
65
70
|
<fingerprint pattern="^Le hôte '[^']+' n'est pas authorisé à se connecter à ce serveur MySQL$">
|
66
71
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (fre)</description>
|
@@ -68,6 +73,7 @@
|
|
68
73
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
69
74
|
<param pos="0" name="service.family" value="MySQL"/>
|
70
75
|
<param pos="0" name="service.product" value="MySQL"/>
|
76
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
71
77
|
</fingerprint>
|
72
78
|
<fingerprint pattern="^Host '[^']+' hat keine Berechtigung, sich mit diesem MySQL-Server zu verbinden$">
|
73
79
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ger)</description>
|
@@ -75,6 +81,7 @@
|
|
75
81
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
76
82
|
<param pos="0" name="service.family" value="MySQL"/>
|
77
83
|
<param pos="0" name="service.product" value="MySQL"/>
|
84
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
78
85
|
</fingerprint>
|
79
86
|
<fingerprint pattern="^Ο υπολογιστής '[^']+' δεν έχει δικαίωμα σύνδεσης με τον MySQL server$">
|
80
87
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (greek)</description>
|
@@ -82,6 +89,7 @@
|
|
82
89
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
83
90
|
<param pos="0" name="service.family" value="MySQL"/>
|
84
91
|
<param pos="0" name="service.product" value="MySQL"/>
|
92
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
85
93
|
</fingerprint>
|
86
94
|
<fingerprint pattern="^A '[^']+' host szamara nem engedelyezett a kapcsolodas ehhez a MySQL szerverhez$">
|
87
95
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (hun)</description>
|
@@ -89,6 +97,7 @@
|
|
89
97
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
90
98
|
<param pos="0" name="service.family" value="MySQL"/>
|
91
99
|
<param pos="0" name="service.product" value="MySQL"/>
|
100
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
92
101
|
</fingerprint>
|
93
102
|
<fingerprint pattern="^Al sistema '[^']+' non e` consentita la connessione a questo server MySQL$">
|
94
103
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ita)</description>
|
@@ -96,6 +105,7 @@
|
|
96
105
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
97
106
|
<param pos="0" name="service.family" value="MySQL"/>
|
98
107
|
<param pos="0" name="service.product" value="MySQL"/>
|
108
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
99
109
|
</fingerprint>
|
100
110
|
<fingerprint pattern="^ホスト '[^']+' からのこの MySQL server への接続は許可されていません。$">
|
101
111
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (jpn)</description>
|
@@ -103,6 +113,7 @@
|
|
103
113
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
104
114
|
<param pos="0" name="service.family" value="MySQL"/>
|
105
115
|
<param pos="0" name="service.product" value="MySQL"/>
|
116
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
106
117
|
</fingerprint>
|
107
118
|
<fingerprint pattern="^'[^']+' 호스트는 이 MySQL서버에 접속할 허가를 받지 못했습니다.$">
|
108
119
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (kor)</description>
|
@@ -110,6 +121,7 @@
|
|
110
121
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
111
122
|
<param pos="0" name="service.family" value="MySQL"/>
|
112
123
|
<param pos="0" name="service.product" value="MySQL"/>
|
124
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
113
125
|
</fingerprint>
|
114
126
|
<fingerprint pattern="^'Host' '[^']+' não tem permissão para se conectar com este servidor MySQL$">
|
115
127
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (por)</description>
|
@@ -117,6 +129,7 @@
|
|
117
129
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
118
130
|
<param pos="0" name="service.family" value="MySQL"/>
|
119
131
|
<param pos="0" name="service.product" value="MySQL"/>
|
132
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
120
133
|
</fingerprint>
|
121
134
|
<fingerprint pattern="^Host-ul '[^']+' nu este permis a se conecta la aceste server MySQL$">
|
122
135
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (rum)</description>
|
@@ -124,6 +137,7 @@
|
|
124
137
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
125
138
|
<param pos="0" name="service.family" value="MySQL"/>
|
126
139
|
<param pos="0" name="service.product" value="MySQL"/>
|
140
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
127
141
|
</fingerprint>
|
128
142
|
<fingerprint pattern="^Хосту '[^']+' не разрешается подключаться к этому серверу MySQL$">
|
129
143
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (rus)</description>
|
@@ -131,6 +145,7 @@
|
|
131
145
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
132
146
|
<param pos="0" name="service.family" value="MySQL"/>
|
133
147
|
<param pos="0" name="service.product" value="MySQL"/>
|
148
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
134
149
|
</fingerprint>
|
135
150
|
<fingerprint pattern="^Host-u '[^']+' nije dozvoljeno da se konektuje na ovaj MySQL server$">
|
136
151
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (serbian)</description>
|
@@ -138,6 +153,7 @@
|
|
138
153
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
139
154
|
<param pos="0" name="service.family" value="MySQL"/>
|
140
155
|
<param pos="0" name="service.product" value="MySQL"/>
|
156
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
141
157
|
</fingerprint>
|
142
158
|
<fingerprint pattern="^Servidor '[^']+' no está permitido para conectar con este servidor MySQL$">
|
143
159
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (spa)</description>
|
@@ -145,6 +161,7 @@
|
|
145
161
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
146
162
|
<param pos="0" name="service.family" value="MySQL"/>
|
147
163
|
<param pos="0" name="service.product" value="MySQL"/>
|
164
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
148
165
|
</fingerprint>
|
149
166
|
<fingerprint pattern="^Denna dator, '[^']+', har inte privileger att använda denna MySQL server$">
|
150
167
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (swe)</description>
|
@@ -152,6 +169,7 @@
|
|
152
169
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
153
170
|
<param pos="0" name="service.family" value="MySQL"/>
|
154
171
|
<param pos="0" name="service.product" value="MySQL"/>
|
172
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
155
173
|
</fingerprint>
|
156
174
|
<fingerprint pattern="^Хосту '[^']+' не доволено зв'язуватись з цим сервером MySQL$">
|
157
175
|
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ukr)</description>
|
@@ -159,6 +177,7 @@
|
|
159
177
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
160
178
|
<param pos="0" name="service.family" value="MySQL"/>
|
161
179
|
<param pos="0" name="service.product" value="MySQL"/>
|
180
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
162
181
|
</fingerprint>
|
163
182
|
<!-- ER_HOST_IS_BLOCKED -->
|
164
183
|
<fingerprint pattern="Stroj '[^']+' je zablokován kvůli mnoha chybám při připojování. Odblokujete použitím 'mysqladmin flush-hosts'">
|
@@ -167,6 +186,7 @@
|
|
167
186
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
168
187
|
<param pos="0" name="service.family" value="MySQL"/>
|
169
188
|
<param pos="0" name="service.product" value="MySQL"/>
|
189
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
170
190
|
</fingerprint>
|
171
191
|
<fingerprint pattern="Værten '[^']+' er blokeret på grund af mange fejlforespørgsler. Lås op med 'mysqladmin flush-hosts'">
|
172
192
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (dan)</description>
|
@@ -174,6 +194,7 @@
|
|
174
194
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
175
195
|
<param pos="0" name="service.family" value="MySQL"/>
|
176
196
|
<param pos="0" name="service.product" value="MySQL"/>
|
197
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
177
198
|
</fingerprint>
|
178
199
|
<fingerprint pattern="Host '[^']+' is geblokkeeerd vanwege te veel verbindings fouten. Deblokkeer met 'mysqladmin flush-hosts'">
|
179
200
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (nla)</description>
|
@@ -181,6 +202,7 @@
|
|
181
202
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
182
203
|
<param pos="0" name="service.family" value="MySQL"/>
|
183
204
|
<param pos="0" name="service.product" value="MySQL"/>
|
205
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
184
206
|
</fingerprint>
|
185
207
|
<fingerprint pattern="Host '[^']+' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'">
|
186
208
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (eng)</description>
|
@@ -188,6 +210,7 @@
|
|
188
210
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
189
211
|
<param pos="0" name="service.family" value="MySQL"/>
|
190
212
|
<param pos="0" name="service.product" value="MySQL"/>
|
213
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
191
214
|
</fingerprint>
|
192
215
|
<fingerprint pattern="Masin '[^']+' on blokeeritud hulgaliste ühendusvigade tõttu. Blokeeringu saab tühistada 'mysqladmin flush-hosts' käsuga">
|
193
216
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (est)</description>
|
@@ -195,6 +218,7 @@
|
|
195
218
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
196
219
|
<param pos="0" name="service.family" value="MySQL"/>
|
197
220
|
<param pos="0" name="service.product" value="MySQL"/>
|
221
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
198
222
|
</fingerprint>
|
199
223
|
<fingerprint pattern="L'hôte '[^']+' est bloqué à cause d'un trop grand nombre d'erreur de connexion. Débloquer le par 'mysqladmin flush-hosts'">
|
200
224
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (fre)</description>
|
@@ -202,6 +226,7 @@
|
|
202
226
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
203
227
|
<param pos="0" name="service.family" value="MySQL"/>
|
204
228
|
<param pos="0" name="service.product" value="MySQL"/>
|
229
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
205
230
|
</fingerprint>
|
206
231
|
<fingerprint pattern="Host '[^']+' blockiert wegen zu vieler Verbindungsfehler. Aufheben der Blockierung mit 'mysqladmin flush-hosts'">
|
207
232
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (ger)</description>
|
@@ -209,6 +234,7 @@
|
|
209
234
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
210
235
|
<param pos="0" name="service.family" value="MySQL"/>
|
211
236
|
<param pos="0" name="service.product" value="MySQL"/>
|
237
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
212
238
|
</fingerprint>
|
213
239
|
<fingerprint pattern="Ο υπολογιστής '[^']+' έχει αποκλεισθεί λόγω πολλαπλών λαθών σύνδεσης. Προσπαθήστε να διορώσετε με 'mysqladmin flush-hosts'">
|
214
240
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (greek)</description>
|
@@ -216,6 +242,7 @@
|
|
216
242
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
217
243
|
<param pos="0" name="service.family" value="MySQL"/>
|
218
244
|
<param pos="0" name="service.product" value="MySQL"/>
|
245
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
219
246
|
</fingerprint>
|
220
247
|
<fingerprint pattern="A '[^']+' host blokkolodott, tul sok kapcsolodasi hiba miatt. Hasznalja a 'mysqladmin flush-hosts' parancsot">
|
221
248
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (hun)</description>
|
@@ -223,6 +250,7 @@
|
|
223
250
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
224
251
|
<param pos="0" name="service.family" value="MySQL"/>
|
225
252
|
<param pos="0" name="service.product" value="MySQL"/>
|
253
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
226
254
|
</fingerprint>
|
227
255
|
<fingerprint pattern="Sistema '[^']+' bloccato a causa di troppi errori di connessione. Per sbloccarlo: 'mysqladmin flush-hosts'">
|
228
256
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (ita)</description>
|
@@ -230,6 +258,7 @@
|
|
230
258
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
231
259
|
<param pos="0" name="service.family" value="MySQL"/>
|
232
260
|
<param pos="0" name="service.product" value="MySQL"/>
|
261
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
233
262
|
</fingerprint>
|
234
263
|
<fingerprint pattern="接続エラーが多いため、ホスト '[^']+' は拒否されました。'mysqladmin flush-hosts' で解除できます。">
|
235
264
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (jpn)</description>
|
@@ -237,6 +266,7 @@
|
|
237
266
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
238
267
|
<param pos="0" name="service.family" value="MySQL"/>
|
239
268
|
<param pos="0" name="service.product" value="MySQL"/>
|
269
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
240
270
|
</fingerprint>
|
241
271
|
<fingerprint pattern="너무 많은 연결오류로 인하여 호스트 '[^']+'는 블락되었습니다. 'mysqladmin flush-hosts'를 이용하여 블락을 해제하세요">
|
242
272
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (kor)</description>
|
@@ -244,6 +274,7 @@
|
|
244
274
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
245
275
|
<param pos="0" name="service.family" value="MySQL"/>
|
246
276
|
<param pos="0" name="service.product" value="MySQL"/>
|
277
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
247
278
|
</fingerprint>
|
248
279
|
<fingerprint pattern="'Host' '[^']+' está bloqueado devido a muitos erros de conexão. Desbloqueie com 'mysqladmin flush-hosts'">
|
249
280
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (por)</description>
|
@@ -251,6 +282,7 @@
|
|
251
282
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
252
283
|
<param pos="0" name="service.family" value="MySQL"/>
|
253
284
|
<param pos="0" name="service.product" value="MySQL"/>
|
285
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
254
286
|
</fingerprint>
|
255
287
|
<fingerprint pattern="Host-ul '[^']+' e blocat din cauza multelor erori de conectie. Poti deploca folosind 'mysqladmin flush-hosts'">
|
256
288
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (rum)</description>
|
@@ -258,6 +290,7 @@
|
|
258
290
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
259
291
|
<param pos="0" name="service.family" value="MySQL"/>
|
260
292
|
<param pos="0" name="service.product" value="MySQL"/>
|
293
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
261
294
|
</fingerprint>
|
262
295
|
<fingerprint pattern="Хост '[^']+' заблокирован из-за слишком большого количества ошибок соединения. Разблокировать его можно с помощью 'mysqladmin flush-hosts'">
|
263
296
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (rus)</description>
|
@@ -265,6 +298,7 @@
|
|
265
298
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
266
299
|
<param pos="0" name="service.family" value="MySQL"/>
|
267
300
|
<param pos="0" name="service.product" value="MySQL"/>
|
301
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
268
302
|
</fingerprint>
|
269
303
|
<fingerprint pattern="Host '[^']+' je blokiran zbog previše grešaka u konekciji. Možete ga odblokirati pomoću komande 'mysqladmin flush-hosts'">
|
270
304
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (serbian)</description>
|
@@ -272,6 +306,7 @@
|
|
272
306
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
273
307
|
<param pos="0" name="service.family" value="MySQL"/>
|
274
308
|
<param pos="0" name="service.product" value="MySQL"/>
|
309
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
275
310
|
</fingerprint>
|
276
311
|
<fingerprint pattern="Servidor '[^']+' está bloqueado por muchos errores de conexión. Desbloquear con 'mysqladmin flush-hosts'">
|
277
312
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (spa)</description>
|
@@ -279,6 +314,7 @@
|
|
279
314
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
280
315
|
<param pos="0" name="service.family" value="MySQL"/>
|
281
316
|
<param pos="0" name="service.product" value="MySQL"/>
|
317
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
282
318
|
</fingerprint>
|
283
319
|
<fingerprint pattern="Denna dator, '[^']+', är blockerad pga många felaktig paket. Gör 'mysqladmin flush-hosts' för att ta bort alla blockeringarna">
|
284
320
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (swe)</description>
|
@@ -286,6 +322,7 @@
|
|
286
322
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
287
323
|
<param pos="0" name="service.family" value="MySQL"/>
|
288
324
|
<param pos="0" name="service.product" value="MySQL"/>
|
325
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
289
326
|
</fingerprint>
|
290
327
|
<fingerprint pattern="Хост '[^']+' заблоковано з причини великої кількості помилок з'єднання. Для розблокування використовуйте 'mysqladmin flush-hosts'">
|
291
328
|
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (ukr)</description>
|
@@ -293,6 +330,7 @@
|
|
293
330
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
294
331
|
<param pos="0" name="service.family" value="MySQL"/>
|
295
332
|
<param pos="0" name="service.product" value="MySQL"/>
|
333
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
296
334
|
</fingerprint>
|
297
335
|
<!-- ER_CANT_CREATE_THREAD -->
|
298
336
|
<fingerprint pattern="Nemohu vytvořit nový thread \(errno -?\d+\). Pokud je ještě nějaká volná paměť, podívejte se do manuálu na část o chybách specifických pro jednotlivé operační systémy">
|
@@ -301,6 +339,7 @@
|
|
301
339
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
302
340
|
<param pos="0" name="service.family" value="MySQL"/>
|
303
341
|
<param pos="0" name="service.product" value="MySQL"/>
|
342
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
304
343
|
</fingerprint>
|
305
344
|
<fingerprint pattern="Kan ikke danne en ny tråd \(fejl nr. -?\d+\). Hvis computeren ikke er løbet tør for hukommelse, kan du se i brugervejledningen for en mulig operativ-system - afhængig fejl">
|
306
345
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (dan)</description>
|
@@ -308,6 +347,7 @@
|
|
308
347
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
309
348
|
<param pos="0" name="service.family" value="MySQL"/>
|
310
349
|
<param pos="0" name="service.product" value="MySQL"/>
|
350
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
311
351
|
</fingerprint>
|
312
352
|
<fingerprint pattern="Kan geen nieuwe thread aanmaken \(Errcode: -?\d+\). Indien er geen tekort aan geheugen is kunt u de handleiding consulteren over een mogelijke OS afhankelijke fout">
|
313
353
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (nla)</description>
|
@@ -315,6 +355,7 @@
|
|
315
355
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
316
356
|
<param pos="0" name="service.family" value="MySQL"/>
|
317
357
|
<param pos="0" name="service.product" value="MySQL"/>
|
358
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
318
359
|
</fingerprint>
|
319
360
|
<fingerprint pattern="Can't create a new thread \(errno -?\d+\); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug">
|
320
361
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (eng, pol, nor, norwegian-ny)</description>
|
@@ -322,6 +363,7 @@
|
|
322
363
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
323
364
|
<param pos="0" name="service.family" value="MySQL"/>
|
324
365
|
<param pos="0" name="service.product" value="MySQL"/>
|
366
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
325
367
|
</fingerprint>
|
326
368
|
<fingerprint pattern="Ei suuda luua uut lõime \(veakood -?\d+\). Kui mälu ei ole otsas, on tõenäoliselt tegemist operatsioonisüsteemispetsiifilise veaga">
|
327
369
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (est)</description>
|
@@ -329,6 +371,7 @@
|
|
329
371
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
330
372
|
<param pos="0" name="service.family" value="MySQL"/>
|
331
373
|
<param pos="0" name="service.product" value="MySQL"/>
|
374
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
332
375
|
</fingerprint>
|
333
376
|
<fingerprint pattern="Impossible de créer une nouvelle tâche \(errno -?\d+\). S'il reste de la mémoire libre, consultez le manual pour trouver un éventuel bug dépendant de l'OS">
|
334
377
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (fre)</description>
|
@@ -336,6 +379,7 @@
|
|
336
379
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
337
380
|
<param pos="0" name="service.family" value="MySQL"/>
|
338
381
|
<param pos="0" name="service.product" value="MySQL"/>
|
382
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
339
383
|
</fingerprint>
|
340
384
|
<fingerprint pattern="Kann keinen neuen Thread erzeugen \(Fehler: -?\d+\). Sollte noch Speicher verfügbar sein, bitte im Handbuch wegen möglicher Fehler im Betriebssystem nachschlagen">
|
341
385
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (ger)</description>
|
@@ -343,6 +387,7 @@
|
|
343
387
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
344
388
|
<param pos="0" name="service.family" value="MySQL"/>
|
345
389
|
<param pos="0" name="service.product" value="MySQL"/>
|
390
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
346
391
|
</fingerprint>
|
347
392
|
<fingerprint pattern="Uj thread letrehozasa nem lehetseges \(Hibakod: -?\d+\). Amenyiben van meg szabad memoria, olvassa el a kezikonyv operacios rendszerfuggo hibalehetosegekrol szolo reszet">
|
348
393
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (hun)</description>
|
@@ -350,6 +395,7 @@
|
|
350
395
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
351
396
|
<param pos="0" name="service.family" value="MySQL"/>
|
352
397
|
<param pos="0" name="service.product" value="MySQL"/>
|
398
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
353
399
|
</fingerprint>
|
354
400
|
<fingerprint pattern="Impossibile creare un nuovo thread \(errno -?\d+\). Se non ci sono problemi di memoria disponibile puoi consultare il manuale per controllare possibili problemi dipendenti dal SO">
|
355
401
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (ita)</description>
|
@@ -357,6 +403,7 @@
|
|
357
403
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
358
404
|
<param pos="0" name="service.family" value="MySQL"/>
|
359
405
|
<param pos="0" name="service.product" value="MySQL"/>
|
406
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
360
407
|
</fingerprint>
|
361
408
|
<fingerprint pattern="新規にスレッドを作成できません。\(エラー番号 -?\d+\) もしも使用可能メモリーの不足でなければ、OS依存のバグである可能性があります。">
|
362
409
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (jpn)</description>
|
@@ -364,6 +411,7 @@
|
|
364
411
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
365
412
|
<param pos="0" name="service.family" value="MySQL"/>
|
366
413
|
<param pos="0" name="service.product" value="MySQL"/>
|
414
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
367
415
|
</fingerprint>
|
368
416
|
<fingerprint pattern="새로운 쓰레드를 만들 수 없습니다.\(에러번호 -?\d+\). 만약 여유메모리가 있다면 OS-dependent버그 의 메뉴얼 부분을 찾아보시오.">
|
369
417
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (kor)</description>
|
@@ -371,6 +419,7 @@
|
|
371
419
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
372
420
|
<param pos="0" name="service.family" value="MySQL"/>
|
373
421
|
<param pos="0" name="service.product" value="MySQL"/>
|
422
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
374
423
|
</fingerprint>
|
375
424
|
<fingerprint pattern="Não pode criar uma nova 'thread' \(erro no. -?\d+\). Se você não estiver sem memória disponível, você pode consultar o manual sobre um possível 'bug' dependente do sistema operacional">
|
376
425
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (por)</description>
|
@@ -378,6 +427,7 @@
|
|
378
427
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
379
428
|
<param pos="0" name="service.family" value="MySQL"/>
|
380
429
|
<param pos="0" name="service.product" value="MySQL"/>
|
430
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
381
431
|
</fingerprint>
|
382
432
|
<fingerprint pattern="Nu pot crea un thread nou \(Eroare -?\d+\). Daca mai aveti memorie disponibila in sistem, puteti consulta manualul - ar putea exista un potential bug in legatura cu sistemul de operare">
|
383
433
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (rum)</description>
|
@@ -385,6 +435,7 @@
|
|
385
435
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
386
436
|
<param pos="0" name="service.family" value="MySQL"/>
|
387
437
|
<param pos="0" name="service.product" value="MySQL"/>
|
438
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
388
439
|
</fingerprint>
|
389
440
|
<fingerprint pattern="Невозможно создать новый поток \(ошибка -?\d+\). Если это не ситуация, связанная с нехваткой памяти, то вам следует изучить документацию на предмет описания возможной ошибки работы в конкретной ОС">
|
390
441
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (rus)</description>
|
@@ -392,6 +443,7 @@
|
|
392
443
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
393
444
|
<param pos="0" name="service.family" value="MySQL"/>
|
394
445
|
<param pos="0" name="service.product" value="MySQL"/>
|
446
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
395
447
|
</fingerprint>
|
396
448
|
<fingerprint pattern="Ne mogu da kreiram novi thread \(errno -?\d+\). Ako imate još slobodne memorije, trebali biste da pogledate u priručniku da li je ovo specifična greška vašeg operativnog sistema">
|
397
449
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (serbian)</description>
|
@@ -399,6 +451,7 @@
|
|
399
451
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
400
452
|
<param pos="0" name="service.family" value="MySQL"/>
|
401
453
|
<param pos="0" name="service.product" value="MySQL"/>
|
454
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
402
455
|
</fingerprint>
|
403
456
|
<fingerprint pattern="No puedo crear un nuevo thread \(errno -?\d+\). Si tu está con falta de memoria disponible, tu puedes consultar el Manual para posibles problemas con SO">
|
404
457
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (spa)</description>
|
@@ -406,6 +459,7 @@
|
|
406
459
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
407
460
|
<param pos="0" name="service.family" value="MySQL"/>
|
408
461
|
<param pos="0" name="service.product" value="MySQL"/>
|
462
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
409
463
|
</fingerprint>
|
410
464
|
<fingerprint pattern="Kan inte skapa en ny tråd \(errno -?\d+\)">
|
411
465
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (swe)</description>
|
@@ -413,6 +467,7 @@
|
|
413
467
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
414
468
|
<param pos="0" name="service.family" value="MySQL"/>
|
415
469
|
<param pos="0" name="service.product" value="MySQL"/>
|
470
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
416
471
|
</fingerprint>
|
417
472
|
<fingerprint pattern="Не можу створити нову гілку \(помилка -?\d+\). Якщо ви не використали усю пам'ять, то прочитайте документацію до вашої ОС - можливо це помилка ОС">
|
418
473
|
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (ukr)</description>
|
@@ -420,6 +475,7 @@
|
|
420
475
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
421
476
|
<param pos="0" name="service.family" value="MySQL"/>
|
422
477
|
<param pos="0" name="service.product" value="MySQL"/>
|
478
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
423
479
|
</fingerprint>
|
424
480
|
<!-- ER_CON_COUNT_ERROR -->
|
425
481
|
<fingerprint pattern="Příliš mnoho spojení">
|
@@ -428,6 +484,7 @@
|
|
428
484
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
429
485
|
<param pos="0" name="service.family" value="MySQL"/>
|
430
486
|
<param pos="0" name="service.product" value="MySQL"/>
|
487
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
431
488
|
</fingerprint>
|
432
489
|
<fingerprint pattern="For mange forbindelser \(connections\)">
|
433
490
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (dan)</description>
|
@@ -435,6 +492,7 @@
|
|
435
492
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
436
493
|
<param pos="0" name="service.family" value="MySQL"/>
|
437
494
|
<param pos="0" name="service.product" value="MySQL"/>
|
495
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
438
496
|
</fingerprint>
|
439
497
|
<fingerprint pattern="Te veel verbindingen">
|
440
498
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (nla)</description>
|
@@ -442,6 +500,7 @@
|
|
442
500
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
443
501
|
<param pos="0" name="service.family" value="MySQL"/>
|
444
502
|
<param pos="0" name="service.product" value="MySQL"/>
|
503
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
445
504
|
</fingerprint>
|
446
505
|
<fingerprint pattern="Too many connections">
|
447
506
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (eng)</description>
|
@@ -449,6 +508,7 @@
|
|
449
508
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
450
509
|
<param pos="0" name="service.family" value="MySQL"/>
|
451
510
|
<param pos="0" name="service.product" value="MySQL"/>
|
511
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
452
512
|
</fingerprint>
|
453
513
|
<fingerprint pattern="Liiga palju samaaegseid ühendusi">
|
454
514
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (est)</description>
|
@@ -456,6 +516,7 @@
|
|
456
516
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
457
517
|
<param pos="0" name="service.family" value="MySQL"/>
|
458
518
|
<param pos="0" name="service.product" value="MySQL"/>
|
519
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
459
520
|
</fingerprint>
|
460
521
|
<fingerprint pattern="Trop de connexions">
|
461
522
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (fre)</description>
|
@@ -463,6 +524,7 @@
|
|
463
524
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
464
525
|
<param pos="0" name="service.family" value="MySQL"/>
|
465
526
|
<param pos="0" name="service.product" value="MySQL"/>
|
527
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
466
528
|
</fingerprint>
|
467
529
|
<fingerprint pattern="Zu viele Verbindungen">
|
468
530
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (ger)</description>
|
@@ -470,6 +532,7 @@
|
|
470
532
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
471
533
|
<param pos="0" name="service.family" value="MySQL"/>
|
472
534
|
<param pos="0" name="service.product" value="MySQL"/>
|
535
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
473
536
|
</fingerprint>
|
474
537
|
<fingerprint pattern="Υπάρχουν πολλές συνδέσεις...">
|
475
538
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (greek)</description>
|
@@ -477,6 +540,7 @@
|
|
477
540
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
478
541
|
<param pos="0" name="service.family" value="MySQL"/>
|
479
542
|
<param pos="0" name="service.product" value="MySQL"/>
|
543
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
480
544
|
</fingerprint>
|
481
545
|
<fingerprint pattern="Tul sok kapcsolat">
|
482
546
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (hun)</description>
|
@@ -484,6 +548,7 @@
|
|
484
548
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
485
549
|
<param pos="0" name="service.family" value="MySQL"/>
|
486
550
|
<param pos="0" name="service.product" value="MySQL"/>
|
551
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
487
552
|
</fingerprint>
|
488
553
|
<fingerprint pattern="Troppe connessioni">
|
489
554
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (ita)</description>
|
@@ -491,6 +556,7 @@
|
|
491
556
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
492
557
|
<param pos="0" name="service.family" value="MySQL"/>
|
493
558
|
<param pos="0" name="service.product" value="MySQL"/>
|
559
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
494
560
|
</fingerprint>
|
495
561
|
<fingerprint pattern="接続が多すぎます。">
|
496
562
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (jpn)</description>
|
@@ -498,6 +564,7 @@
|
|
498
564
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
499
565
|
<param pos="0" name="service.family" value="MySQL"/>
|
500
566
|
<param pos="0" name="service.product" value="MySQL"/>
|
567
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
501
568
|
</fingerprint>
|
502
569
|
<fingerprint pattern="너무 많은 연결... max_connection을 증가 시키시오...">
|
503
570
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (kor)</description>
|
@@ -505,6 +572,7 @@
|
|
505
572
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
506
573
|
<param pos="0" name="service.family" value="MySQL"/>
|
507
574
|
<param pos="0" name="service.product" value="MySQL"/>
|
575
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
508
576
|
</fingerprint>
|
509
577
|
<fingerprint pattern="For mange tilkoblinger \(connections\)">
|
510
578
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (nor)</description>
|
@@ -512,6 +580,7 @@
|
|
512
580
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
513
581
|
<param pos="0" name="service.family" value="MySQL"/>
|
514
582
|
<param pos="0" name="service.product" value="MySQL"/>
|
583
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
515
584
|
</fingerprint>
|
516
585
|
<fingerprint pattern="For mange tilkoplingar \(connections\)">
|
517
586
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (norwegian-ny)</description>
|
@@ -519,6 +588,7 @@
|
|
519
588
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
520
589
|
<param pos="0" name="service.family" value="MySQL"/>
|
521
590
|
<param pos="0" name="service.product" value="MySQL"/>
|
591
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
522
592
|
</fingerprint>
|
523
593
|
<fingerprint pattern="Zbyt wiele poł\?czeń">
|
524
594
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (pol)</description>
|
@@ -526,6 +596,7 @@
|
|
526
596
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
527
597
|
<param pos="0" name="service.family" value="MySQL"/>
|
528
598
|
<param pos="0" name="service.product" value="MySQL"/>
|
599
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
529
600
|
</fingerprint>
|
530
601
|
<fingerprint pattern="Excesso de conexões">
|
531
602
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (por)</description>
|
@@ -533,6 +604,7 @@
|
|
533
604
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
534
605
|
<param pos="0" name="service.family" value="MySQL"/>
|
535
606
|
<param pos="0" name="service.product" value="MySQL"/>
|
607
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
536
608
|
</fingerprint>
|
537
609
|
<fingerprint pattern="Prea multe conectiuni">
|
538
610
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (rum)</description>
|
@@ -540,6 +612,7 @@
|
|
540
612
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
541
613
|
<param pos="0" name="service.family" value="MySQL"/>
|
542
614
|
<param pos="0" name="service.product" value="MySQL"/>
|
615
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
543
616
|
</fingerprint>
|
544
617
|
<fingerprint pattern="Слишком много соединений">
|
545
618
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (rus)</description>
|
@@ -547,6 +620,7 @@
|
|
547
620
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
548
621
|
<param pos="0" name="service.family" value="MySQL"/>
|
549
622
|
<param pos="0" name="service.product" value="MySQL"/>
|
623
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
550
624
|
</fingerprint>
|
551
625
|
<fingerprint pattern="Previše konekcija">
|
552
626
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (serbian)</description>
|
@@ -554,6 +628,7 @@
|
|
554
628
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
555
629
|
<param pos="0" name="service.family" value="MySQL"/>
|
556
630
|
<param pos="0" name="service.product" value="MySQL"/>
|
631
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
557
632
|
</fingerprint>
|
558
633
|
<fingerprint pattern="Príliš mnoho spojení">
|
559
634
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (slo)</description>
|
@@ -561,6 +636,7 @@
|
|
561
636
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
562
637
|
<param pos="0" name="service.family" value="MySQL"/>
|
563
638
|
<param pos="0" name="service.product" value="MySQL"/>
|
639
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
564
640
|
</fingerprint>
|
565
641
|
<fingerprint pattern="Demasiadas conexiones">
|
566
642
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (spa)</description>
|
@@ -568,6 +644,7 @@
|
|
568
644
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
569
645
|
<param pos="0" name="service.family" value="MySQL"/>
|
570
646
|
<param pos="0" name="service.product" value="MySQL"/>
|
647
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
571
648
|
</fingerprint>
|
572
649
|
<fingerprint pattern="För många anslutningar">
|
573
650
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (swe)</description>
|
@@ -575,6 +652,7 @@
|
|
575
652
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
576
653
|
<param pos="0" name="service.family" value="MySQL"/>
|
577
654
|
<param pos="0" name="service.product" value="MySQL"/>
|
655
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
578
656
|
</fingerprint>
|
579
657
|
<fingerprint pattern="Забагато з'єднань">
|
580
658
|
<description>Oracle MySQL error ER_CON_COUNT_ERROR (ukr)</description>
|
@@ -582,6 +660,7 @@
|
|
582
660
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
583
661
|
<param pos="0" name="service.family" value="MySQL"/>
|
584
662
|
<param pos="0" name="service.product" value="MySQL"/>
|
663
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
585
664
|
</fingerprint>
|
586
665
|
<!-- ER_BAD_HOST_ERROR -->
|
587
666
|
<fingerprint pattern="Nemohu zjistit jméno stroje pro Vaši adresu">
|
@@ -590,6 +669,7 @@
|
|
590
669
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
591
670
|
<param pos="0" name="service.family" value="MySQL"/>
|
592
671
|
<param pos="0" name="service.product" value="MySQL"/>
|
672
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
593
673
|
</fingerprint>
|
594
674
|
<fingerprint pattern="Kan ikke få værtsnavn for din adresse">
|
595
675
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (dan)</description>
|
@@ -597,6 +677,7 @@
|
|
597
677
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
598
678
|
<param pos="0" name="service.family" value="MySQL"/>
|
599
679
|
<param pos="0" name="service.product" value="MySQL"/>
|
680
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
600
681
|
</fingerprint>
|
601
682
|
<fingerprint pattern="Kan de hostname niet krijgen van uw adres">
|
602
683
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (nla)</description>
|
@@ -604,6 +685,7 @@
|
|
604
685
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
605
686
|
<param pos="0" name="service.family" value="MySQL"/>
|
606
687
|
<param pos="0" name="service.product" value="MySQL"/>
|
688
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
607
689
|
</fingerprint>
|
608
690
|
<fingerprint pattern="Can't get hostname for your address">
|
609
691
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (eng)</description>
|
@@ -611,6 +693,7 @@
|
|
611
693
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
612
694
|
<param pos="0" name="service.family" value="MySQL"/>
|
613
695
|
<param pos="0" name="service.product" value="MySQL"/>
|
696
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
614
697
|
</fingerprint>
|
615
698
|
<fingerprint pattern="Ei suuda lahendada IP aadressi masina nimeks">
|
616
699
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (est)</description>
|
@@ -618,6 +701,7 @@
|
|
618
701
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
619
702
|
<param pos="0" name="service.family" value="MySQL"/>
|
620
703
|
<param pos="0" name="service.product" value="MySQL"/>
|
704
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
621
705
|
</fingerprint>
|
622
706
|
<fingerprint pattern="Ne peut obtenir de hostname pour votre adresse">
|
623
707
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (fre)</description>
|
@@ -625,6 +709,7 @@
|
|
625
709
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
626
710
|
<param pos="0" name="service.family" value="MySQL"/>
|
627
711
|
<param pos="0" name="service.product" value="MySQL"/>
|
712
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
628
713
|
</fingerprint>
|
629
714
|
<fingerprint pattern="Kann Hostnamen für diese Adresse nicht erhalten">
|
630
715
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (ger)</description>
|
@@ -632,6 +717,7 @@
|
|
632
717
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
633
718
|
<param pos="0" name="service.family" value="MySQL"/>
|
634
719
|
<param pos="0" name="service.product" value="MySQL"/>
|
720
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
635
721
|
</fingerprint>
|
636
722
|
<fingerprint pattern="Δεν έγινε γνωστό το hostname για την address σας">
|
637
723
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (greek)</description>
|
@@ -639,6 +725,7 @@
|
|
639
725
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
640
726
|
<param pos="0" name="service.family" value="MySQL"/>
|
641
727
|
<param pos="0" name="service.product" value="MySQL"/>
|
728
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
642
729
|
</fingerprint>
|
643
730
|
<fingerprint pattern="A gepnev nem allapithato meg a cimbol">
|
644
731
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (hun)</description>
|
@@ -646,6 +733,7 @@
|
|
646
733
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
647
734
|
<param pos="0" name="service.family" value="MySQL"/>
|
648
735
|
<param pos="0" name="service.product" value="MySQL"/>
|
736
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
649
737
|
</fingerprint>
|
650
738
|
<fingerprint pattern="Impossibile risalire al nome dell'host dall'indirizzo \(risoluzione inversa\)">
|
651
739
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (ita)</description>
|
@@ -653,6 +741,7 @@
|
|
653
741
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
654
742
|
<param pos="0" name="service.family" value="MySQL"/>
|
655
743
|
<param pos="0" name="service.product" value="MySQL"/>
|
744
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
656
745
|
</fingerprint>
|
657
746
|
<fingerprint pattern="IPアドレスからホスト名を解決できません。">
|
658
747
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (jpn)</description>
|
@@ -660,6 +749,7 @@
|
|
660
749
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
661
750
|
<param pos="0" name="service.family" value="MySQL"/>
|
662
751
|
<param pos="0" name="service.product" value="MySQL"/>
|
752
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
663
753
|
</fingerprint>
|
664
754
|
<fingerprint pattern="당신의 컴퓨터의 호스트이름을 얻을 수 없읍니다.">
|
665
755
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (kor)</description>
|
@@ -667,6 +757,7 @@
|
|
667
757
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
668
758
|
<param pos="0" name="service.family" value="MySQL"/>
|
669
759
|
<param pos="0" name="service.product" value="MySQL"/>
|
760
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
670
761
|
</fingerprint>
|
671
762
|
<fingerprint pattern="Kan ikke få tak i vertsnavn for din adresse">
|
672
763
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (nor)</description>
|
@@ -674,6 +765,7 @@
|
|
674
765
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
675
766
|
<param pos="0" name="service.family" value="MySQL"/>
|
676
767
|
<param pos="0" name="service.product" value="MySQL"/>
|
768
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
677
769
|
</fingerprint>
|
678
770
|
<fingerprint pattern="Kan ikkje få tak i vertsnavn for di adresse">
|
679
771
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (norwegian-ny)</description>
|
@@ -681,6 +773,7 @@
|
|
681
773
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
682
774
|
<param pos="0" name="service.family" value="MySQL"/>
|
683
775
|
<param pos="0" name="service.product" value="MySQL"/>
|
776
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
684
777
|
</fingerprint>
|
685
778
|
<fingerprint pattern="Nie można otrzymać nazwy hosta dla twojego adresu">
|
686
779
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (pol)</description>
|
@@ -688,6 +781,7 @@
|
|
688
781
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
689
782
|
<param pos="0" name="service.family" value="MySQL"/>
|
690
783
|
<param pos="0" name="service.product" value="MySQL"/>
|
784
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
691
785
|
</fingerprint>
|
692
786
|
<fingerprint pattern="Não pode obter nome do 'host' para seu endereço">
|
693
787
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (por)</description>
|
@@ -695,6 +789,7 @@
|
|
695
789
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
696
790
|
<param pos="0" name="service.family" value="MySQL"/>
|
697
791
|
<param pos="0" name="service.product" value="MySQL"/>
|
792
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
698
793
|
</fingerprint>
|
699
794
|
<fingerprint pattern="Nu pot sa obtin hostname-ul adresei tale">
|
700
795
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (rum)</description>
|
@@ -702,6 +797,7 @@
|
|
702
797
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
703
798
|
<param pos="0" name="service.family" value="MySQL"/>
|
704
799
|
<param pos="0" name="service.product" value="MySQL"/>
|
800
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
705
801
|
</fingerprint>
|
706
802
|
<fingerprint pattern="Невозможно получить имя хоста для вашего адреса">
|
707
803
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (rus)</description>
|
@@ -709,6 +805,7 @@
|
|
709
805
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
710
806
|
<param pos="0" name="service.family" value="MySQL"/>
|
711
807
|
<param pos="0" name="service.product" value="MySQL"/>
|
808
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
712
809
|
</fingerprint>
|
713
810
|
<fingerprint pattern="Ne mogu da dobijem ime host-a za vašu IP adresu">
|
714
811
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (serbian)</description>
|
@@ -716,6 +813,7 @@
|
|
716
813
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
717
814
|
<param pos="0" name="service.family" value="MySQL"/>
|
718
815
|
<param pos="0" name="service.product" value="MySQL"/>
|
816
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
719
817
|
</fingerprint>
|
720
818
|
<fingerprint pattern="Nemôžem zistiť meno hostiteľa pre vašu adresu">
|
721
819
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (slo)</description>
|
@@ -723,6 +821,7 @@
|
|
723
821
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
724
822
|
<param pos="0" name="service.family" value="MySQL"/>
|
725
823
|
<param pos="0" name="service.product" value="MySQL"/>
|
824
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
726
825
|
</fingerprint>
|
727
826
|
<fingerprint pattern="No puedo obtener el nombre de maquina de tu direccion">
|
728
827
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (spa)</description>
|
@@ -730,6 +829,7 @@
|
|
730
829
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
731
830
|
<param pos="0" name="service.family" value="MySQL"/>
|
732
831
|
<param pos="0" name="service.product" value="MySQL"/>
|
832
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
733
833
|
</fingerprint>
|
734
834
|
<fingerprint pattern="Kan inte hitta 'hostname' för din adress">
|
735
835
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (swe)</description>
|
@@ -737,6 +837,7 @@
|
|
737
837
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
738
838
|
<param pos="0" name="service.family" value="MySQL"/>
|
739
839
|
<param pos="0" name="service.product" value="MySQL"/>
|
840
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
740
841
|
</fingerprint>
|
741
842
|
<fingerprint pattern="Не можу визначити ім'я хосту для вашої адреси">
|
742
843
|
<description>Oracle MySQL error ER_BAD_HOST_ERROR (ukr)</description>
|
@@ -744,6 +845,7 @@
|
|
744
845
|
<param pos="0" name="service.vendor" value="Oracle"/>
|
745
846
|
<param pos="0" name="service.family" value="MySQL"/>
|
746
847
|
<param pos="0" name="service.product" value="MySQL"/>
|
848
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
747
849
|
</fingerprint>
|
748
850
|
<fingerprint pattern="^Host '[^']+' is not allowed to connect to this MariaDB server$">
|
749
851
|
<description>MariaDB MariaDB - Error: Host not allowed to connect (English) </description>
|
@@ -751,6 +853,7 @@
|
|
751
853
|
<param pos="0" name="service.vendor" value="MariaDB"/>
|
752
854
|
<param pos="0" name="service.family" value="MySQL"/>
|
753
855
|
<param pos="0" name="service.product" value="MariaDB"/>
|
856
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:-"/>
|
754
857
|
</fingerprint>
|
755
858
|
<fingerprint pattern="^#07000Proxy Warning - IP Forbidden$">
|
756
859
|
<description>Oracle MySQL Proxy - Error: Host not allowed to connect</description>
|