Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

suse-cvrf логотип

SUSE-SU-2025:0601-1

Опубликовано: 20 фев. 2025
Источник: suse-cvrf

Описание

Security update for brise

This update for brise fixes the following issues:

  • CVE-2025-21613: Fixed argument injection via the URL field (bsc#1235573).
  • CVE-2024-45337: Fixed authorization bypass in golang.org/x/crypto via the ServerConfig.PublicKeyCallback callback (bsc#1234597).

Список пакетов

SUSE Linux Enterprise Module for Desktop Applications 15 SP6
rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1
openSUSE Leap 15.6
rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-cantonese-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-combo-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-custom-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-default-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-double-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-emoji-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-essay-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-essay-simp-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-extra-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-ipa-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-luna-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-middle-chinese-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-pinyin-simp-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-prelude-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-quick-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-scj-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-soutzoe-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-stenotype-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-stroke-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-terra-pinyin-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-wubi-20230603+git.5fdd2d6-150600.3.8.1
rime-schema-wugniu-20230603+git.5fdd2d6-150600.3.8.1

Описание

Applications and libraries which misuse connection.serverAuthenticate (via callback field ServerConfig.PublicKeyCallback) may be susceptible to an authorization bypass. The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions. For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key. Since this API is widely misused, as a partial mitigation golang.org/x/cry...@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth. Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.


Затронутые продукты
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1

Ссылки

Описание

go-git is a highly extensible git implementation library written in pure Go. An argument injection vulnerability was discovered in go-git versions prior to v5.13. Successful exploitation of this vulnerability could allow an attacker to set arbitrary values to git-upload-pack flags. This only happens when the file transport protocol is being used, as that is the only protocol that shells out to git binaries. This vulnerability is fixed in 5.13.0.


Затронутые продукты
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-all-20230603+git.5fdd2d6-150600.3.8.1
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-array-20230603+git.5fdd2d6-150600.3.8.1
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-bopomofo-20230603+git.5fdd2d6-150600.3.8.1
SUSE Linux Enterprise Module for Desktop Applications 15 SP6:rime-schema-cangjie-20230603+git.5fdd2d6-150600.3.8.1

Ссылки
Уязвимость SUSE-SU-2025:0601-1