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

exploitDog

suse-cvrf логотип

SUSE-SU-2026:3090-1

Опубликовано: 17 июл. 2026
Источник: suse-cvrf

Описание

Security update for ruby3.4

This update for ruby3.4 fixes the following issues

  • CVE-2026-42258: Net:IMAP: Command Injection via Symbol Arguments (bsc#1268011).
  • CVE-2026-47240: Net:IMAP: Command Injection via non-synchronizing literal in 'raw' argument (bsc#1268337).
  • CVE-2026-47241: Net:IMAP: Denial of Service via incomplete raw argument validation (bsc#1268338).
  • CVE-2026-47242: Net:IMAP: Command Injection via ID and ENABLE command arguments (bsc#1268339).
  • CVE-2025-61594: merging URIs using the + operator could expose sensitive user credentials (bsc#1270034).

Changes for ruby3.4:

  • Update to 3.4.10:

    • bundling net-imap 0.5.15.

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

SUSE Linux Enterprise Module for Basesystem 15 SP7
libruby3_4-3_4-3.4.10-150700.3.4.1
ruby3.4-3.4.10-150700.3.4.1
ruby3.4-devel-3.4.10-150700.3.4.1
ruby3.4-devel-extra-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Development Tools 15 SP7
ruby3.4-doc-3.4.10-150700.3.4.1
ruby3.4-doc-ri-3.4.10-150700.3.4.1

Описание

URI is a module providing classes to handle Uniform Resource Identifiers. In versions 0.12.4 and earlier (bundled in Ruby 3.2 series) 0.13.2 and earlier (bundled in Ruby 3.3 series), 1.0.3 and earlier (bundled in Ruby 3.4 series), when using the + operator to combine URIs, sensitive information like passwords from the original URI can be leaked, violating RFC3986 and making applications vulnerable to credential exposure. This is a a bypass for the fix to CVE-2025-27221 that can expose user credentials. This issue has been fixed in versions 0.12.5, 0.13.3 and 1.0.4.


Затронутые продукты
SUSE Linux Enterprise Module for Basesystem 15 SP7:libruby3_4-3_4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-extra-3.4.10-150700.3.4.1

Ссылки

Описание

Net::IMAP implements Internet Message Access Protocol (IMAP) client functionality in Ruby. Prior to versions 0.4.24, 0.5.14, and 0.6.4, symbol arguments to commands are vulnerable to a CRLF Injection / IMAP Command injection via Symbol arguments passed to IMAP commands. This issue has been patched in versions 0.4.24, 0.5.14, and 0.6.4.


Затронутые продукты
SUSE Linux Enterprise Module for Basesystem 15 SP7:libruby3_4-3_4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-extra-3.4.10-150700.3.4.1

Ссылки

Описание

Net::IMAP implements Internet Message Access Protocol (IMAP) client functionality in Ruby. Prior to 0.6.5 and 0.5.15, several Net::IMAP commands accept a "raw data" argument that is sent verbatim after validation to prevent command injection. However, if a server does not support non-synchronizing literals, it may still be possible to inject arbitrary IMAP commands inside non-synchronizing literals. A server without support for non-synchronizing literals may interpret the "+}\r\n" as the end of a malformed command line and respond with a tagged BAD. In that case, the contents of the literal will be interpreted as one or more new pipelined commands, allowing a CRLF command injection attack to succeed. This affects criteria for #search and #uid_search; search_keys for #sort, #thread, #uid_sort, and #uid_thread; and attr for #fetch and #uid_fetch. This vulnerability is fixed in 0.6.5 and 0.5.15.


Затронутые продукты
SUSE Linux Enterprise Module for Basesystem 15 SP7:libruby3_4-3_4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-extra-3.4.10-150700.3.4.1

Ссылки

Описание

Net::IMAP implements Internet Message Access Protocol (IMAP) client functionality in Ruby. Prior to 0.6.5 and 0.5.15, several Net::IMAP commands accept a raw string argument which is only validated to prevent CRLF injection and then sent verbatim. If this string is derived from user-controlled input, an attacker can force the next command to be absorbed as a continuation of the first command. This will cause the first command to eventually fail, but also prevents it from returning until another command is sent (from another thread). That other command will not return until the connection is closed. This vulnerability is fixed in 0.6.5 and 0.5.15.


Затронутые продукты
SUSE Linux Enterprise Module for Basesystem 15 SP7:libruby3_4-3_4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-extra-3.4.10-150700.3.4.1

Ссылки

Описание

Net::IMAP implements Internet Message Access Protocol (IMAP) client functionality in Ruby. Prior to 0.6.5 and 0.5.15, when Net::IMAP#id is called with a hash argument, although the ID field value strings are correctly quoted (escaping quoted specials), they were not validated to prohibit CRLF sequences. While Net::IMAP#enable does process its arguments for aliases, it does not validate them as valid atoms (or as a list of valid atoms). The #to_s value is sent verbatim. Arguments to either command could be used by an attacker to inject arbitrary IMAP commands. This vulnerability is fixed in 0.6.5 and 0.5.15.


Затронутые продукты
SUSE Linux Enterprise Module for Basesystem 15 SP7:libruby3_4-3_4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-3.4.10-150700.3.4.1
SUSE Linux Enterprise Module for Basesystem 15 SP7:ruby3.4-devel-extra-3.4.10-150700.3.4.1

Ссылки