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