recog-intrigue 2.3.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- data/.github/ISSUE_TEMPLATE/fingerprint_request.md +27 -0
- data/.github/PULL_REQUEST_TEMPLATE +24 -0
- data/.gitignore +14 -0
- data/.rbenv-gemset +1 -0
- data/.rspec +3 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +25 -0
- data/.yardopts +1 -0
- data/CONTRIBUTING.md +171 -0
- data/COPYING +23 -0
- data/Gemfile +10 -0
- data/LICENSE +7 -0
- data/README.md +85 -0
- data/Rakefile +22 -0
- data/bin/recog_export +81 -0
- data/bin/recog_match +55 -0
- data/bin/recog_standardize +118 -0
- data/bin/recog_verify +64 -0
- data/cpe-remap.yaml +134 -0
- data/features/data/failing_banners_fingerprints.xml +20 -0
- data/features/data/matching_banners_fingerprints.xml +23 -0
- data/features/data/multiple_banners_fingerprints.xml +32 -0
- data/features/data/no_tests.xml +3 -0
- data/features/data/sample_banner.txt +2 -0
- data/features/data/successful_tests.xml +18 -0
- data/features/data/tests_with_failures.xml +20 -0
- data/features/data/tests_with_warnings.xml +17 -0
- data/features/match.feature +36 -0
- data/features/support/aruba.rb +3 -0
- data/features/support/env.rb +6 -0
- data/features/verify.feature +48 -0
- data/identifiers/README.md +47 -0
- data/identifiers/os_architecture.txt +20 -0
- data/identifiers/os_device.txt +52 -0
- data/identifiers/os_family.txt +160 -0
- data/identifiers/os_product.txt +199 -0
- data/identifiers/service_family.txt +185 -0
- data/identifiers/service_product.txt +255 -0
- data/identifiers/software_class.txt +26 -0
- data/identifiers/software_family.txt +91 -0
- data/identifiers/software_product.txt +333 -0
- data/identifiers/vendor.txt +405 -0
- data/lib/recog.rb +4 -0
- data/lib/recog/db.rb +78 -0
- data/lib/recog/db_manager.rb +31 -0
- data/lib/recog/fingerprint.rb +280 -0
- data/lib/recog/fingerprint/regexp_factory.rb +56 -0
- data/lib/recog/fingerprint/test.rb +18 -0
- data/lib/recog/formatter.rb +51 -0
- data/lib/recog/match_reporter.rb +77 -0
- data/lib/recog/matcher.rb +94 -0
- data/lib/recog/matcher_factory.rb +14 -0
- data/lib/recog/nizer.rb +347 -0
- data/lib/recog/verifier.rb +39 -0
- data/lib/recog/verifier_factory.rb +13 -0
- data/lib/recog/verify_reporter.rb +86 -0
- data/lib/recog/version.rb +3 -0
- data/misc/convert_mysql_err +61 -0
- data/misc/order.xsl +17 -0
- data/recog-intrigue.gemspec +45 -0
- data/requirements.txt +2 -0
- data/spec/data/best_os_match_1.yml +17 -0
- data/spec/data/best_os_match_2.yml +17 -0
- data/spec/data/best_service_match_1.yml +17 -0
- data/spec/data/smb_native_os.txt +25 -0
- data/spec/data/test_fingerprints.xml +36 -0
- data/spec/data/verification_fingerprints.xml +86 -0
- data/spec/data/whitespaced_fingerprint.xml +5 -0
- data/spec/lib/fingerprint_self_test_spec.rb +174 -0
- data/spec/lib/recog/db_spec.rb +98 -0
- data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +73 -0
- data/spec/lib/recog/fingerprint_spec.rb +112 -0
- data/spec/lib/recog/formatter_spec.rb +69 -0
- data/spec/lib/recog/match_reporter_spec.rb +91 -0
- data/spec/lib/recog/nizer_spec.rb +330 -0
- data/spec/lib/recog/verify_reporter_spec.rb +113 -0
- data/spec/spec_helper.rb +82 -0
- data/update_cpes.py +186 -0
- data/xml/apache_modules.xml +1911 -0
- data/xml/apache_os.xml +273 -0
- data/xml/architecture.xml +36 -0
- data/xml/dns_versionbind.xml +761 -0
- data/xml/fingerprints.xsd +128 -0
- data/xml/ftp_banners.xml +1553 -0
- data/xml/h323_callresp.xml +603 -0
- data/xml/hp_pjl_id.xml +358 -0
- data/xml/html_title.xml +1630 -0
- data/xml/http_cookies.xml +411 -0
- data/xml/http_servers.xml +3195 -0
- data/xml/http_wwwauth.xml +595 -0
- data/xml/imap_banners.xml +245 -0
- data/xml/ldap_searchresult.xml +711 -0
- data/xml/mdns_device-info_txt.xml +1796 -0
- data/xml/mdns_workstation_txt.xml +15 -0
- data/xml/mysql_banners.xml +1649 -0
- data/xml/mysql_error.xml +871 -0
- data/xml/nntp_banners.xml +82 -0
- data/xml/ntp_banners.xml +1223 -0
- data/xml/operating_system.xml +629 -0
- data/xml/pop_banners.xml +499 -0
- data/xml/rsh_resp.xml +76 -0
- data/xml/rtsp_servers.xml +76 -0
- data/xml/sip_banners.xml +359 -0
- data/xml/sip_user_agents.xml +221 -0
- data/xml/smb_native_lm.xml +62 -0
- data/xml/smb_native_os.xml +662 -0
- data/xml/smtp_banners.xml +1690 -0
- data/xml/smtp_debug.xml +39 -0
- data/xml/smtp_ehlo.xml +49 -0
- data/xml/smtp_expn.xml +82 -0
- data/xml/smtp_help.xml +157 -0
- data/xml/smtp_mailfrom.xml +20 -0
- data/xml/smtp_noop.xml +44 -0
- data/xml/smtp_quit.xml +29 -0
- data/xml/smtp_rcptto.xml +25 -0
- data/xml/smtp_rset.xml +26 -0
- data/xml/smtp_turn.xml +26 -0
- data/xml/smtp_vrfy.xml +89 -0
- data/xml/snmp_sysdescr.xml +6507 -0
- data/xml/snmp_sysobjid.xml +430 -0
- data/xml/ssh_banners.xml +1968 -0
- data/xml/telnet_banners.xml +1595 -0
- data/xml/x11_banners.xml +232 -0
- data/xml/x509_issuers.xml +134 -0
- data/xml/x509_subjects.xml +1268 -0
- metadata +304 -0
data/xml/mysql_error.xml
ADDED
@@ -0,0 +1,871 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
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:
|
11
|
+
|
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
|
14
|
+
|
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.
|
18
|
+
|
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
|
21
|
+
|
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
|
+
<!-- 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>
|
31
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
32
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
33
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
34
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
35
|
+
</fingerprint>
|
36
|
+
<fingerprint pattern="^Værten '[^']+' kan ikke tilkoble denne MySQL-server$">
|
37
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (dan)</description>
|
38
|
+
<example>Værten '10.10.10.10' kan ikke tilkoble denne MySQL-server</example>
|
39
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
40
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
41
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
42
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
43
|
+
</fingerprint>
|
44
|
+
<fingerprint pattern="^Het is host '[^']+' is niet toegestaan verbinding te maken met deze MySQL server$">
|
45
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (nla)</description>
|
46
|
+
<example>Het is host '10.10.10.10' is niet toegestaan verbinding te maken met deze MySQL server</example>
|
47
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
48
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
49
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
50
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
51
|
+
</fingerprint>
|
52
|
+
<fingerprint pattern="^^(?:#HY000)?Host '[^']+' is not allowed to connect to this MySQL server$$">
|
53
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (eng)</description>
|
54
|
+
<example>Host '10.10.10.10' is not allowed to connect to this MySQL server</example>
|
55
|
+
<example>#HY000Host '10.10.10.10' is not allowed to connect to this MySQL server</example>
|
56
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
57
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
58
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
59
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
60
|
+
</fingerprint>
|
61
|
+
<fingerprint pattern="^Masinal '[^']+' puudub ligipääs sellele MySQL serverile$">
|
62
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (est)</description>
|
63
|
+
<example>Masinal '10.10.10.10' puudub ligipääs sellele MySQL serverile</example>
|
64
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
65
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
66
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
67
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
68
|
+
</fingerprint>
|
69
|
+
<fingerprint pattern="^Le hôte '[^']+' n'est pas authorisé à se connecter à ce serveur MySQL$">
|
70
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (fre)</description>
|
71
|
+
<example>Le hôte '10.10.10.10' n'est pas authorisé à se connecter à ce serveur MySQL</example>
|
72
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
73
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
74
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
75
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
76
|
+
</fingerprint>
|
77
|
+
<fingerprint pattern="^Host '[^']+' hat keine Berechtigung, sich mit diesem MySQL-Server zu verbinden$">
|
78
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ger)</description>
|
79
|
+
<example>Host '10.10.10.10' hat keine Berechtigung, sich mit diesem MySQL-Server zu verbinden</example>
|
80
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
81
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
82
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
83
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
84
|
+
</fingerprint>
|
85
|
+
<fingerprint pattern="^Ο υπολογιστής '[^']+' δεν έχει δικαίωμα σύνδεσης με τον MySQL server$">
|
86
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (greek)</description>
|
87
|
+
<example>Ο υπολογιστής '10.10.10.10' δεν έχει δικαίωμα σύνδεσης με τον MySQL server</example>
|
88
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
89
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
90
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
91
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
92
|
+
</fingerprint>
|
93
|
+
<fingerprint pattern="^A '[^']+' host szamara nem engedelyezett a kapcsolodas ehhez a MySQL szerverhez$">
|
94
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (hun)</description>
|
95
|
+
<example>A '10.10.10.10' host szamara nem engedelyezett a kapcsolodas ehhez a MySQL szerverhez</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
100
|
+
</fingerprint>
|
101
|
+
<fingerprint pattern="^Al sistema '[^']+' non e` consentita la connessione a questo server MySQL$">
|
102
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ita)</description>
|
103
|
+
<example>Al sistema '10.10.10.10' non e` consentita la connessione a questo server MySQL</example>
|
104
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
105
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
106
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
107
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
108
|
+
</fingerprint>
|
109
|
+
<fingerprint pattern="^ホスト '[^']+' からのこの MySQL server への接続は許可されていません。$">
|
110
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (jpn)</description>
|
111
|
+
<example>ホスト '10.10.10.10' からのこの MySQL server への接続は許可されていません。</example>
|
112
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
113
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
114
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
115
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
116
|
+
</fingerprint>
|
117
|
+
<fingerprint pattern="^'[^']+' 호스트는 이 MySQL서버에 접속할 허가를 받지 못했습니다.$">
|
118
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (kor)</description>
|
119
|
+
<example>'10.10.10.10' 호스트는 이 MySQL서버에 접속할 허가를 받지 못했습니다.</example>
|
120
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
121
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
122
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
123
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
124
|
+
</fingerprint>
|
125
|
+
<fingerprint pattern="^'Host' '[^']+' não tem permissão para se conectar com este servidor MySQL$">
|
126
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (por)</description>
|
127
|
+
<example>'Host' '10.10.10.10' não tem permissão para se conectar com este servidor MySQL</example>
|
128
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
129
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
130
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
131
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
132
|
+
</fingerprint>
|
133
|
+
<fingerprint pattern="^Host-ul '[^']+' nu este permis a se conecta la aceste server MySQL$">
|
134
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (rum)</description>
|
135
|
+
<example>Host-ul '10.10.10.10' nu este permis a se conecta la aceste server MySQL</example>
|
136
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
137
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
138
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
139
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
140
|
+
</fingerprint>
|
141
|
+
<fingerprint pattern="^Хосту '[^']+' не разрешается подключаться к этому серверу MySQL$">
|
142
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (rus)</description>
|
143
|
+
<example>Хосту '10.10.10.10' не разрешается подключаться к этому серверу MySQL</example>
|
144
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
145
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
146
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
147
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
148
|
+
</fingerprint>
|
149
|
+
<fingerprint pattern="^Host-u '[^']+' nije dozvoljeno da se konektuje na ovaj MySQL server$">
|
150
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (serbian)</description>
|
151
|
+
<example>Host-u '10.10.10.10' nije dozvoljeno da se konektuje na ovaj 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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
156
|
+
</fingerprint>
|
157
|
+
<fingerprint pattern="^Servidor '[^']+' no está permitido para conectar con este servidor MySQL$">
|
158
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (spa)</description>
|
159
|
+
<example>Servidor '10.10.10.10' no está permitido para conectar con este servidor MySQL</example>
|
160
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
161
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
162
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
163
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
164
|
+
</fingerprint>
|
165
|
+
<fingerprint pattern="^Denna dator, '[^']+', har inte privileger att använda denna MySQL server$">
|
166
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (swe)</description>
|
167
|
+
<example>Denna dator, '10.10.10.10', har inte privileger att använda denna MySQL server</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
172
|
+
</fingerprint>
|
173
|
+
<fingerprint pattern="^Хосту '[^']+' не доволено зв'язуватись з цим сервером MySQL$">
|
174
|
+
<description>Oracle MySQL error ER_HOST_NOT_PRIVILEGED (ukr)</description>
|
175
|
+
<example>Хосту '10.10.10.10' не доволено зв'язуватись з цим сервером MySQL</example>
|
176
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
177
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
178
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
179
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
180
|
+
</fingerprint>
|
181
|
+
<!-- ER_HOST_IS_BLOCKED -->
|
182
|
+
<fingerprint pattern="Stroj '[^']+' je zablokován kvůli mnoha chybám při připojování. Odblokujete použitím 'mysqladmin flush-hosts'">
|
183
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (cze)</description>
|
184
|
+
<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>
|
185
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
186
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
187
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
188
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
189
|
+
</fingerprint>
|
190
|
+
<fingerprint pattern="Værten '[^']+' er blokeret på grund af mange fejlforespørgsler. Lås op med 'mysqladmin flush-hosts'">
|
191
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (dan)</description>
|
192
|
+
<example>Værten '10.10.10.10' er blokeret på grund af mange fejlforespørgsler. Lås op med 'mysqladmin flush-hosts'</example>
|
193
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
194
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
195
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
196
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
197
|
+
</fingerprint>
|
198
|
+
<fingerprint pattern="Host '[^']+' is geblokkeeerd vanwege te veel verbindings fouten. Deblokkeer met 'mysqladmin flush-hosts'">
|
199
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (nla)</description>
|
200
|
+
<example>Host '10.10.10.10' is geblokkeeerd vanwege te veel verbindings fouten. Deblokkeer met 'mysqladmin flush-hosts'</example>
|
201
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
202
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
203
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
204
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
205
|
+
</fingerprint>
|
206
|
+
<fingerprint pattern="Host '[^']+' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'">
|
207
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (eng)</description>
|
208
|
+
<example>Host '10.10.10.10' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'</example>
|
209
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
210
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
211
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
212
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
213
|
+
</fingerprint>
|
214
|
+
<fingerprint pattern="Masin '[^']+' on blokeeritud hulgaliste ühendusvigade tõttu. Blokeeringu saab tühistada 'mysqladmin flush-hosts' käsuga">
|
215
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (est)</description>
|
216
|
+
<example>Masin '10.10.10.10' on blokeeritud hulgaliste ühendusvigade tõttu. Blokeeringu saab tühistada 'mysqladmin flush-hosts' käsuga</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
221
|
+
</fingerprint>
|
222
|
+
<fingerprint pattern="L'hôte '[^']+' est bloqué à cause d'un trop grand nombre d'erreur de connexion. Débloquer le par 'mysqladmin flush-hosts'">
|
223
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (fre)</description>
|
224
|
+
<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>
|
225
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
226
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
227
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
228
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
229
|
+
</fingerprint>
|
230
|
+
<fingerprint pattern="Host '[^']+' blockiert wegen zu vieler Verbindungsfehler. Aufheben der Blockierung mit 'mysqladmin flush-hosts'">
|
231
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (ger)</description>
|
232
|
+
<example>Host '10.10.10.10' blockiert wegen zu vieler Verbindungsfehler. Aufheben der Blockierung mit 'mysqladmin flush-hosts'</example>
|
233
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
234
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
235
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
236
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
237
|
+
</fingerprint>
|
238
|
+
<fingerprint pattern="Ο υπολογιστής '[^']+' έχει αποκλεισθεί λόγω πολλαπλών λαθών σύνδεσης. Προσπαθήστε να διορώσετε με 'mysqladmin flush-hosts'">
|
239
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (greek)</description>
|
240
|
+
<example>Ο υπολογιστής '10.10.10.10' έχει αποκλεισθεί λόγω πολλαπλών λαθών σύνδεσης. Προσπαθήστε να διορώσετε με 'mysqladmin flush-hosts'</example>
|
241
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
242
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
243
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
244
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
245
|
+
</fingerprint>
|
246
|
+
<fingerprint pattern="A '[^']+' host blokkolodott, tul sok kapcsolodasi hiba miatt. Hasznalja a 'mysqladmin flush-hosts' parancsot">
|
247
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (hun)</description>
|
248
|
+
<example>A '10.10.10.10' host blokkolodott, tul sok kapcsolodasi hiba miatt. Hasznalja a 'mysqladmin flush-hosts' parancsot</example>
|
249
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
250
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
251
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
252
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
253
|
+
</fingerprint>
|
254
|
+
<fingerprint pattern="Sistema '[^']+' bloccato a causa di troppi errori di connessione. Per sbloccarlo: 'mysqladmin flush-hosts'">
|
255
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (ita)</description>
|
256
|
+
<example>Sistema '10.10.10.10' bloccato a causa di troppi errori di connessione. Per sbloccarlo: 'mysqladmin flush-hosts'</example>
|
257
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
258
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
259
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
260
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
261
|
+
</fingerprint>
|
262
|
+
<fingerprint pattern="接続エラーが多いため、ホスト '[^']+' は拒否されました。'mysqladmin flush-hosts' で解除できます。">
|
263
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (jpn)</description>
|
264
|
+
<example>接続エラーが多いため、ホスト '10.10.10.10' は拒否されました。'mysqladmin flush-hosts' で解除できます。</example>
|
265
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
266
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
267
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
268
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
269
|
+
</fingerprint>
|
270
|
+
<fingerprint pattern="너무 많은 연결오류로 인하여 호스트 '[^']+'는 블락되었습니다. 'mysqladmin flush-hosts'를 이용하여 블락을 해제하세요">
|
271
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (kor)</description>
|
272
|
+
<example>너무 많은 연결오류로 인하여 호스트 '10.10.10.10'는 블락되었습니다. '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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
277
|
+
</fingerprint>
|
278
|
+
<fingerprint pattern="'Host' '[^']+' está bloqueado devido a muitos erros de conexão. Desbloqueie com 'mysqladmin flush-hosts'">
|
279
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (por)</description>
|
280
|
+
<example>'Host' '10.10.10.10' está bloqueado devido a muitos erros de conexão. Desbloqueie com 'mysqladmin flush-hosts'</example>
|
281
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
282
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
283
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
284
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
285
|
+
</fingerprint>
|
286
|
+
<fingerprint pattern="Host-ul '[^']+' e blocat din cauza multelor erori de conectie. Poti deploca folosind 'mysqladmin flush-hosts'">
|
287
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (rum)</description>
|
288
|
+
<example>Host-ul '10.10.10.10' e blocat din cauza multelor erori de conectie. Poti deploca folosind 'mysqladmin flush-hosts'</example>
|
289
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
290
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
291
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
292
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
293
|
+
</fingerprint>
|
294
|
+
<fingerprint pattern="Хост '[^']+' заблокирован из-за слишком большого количества ошибок соединения. Разблокировать его можно с помощью 'mysqladmin flush-hosts'">
|
295
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (rus)</description>
|
296
|
+
<example>Хост '10.10.10.10' заблокирован из-за слишком большого количества ошибок соединения. Разблокировать его можно с помощью 'mysqladmin flush-hosts'</example>
|
297
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
298
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
299
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
300
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
301
|
+
</fingerprint>
|
302
|
+
<fingerprint pattern="Host '[^']+' je blokiran zbog previše grešaka u konekciji. Možete ga odblokirati pomoću komande 'mysqladmin flush-hosts'">
|
303
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (serbian)</description>
|
304
|
+
<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>
|
305
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
306
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
307
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
308
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
309
|
+
</fingerprint>
|
310
|
+
<fingerprint pattern="Servidor '[^']+' está bloqueado por muchos errores de conexión. Desbloquear con 'mysqladmin flush-hosts'">
|
311
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (spa)</description>
|
312
|
+
<example>Servidor '10.10.10.10' está bloqueado por muchos errores de conexión. Desbloquear con 'mysqladmin flush-hosts'</example>
|
313
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
314
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
315
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
316
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
317
|
+
</fingerprint>
|
318
|
+
<fingerprint pattern="Denna dator, '[^']+', är blockerad pga många felaktig paket. Gör 'mysqladmin flush-hosts' för att ta bort alla blockeringarna">
|
319
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (swe)</description>
|
320
|
+
<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>
|
321
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
322
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
323
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
324
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
325
|
+
</fingerprint>
|
326
|
+
<fingerprint pattern="Хост '[^']+' заблоковано з причини великої кількості помилок з'єднання. Для розблокування використовуйте 'mysqladmin flush-hosts'">
|
327
|
+
<description>Oracle MySQL error ER_HOST_IS_BLOCKED (ukr)</description>
|
328
|
+
<example>Хост '10.10.10.10' заблоковано з причини великої кількості помилок з'єднання. Для розблокування використовуйте 'mysqladmin flush-hosts'</example>
|
329
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
330
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
331
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
332
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
333
|
+
</fingerprint>
|
334
|
+
<!-- ER_CANT_CREATE_THREAD -->
|
335
|
+
<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">
|
336
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (cze)</description>
|
337
|
+
<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>
|
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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
342
|
+
</fingerprint>
|
343
|
+
<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">
|
344
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (dan)</description>
|
345
|
+
<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>
|
346
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
347
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
348
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
349
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
350
|
+
</fingerprint>
|
351
|
+
<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">
|
352
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (nla)</description>
|
353
|
+
<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>
|
354
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
355
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
356
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
357
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
358
|
+
</fingerprint>
|
359
|
+
<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">
|
360
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (eng, pol, nor, norwegian-ny)</description>
|
361
|
+
<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>
|
362
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
363
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
364
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
365
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
366
|
+
</fingerprint>
|
367
|
+
<fingerprint pattern="Ei suuda luua uut lõime \(veakood -?\d+\). Kui mälu ei ole otsas, on tõenäoliselt tegemist operatsioonisüsteemispetsiifilise veaga">
|
368
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (est)</description>
|
369
|
+
<example>Ei suuda luua uut lõime (veakood 4). Kui mälu ei ole otsas, on tõenäoliselt tegemist operatsioonisüsteemispetsiifilise veaga</example>
|
370
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
371
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
372
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
373
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
374
|
+
</fingerprint>
|
375
|
+
<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">
|
376
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (fre)</description>
|
377
|
+
<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>
|
378
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
379
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
380
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
381
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
382
|
+
</fingerprint>
|
383
|
+
<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">
|
384
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (ger)</description>
|
385
|
+
<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>
|
386
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
387
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
388
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
389
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
390
|
+
</fingerprint>
|
391
|
+
<fingerprint pattern="Uj thread letrehozasa nem lehetseges \(Hibakod: -?\d+\). Amenyiben van meg szabad memoria, olvassa el a kezikonyv operacios rendszerfuggo hibalehetosegekrol szolo reszet">
|
392
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (hun)</description>
|
393
|
+
<example>Uj thread letrehozasa nem lehetseges (Hibakod: 4). Amenyiben van meg szabad memoria, olvassa el a kezikonyv operacios rendszerfuggo hibalehetosegekrol szolo reszet</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
398
|
+
</fingerprint>
|
399
|
+
<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">
|
400
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (ita)</description>
|
401
|
+
<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>
|
402
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
403
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
404
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
405
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
406
|
+
</fingerprint>
|
407
|
+
<fingerprint pattern="新規にスレッドを作成できません。\(エラー番号 -?\d+\) もしも使用可能メモリーの不足でなければ、OS依存のバグである可能性があります。">
|
408
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (jpn)</description>
|
409
|
+
<example>新規にスレッドを作成できません。(エラー番号 4) もしも使用可能メモリーの不足でなければ、OS依存のバグである可能性があります。</example>
|
410
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
411
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
412
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
413
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
414
|
+
</fingerprint>
|
415
|
+
<fingerprint pattern="새로운 쓰레드를 만들 수 없습니다.\(에러번호 -?\d+\). 만약 여유메모리가 있다면 OS-dependent버그 의 메뉴얼 부분을 찾아보시오.">
|
416
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (kor)</description>
|
417
|
+
<example>새로운 쓰레드를 만들 수 없습니다.(에러번호 4). 만약 여유메모리가 있다면 OS-dependent버그 의 메뉴얼 부분을 찾아보시오.</example>
|
418
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
419
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
420
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
421
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
422
|
+
</fingerprint>
|
423
|
+
<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">
|
424
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (por)</description>
|
425
|
+
<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>
|
426
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
427
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
428
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
429
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
430
|
+
</fingerprint>
|
431
|
+
<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">
|
432
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (rum)</description>
|
433
|
+
<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>
|
434
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
435
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
436
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
437
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
438
|
+
</fingerprint>
|
439
|
+
<fingerprint pattern="Невозможно создать новый поток \(ошибка -?\d+\). Если это не ситуация, связанная с нехваткой памяти, то вам следует изучить документацию на предмет описания возможной ошибки работы в конкретной ОС">
|
440
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (rus)</description>
|
441
|
+
<example>Невозможно создать новый поток (ошибка 4). Если это не ситуация, связанная с нехваткой памяти, то вам следует изучить документацию на предмет описания возможной ошибки работы в конкретной ОС</example>
|
442
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
443
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
444
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
445
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
446
|
+
</fingerprint>
|
447
|
+
<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">
|
448
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (serbian)</description>
|
449
|
+
<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>
|
450
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
451
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
452
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
453
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
454
|
+
</fingerprint>
|
455
|
+
<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">
|
456
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (spa)</description>
|
457
|
+
<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>
|
458
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
459
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
460
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
461
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
462
|
+
</fingerprint>
|
463
|
+
<fingerprint pattern="Kan inte skapa en ny tråd \(errno -?\d+\)">
|
464
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (swe)</description>
|
465
|
+
<example>Kan inte skapa en ny tråd (errno 4)</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
470
|
+
</fingerprint>
|
471
|
+
<fingerprint pattern="Не можу створити нову гілку \(помилка -?\d+\). Якщо ви не використали усю пам'ять, то прочитайте документацію до вашої ОС - можливо це помилка ОС">
|
472
|
+
<description>Oracle MySQL error ER_CANT_CREATE_THREAD (ukr)</description>
|
473
|
+
<example>Не можу створити нову гілку (помилка 4). Якщо ви не використали усю пам'ять, то прочитайте документацію до вашої ОС - можливо це помилка ОС</example>
|
474
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
475
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
476
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
477
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
478
|
+
</fingerprint>
|
479
|
+
<!-- ER_CON_COUNT_ERROR -->
|
480
|
+
<fingerprint pattern="Příliš mnoho spojení">
|
481
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (cze)</description>
|
482
|
+
<example>Příliš mnoho spojení</example>
|
483
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
484
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
485
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
486
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
487
|
+
</fingerprint>
|
488
|
+
<fingerprint pattern="For mange forbindelser \(connections\)">
|
489
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (dan)</description>
|
490
|
+
<example>For mange forbindelser (connections)</example>
|
491
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
492
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
493
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
494
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
495
|
+
</fingerprint>
|
496
|
+
<fingerprint pattern="Te veel verbindingen">
|
497
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (nla)</description>
|
498
|
+
<example>Te veel verbindingen</example>
|
499
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
500
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
501
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
502
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
503
|
+
</fingerprint>
|
504
|
+
<fingerprint pattern="Too many connections">
|
505
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (eng)</description>
|
506
|
+
<example>Too many connections</example>
|
507
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
508
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
509
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
510
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
511
|
+
</fingerprint>
|
512
|
+
<fingerprint pattern="Liiga palju samaaegseid ühendusi">
|
513
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (est)</description>
|
514
|
+
<example>Liiga palju samaaegseid ühendusi</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
519
|
+
</fingerprint>
|
520
|
+
<fingerprint pattern="Trop de connexions">
|
521
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (fre)</description>
|
522
|
+
<example>Trop de connexions</example>
|
523
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
524
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
525
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
526
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
527
|
+
</fingerprint>
|
528
|
+
<fingerprint pattern="Zu viele Verbindungen">
|
529
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (ger)</description>
|
530
|
+
<example>Zu viele Verbindungen</example>
|
531
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
532
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
533
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
534
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
535
|
+
</fingerprint>
|
536
|
+
<fingerprint pattern="Υπάρχουν πολλές συνδέσεις...">
|
537
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (greek)</description>
|
538
|
+
<example>Υπάρχουν πολλές συνδέσεις...</example>
|
539
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
540
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
541
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
542
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
543
|
+
</fingerprint>
|
544
|
+
<fingerprint pattern="Tul sok kapcsolat">
|
545
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (hun)</description>
|
546
|
+
<example>Tul sok kapcsolat</example>
|
547
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
548
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
549
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
550
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
551
|
+
</fingerprint>
|
552
|
+
<fingerprint pattern="Troppe connessioni">
|
553
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (ita)</description>
|
554
|
+
<example>Troppe connessioni</example>
|
555
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
556
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
557
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
558
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
559
|
+
</fingerprint>
|
560
|
+
<fingerprint pattern="接続が多すぎます。">
|
561
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (jpn)</description>
|
562
|
+
<example>接続が多すぎます。</example>
|
563
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
564
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
565
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
566
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
567
|
+
</fingerprint>
|
568
|
+
<fingerprint pattern="너무 많은 연결... max_connection을 증가 시키시오...">
|
569
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (kor)</description>
|
570
|
+
<example>너무 많은 연결... max_connection을 증가 시키시오...</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
575
|
+
</fingerprint>
|
576
|
+
<fingerprint pattern="For mange tilkoblinger \(connections\)">
|
577
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (nor)</description>
|
578
|
+
<example>For mange tilkoblinger (connections)</example>
|
579
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
580
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
581
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
582
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
583
|
+
</fingerprint>
|
584
|
+
<fingerprint pattern="For mange tilkoplingar \(connections\)">
|
585
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (norwegian-ny)</description>
|
586
|
+
<example>For mange tilkoplingar (connections)</example>
|
587
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
588
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
589
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
590
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
591
|
+
</fingerprint>
|
592
|
+
<fingerprint pattern="Zbyt wiele poł\?czeń">
|
593
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (pol)</description>
|
594
|
+
<example>Zbyt wiele poł?czeń</example>
|
595
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
596
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
597
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
598
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
599
|
+
</fingerprint>
|
600
|
+
<fingerprint pattern="Excesso de conexões">
|
601
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (por)</description>
|
602
|
+
<example>Excesso de conexões</example>
|
603
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
604
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
605
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
606
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
607
|
+
</fingerprint>
|
608
|
+
<fingerprint pattern="Prea multe conectiuni">
|
609
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (rum)</description>
|
610
|
+
<example>Prea multe conectiuni</example>
|
611
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
612
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
613
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
614
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
615
|
+
</fingerprint>
|
616
|
+
<fingerprint pattern="Слишком много соединений">
|
617
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (rus)</description>
|
618
|
+
<example>Слишком много соединений</example>
|
619
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
620
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
621
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
622
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
623
|
+
</fingerprint>
|
624
|
+
<fingerprint pattern="Previše konekcija">
|
625
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (serbian)</description>
|
626
|
+
<example>Previše konekcija</example>
|
627
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
628
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
629
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
630
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
631
|
+
</fingerprint>
|
632
|
+
<fingerprint pattern="Príliš mnoho spojení">
|
633
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (slo)</description>
|
634
|
+
<example>Príliš mnoho spojení</example>
|
635
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
636
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
637
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
638
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
639
|
+
</fingerprint>
|
640
|
+
<fingerprint pattern="Demasiadas conexiones">
|
641
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (spa)</description>
|
642
|
+
<example>Demasiadas conexiones</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
647
|
+
</fingerprint>
|
648
|
+
<fingerprint pattern="För många anslutningar">
|
649
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (swe)</description>
|
650
|
+
<example>För många anslutningar</example>
|
651
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
652
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
653
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
654
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
655
|
+
</fingerprint>
|
656
|
+
<fingerprint pattern="Забагато з'єднань">
|
657
|
+
<description>Oracle MySQL error ER_CON_COUNT_ERROR (ukr)</description>
|
658
|
+
<example>Забагато з'єднань</example>
|
659
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
660
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
661
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
662
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
663
|
+
</fingerprint>
|
664
|
+
<!-- ER_BAD_HOST_ERROR -->
|
665
|
+
<fingerprint pattern="Nemohu zjistit jméno stroje pro Vaši adresu">
|
666
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (cze)</description>
|
667
|
+
<example>Nemohu zjistit jméno stroje pro Vaši adresu</example>
|
668
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
669
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
670
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
671
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
672
|
+
</fingerprint>
|
673
|
+
<fingerprint pattern="Kan ikke få værtsnavn for din adresse">
|
674
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (dan)</description>
|
675
|
+
<example>Kan ikke få værtsnavn for din adresse</example>
|
676
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
677
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
678
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
679
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
680
|
+
</fingerprint>
|
681
|
+
<fingerprint pattern="Kan de hostname niet krijgen van uw adres">
|
682
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (nla)</description>
|
683
|
+
<example>Kan de hostname niet krijgen van uw adres</example>
|
684
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
685
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
686
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
687
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
688
|
+
</fingerprint>
|
689
|
+
<fingerprint pattern="Can't get hostname for your address">
|
690
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (eng)</description>
|
691
|
+
<example>Can't get hostname for your address</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
696
|
+
</fingerprint>
|
697
|
+
<fingerprint pattern="Ei suuda lahendada IP aadressi masina nimeks">
|
698
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (est)</description>
|
699
|
+
<example>Ei suuda lahendada IP aadressi masina nimeks</example>
|
700
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
701
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
702
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
703
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
704
|
+
</fingerprint>
|
705
|
+
<fingerprint pattern="Ne peut obtenir de hostname pour votre adresse">
|
706
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (fre)</description>
|
707
|
+
<example>Ne peut obtenir de hostname pour votre adresse</example>
|
708
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
709
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
710
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
711
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
712
|
+
</fingerprint>
|
713
|
+
<fingerprint pattern="Kann Hostnamen für diese Adresse nicht erhalten">
|
714
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (ger)</description>
|
715
|
+
<example>Kann Hostnamen für diese Adresse nicht erhalten</example>
|
716
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
717
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
718
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
719
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
720
|
+
</fingerprint>
|
721
|
+
<fingerprint pattern="Δεν έγινε γνωστό το hostname για την address σας">
|
722
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (greek)</description>
|
723
|
+
<example>Δεν έγινε γνωστό το hostname για την address σας</example>
|
724
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
725
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
726
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
727
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
728
|
+
</fingerprint>
|
729
|
+
<fingerprint pattern="A gepnev nem allapithato meg a cimbol">
|
730
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (hun)</description>
|
731
|
+
<example>A gepnev nem allapithato meg a cimbol</example>
|
732
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
733
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
734
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
735
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
736
|
+
</fingerprint>
|
737
|
+
<fingerprint pattern="Impossibile risalire al nome dell'host dall'indirizzo \(risoluzione inversa\)">
|
738
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (ita)</description>
|
739
|
+
<example>Impossibile risalire al nome dell'host dall'indirizzo (risoluzione inversa)</example>
|
740
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
741
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
742
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
743
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
744
|
+
</fingerprint>
|
745
|
+
<fingerprint pattern="IPアドレスからホスト名を解決できません。">
|
746
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (jpn)</description>
|
747
|
+
<example>IPアドレスからホスト名を解決できません。</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
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
752
|
+
</fingerprint>
|
753
|
+
<fingerprint pattern="당신의 컴퓨터의 호스트이름을 얻을 수 없읍니다.">
|
754
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (kor)</description>
|
755
|
+
<example>당신의 컴퓨터의 호스트이름을 얻을 수 없읍니다.</example>
|
756
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
757
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
758
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
759
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
760
|
+
</fingerprint>
|
761
|
+
<fingerprint pattern="Kan ikke få tak i vertsnavn for din adresse">
|
762
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (nor)</description>
|
763
|
+
<example>Kan ikke få tak i vertsnavn for din adresse</example>
|
764
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
765
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
766
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
767
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
768
|
+
</fingerprint>
|
769
|
+
<fingerprint pattern="Kan ikkje få tak i vertsnavn for di adresse">
|
770
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (norwegian-ny)</description>
|
771
|
+
<example>Kan ikkje få tak i vertsnavn for di adresse</example>
|
772
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
773
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
774
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
775
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
776
|
+
</fingerprint>
|
777
|
+
<fingerprint pattern="Nie można otrzymać nazwy hosta dla twojego adresu">
|
778
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (pol)</description>
|
779
|
+
<example>Nie można otrzymać nazwy hosta dla twojego adresu</example>
|
780
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
781
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
782
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
783
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
784
|
+
</fingerprint>
|
785
|
+
<fingerprint pattern="Não pode obter nome do 'host' para seu endereço">
|
786
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (por)</description>
|
787
|
+
<example>Não pode obter nome do 'host' para seu endereço</example>
|
788
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
789
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
790
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
791
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
792
|
+
</fingerprint>
|
793
|
+
<fingerprint pattern="Nu pot sa obtin hostname-ul adresei tale">
|
794
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (rum)</description>
|
795
|
+
<example>Nu pot sa obtin hostname-ul adresei tale</example>
|
796
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
797
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
798
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
799
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
800
|
+
</fingerprint>
|
801
|
+
<fingerprint pattern="Невозможно получить имя хоста для вашего адреса">
|
802
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (rus)</description>
|
803
|
+
<example>Невозможно получить имя хоста для вашего адреса</example>
|
804
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
805
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
806
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
807
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
808
|
+
</fingerprint>
|
809
|
+
<fingerprint pattern="Ne mogu da dobijem ime host-a za vašu IP adresu">
|
810
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (serbian)</description>
|
811
|
+
<example>Ne mogu da dobijem ime host-a za vašu IP adresu</example>
|
812
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
813
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
814
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
815
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
816
|
+
</fingerprint>
|
817
|
+
<fingerprint pattern="Nemôžem zistiť meno hostiteľa pre vašu adresu">
|
818
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (slo)</description>
|
819
|
+
<example>Nemôžem zistiť meno hostiteľa pre vašu adresu</example>
|
820
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
821
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
822
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
823
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
824
|
+
</fingerprint>
|
825
|
+
<fingerprint pattern="No puedo obtener el nombre de maquina de tu direccion">
|
826
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (spa)</description>
|
827
|
+
<example>No puedo obtener el nombre de maquina de tu direccion</example>
|
828
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
829
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
830
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
831
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
832
|
+
</fingerprint>
|
833
|
+
<fingerprint pattern="Kan inte hitta 'hostname' för din adress">
|
834
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (swe)</description>
|
835
|
+
<example>Kan inte hitta 'hostname' för din adress</example>
|
836
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
837
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
838
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
839
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
840
|
+
</fingerprint>
|
841
|
+
<fingerprint pattern="Не можу визначити ім'я хосту для вашої адреси">
|
842
|
+
<description>Oracle MySQL error ER_BAD_HOST_ERROR (ukr)</description>
|
843
|
+
<example>Не можу визначити ім'я хосту для вашої адреси</example>
|
844
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
845
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
846
|
+
<param pos="0" name="service.product" value="MySQL"/>
|
847
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:oracle:mysql:-"/>
|
848
|
+
</fingerprint>
|
849
|
+
<fingerprint pattern="^Host '[^']+' is not allowed to connect to this MariaDB server$">
|
850
|
+
<description>MariaDB MariaDB - Error: Host not allowed to connect (English) </description>
|
851
|
+
<example>Host '10.10.10.10' is not allowed to connect to this MariaDB server</example>
|
852
|
+
<param pos="0" name="service.vendor" value="MariaDB"/>
|
853
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
854
|
+
<param pos="0" name="service.product" value="MariaDB"/>
|
855
|
+
<param pos="0" name="service.cpe23" value="cpe:/a:mariadb:mariadb:-"/>
|
856
|
+
</fingerprint>
|
857
|
+
<fingerprint pattern="^#07000Proxy Warning - IP Forbidden$">
|
858
|
+
<description>Oracle MySQL Proxy - Error: Host not allowed to connect</description>
|
859
|
+
<example>#07000Proxy Warning - IP Forbidden</example>
|
860
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
861
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
862
|
+
<param pos="0" name="service.product" value="MySQL Proxy"/>
|
863
|
+
</fingerprint>
|
864
|
+
<fingerprint pattern="^\(proxy\) all backends are down$">
|
865
|
+
<description>Oracle MySQL Proxy - Error: Backends down</description>
|
866
|
+
<example>(proxy) all backends are down</example>
|
867
|
+
<param pos="0" name="service.vendor" value="Oracle"/>
|
868
|
+
<param pos="0" name="service.family" value="MySQL"/>
|
869
|
+
<param pos="0" name="service.product" value="MySQL Proxy"/>
|
870
|
+
</fingerprint>
|
871
|
+
</fingerprints>
|