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

exploitDog

suse-cvrf логотип

SUSE-SU-2024:3098-1

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

Описание

Security update for kubernetes1.27

This update for kubernetes1.27 fixes the following issues:

Update kubernetes to version 1.27.16

  • CVE-2024-24786: Fixed infinite loop in protojson.Unmarshal in golang-protobuf (bsc#1229867)
  • CVE-2023-39325: Fixed a flaw that can lead to a DoS due to a rapid stream resets causing excessive work. This is also known as CVE-2023-44487. (bsc#1229869)
  • CVE-2023-45288: Fixed denial of service due to close connections when receiving too many headers in net/http and x/net/http2 (bsc#1229869)
  • CVE-2023-44487: Fixed HTTP/2 Rapid Reset attack in net/http (bsc#1229869)

Other fixes:

  • Update go to version v1.22.5 (bsc#1229858)

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

SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise Module for Containers 15 SP5
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise Module for Containers 15 SP6
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise Server 15 SP4-LTSS
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise Server for SAP Applications 15 SP4
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
openSUSE Leap 15.5
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
openSUSE Leap 15.6
kubernetes1.27-apiserver-1.27.16-150400.9.10.1
kubernetes1.27-client-1.27.16-150400.9.10.1
kubernetes1.27-client-bash-completion-1.27.16-150400.9.10.1
kubernetes1.27-client-common-1.27.16-150400.9.10.1
kubernetes1.27-client-fish-completion-1.27.16-150400.9.10.1
kubernetes1.27-controller-manager-1.27.16-150400.9.10.1
kubernetes1.27-kubeadm-1.27.16-150400.9.10.1
kubernetes1.27-kubelet-1.27.16-150400.9.10.1
kubernetes1.27-kubelet-common-1.27.16-150400.9.10.1
kubernetes1.27-proxy-1.27.16-150400.9.10.1
kubernetes1.27-scheduler-1.27.16-150400.9.10.1

Описание

A malicious HTTP/2 client which rapidly creates requests and immediately resets them can cause excessive server resource consumption. While the total number of requests is bounded by the http2.Server.MaxConcurrentStreams setting, resetting an in-progress request allows the attacker to create a new request while the existing one is still executing. With the fix applied, HTTP/2 servers now bound the number of simultaneously executing handler goroutines to the stream concurrency limit (MaxConcurrentStreams). New requests arriving when at the limit (which can only happen after the client has reset an existing, in-flight request) will be queued until a handler exits. If the request queue grows too large, the server will terminate the connection. This issue is also fixed in golang.org/x/net/http2 for users manually configuring HTTP/2. The default stream concurrency limit is 250 streams (requests) per HTTP/2 connection. This value may be adjusted using the golang.org/x/net/http2 package; see the Server.MaxConcurrentStreams setting and the ConfigureServer function.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-common-1.27.16-150400.9.10.1

Ссылки

Описание

The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-common-1.27.16-150400.9.10.1

Ссылки

Описание

An attacker may cause an HTTP/2 endpoint to read arbitrary amounts of header data by sending an excessive number of CONTINUATION frames. Maintaining HPACK state requires parsing and processing all HEADERS and CONTINUATION frames on a connection. When a request's headers exceed MaxHeaderBytes, no memory is allocated to store the excess headers, but they are still parsed. This permits an attacker to cause an HTTP/2 endpoint to read arbitrary amounts of header data, all associated with a request which is going to be rejected. These headers can include Huffman-encoded data which is significantly more expensive for the receiver to decode than for an attacker to send. The fix sets a limit on the amount of excess header frames we will process before closing a connection.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-common-1.27.16-150400.9.10.1

Ссылки

Описание

The protojson.Unmarshal function can enter an infinite loop when unmarshaling certain forms of invalid JSON. This condition can occur when unmarshaling into a message which contains a google.protobuf.Any value, or when the UnmarshalOptions.DiscardUnknown option is set.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:kubernetes1.27-client-common-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-1.27.16-150400.9.10.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kubernetes1.27-client-common-1.27.16-150400.9.10.1

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