diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-04-14 21:34:46 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-04-14 21:38:12 +0200 |
commit | 9fa3609c85e4b6608d366bed4e47ab9553cd5bc9 (patch) | |
tree | 9e5a3db61942617a2be5a0300d95703a94a47d76 /po/pl.po | |
parent | ccd45e4921ff5614f65dad6d742a58225fde92a6 (diff) | |
download | weechat-9fa3609c85e4b6608d366bed4e47ab9553cd5bc9.zip |
relay: add command "handshake" in weechat relay protocol and nonce to prevent replay attacks (closes #1474)
This introduces a new command called "handshake" in the weechat relay protocol.
It should be sent by the client before the "init" command, to negotiate the way
to authenticate with a password.
3 new options are added:
* relay.network.auth_password
* relay.network.hash_iterations
* relay.network.nonce_size
Diffstat (limited to 'po/pl.po')
-rw-r--r-- | po/pl.po | 29 |
1 files changed, 28 insertions, 1 deletions
@@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2020-04-12 20:23+0200\n" +"POT-Creation-Date: 2020-04-14 21:29+0200\n" "PO-Revision-Date: 2020-04-05 13:44+0200\n" "Last-Translator: Krzysztof Korościk <soltys@soltys.info>\n" "Language-Team: Polish <kde-i18n-doc@kde.org>\n" @@ -12414,6 +12414,20 @@ msgstr "" "początku sprawi, że wielość znaków będzie miała znaczenie), przykład: " "\"^(123\\.45\\.67\\.89|192\\.160\\..*)$\"" +#, fuzzy +msgid "" +"comma separated list of hash algorithms used for password authentication in " +"weechat protocol, among these values: \"plain\" (password in plain text, not " +"hashed), \"sha256\", \"sha512\", \"pbkdf2+sha256\", \"pbkdf2+sha512\"), \"*" +"\" means all algorithms, a name beginning with \"!\" is a negative value to " +"prevent an algorithm from being used, wildcard \"*\" is allowed in names " +"(examples: \"*\", \"pbkdf2*\", \"*,!plain\")" +msgstr "" +"oddzielona przecinkami lista wtyczek do automatycznego załadowania podczas " +"startu, \"*\" oznacza wszystkie znalezione wtyczki, nazwa zaczynająca się od " +"\"!\" powoduje nie ładowanie tej wtyczki, wildcard \"*\" jest dozwolony w " +"nazwach (przykłady: \"*\" lub \"*,!lua,!tcl\")" + msgid "" "timeout (in seconds) for client authentication: connection is closed if the " "client is still not authenticated after this delay and the client status is " @@ -12443,6 +12457,13 @@ msgstr "" "(0 = kompresja wyłączona, 1 = niska kompresja ... 9 = najwyższa kompresja)" msgid "" +"number of iterations asked to the client in weechat protocol when a hashed " +"password with algorithm PBKDF2 is used for authentication; more iterations " +"is better in term of security but is slower to compute; this number should " +"not be too high if your CPU is slow" +msgstr "" + +msgid "" "listen on IPv6 socket by default (in addition to IPv4 which is default); " "protocols IPv4 and IPv6 can be forced (individually or together) in the " "protocol name (see /help relay)" @@ -12455,6 +12476,12 @@ msgid "maximum number of clients connecting to a port (0 = no limit)" msgstr "maksymalna ilość klientów łączących się na port (0 = brak limitu)" msgid "" +"size of nonce (in bytes), generated when a client connects; the client must " +"use this nonce, concatenated to the client nonce and the password when " +"hashing the password in the \"init\" command of the weechat protocol" +msgstr "" + +msgid "" "password required by clients to access this relay (empty value means no " "password required, see option relay.network.allow_empty_password) (note: " "content is evaluated, see /help eval)" |