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

exploitDog

suse-cvrf логотип

SUSE-SU-2025:01846-1

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

Описание

Security update for go1.24

This update for go1.24 fixes the following issues:

go1.24.4 (released 2025-06-05) includes security fixes to the crypto/x509, net/http, and os packages, as well as bug fixes to the linker, the go command, and the hash/maphash and os packages. ( bsc#1236217 go1.24 release tracking CVE-2025-22874 CVE-2025-0913 CVE-2025-4673)

  • CVE-2025-22874: crypto/x509: ExtKeyUsageAny bypasses policy validation (bsc#1244158)
  • CVE-2025-0913: os: inconsistent handling of O_CREATE|O_EXCL on Unix and Windows (bsc#1244157)
  • CVE-2025-4673: net/http: sensitive headers not cleared on cross-origin redirect (bsc#1244156)
  • os: Root.Mkdir creates directories with zero permissions on OpenBSD
  • hash/maphash: hashing channels with purego impl. of maphash.Comparable panics
  • runtime/debug: BuildSetting does not document DefaultGODEBUG
  • cmd/go: add fips140 module selection mechanism
  • cmd/link: Go 1.24.3 and 1.23.9 regression - duplicated definition of symbol dlopen
  • CVE-2025-22873: os: Root permits access to parent directory

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

Container bci/golang:latest
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Enterprise Storage 7.1
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Module for Development Tools 15 SP6
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Module for Development Tools 15 SP7
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Server 15 SP3-LTSS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Server 15 SP4-LTSS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Server 15 SP5-LTSS
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Server for SAP Applications 15 SP3
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Server for SAP Applications 15 SP4
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
SUSE Linux Enterprise Server for SAP Applications 15 SP5
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1
openSUSE Leap 15.6
go1.24-1.24.4-150000.1.26.1
go1.24-doc-1.24.4-150000.1.26.1
go1.24-race-1.24.4-150000.1.26.1

Описание

os.OpenFile(path, os.O_CREATE|O_EXCL) behaved differently on Unix and Windows systems when the target path was a dangling symlink. On Unix systems, OpenFile with O_CREATE and O_EXCL flags never follows symlinks. On Windows, when the target path was a symlink to a nonexistent location, OpenFile would create a file in that location. OpenFile now always returns an error when the O_CREATE and O_EXCL flags are both set and the target path is a symlink.


Затронутые продукты
Container bci/golang:latest:go1.24-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-doc-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-race-1.24.4-150000.1.26.1
SUSE Enterprise Storage 7.1:go1.24-1.24.4-150000.1.26.1

Ссылки

Описание

It was possible to improperly access the parent directory of an os.Root by opening a filename ending in "../". For example, Root.Open("../") would open the parent directory of the Root. This escape only permits opening the parent directory itself, not ancestors of the parent or files contained within the parent.


Затронутые продукты
Container bci/golang:latest:go1.24-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-doc-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-race-1.24.4-150000.1.26.1
SUSE Enterprise Storage 7.1:go1.24-1.24.4-150000.1.26.1

Ссылки

Описание

Calling Verify with a VerifyOptions.KeyUsages that contains ExtKeyUsageAny unintentionally disabledpolicy validation. This only affected certificate chains which contain policy graphs, which are rather uncommon.


Затронутые продукты
Container bci/golang:latest:go1.24-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-doc-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-race-1.24.4-150000.1.26.1
SUSE Enterprise Storage 7.1:go1.24-1.24.4-150000.1.26.1

Ссылки

Описание

Proxy-Authorization and Proxy-Authenticate headers persisted on cross-origin redirects potentially leaking sensitive information.


Затронутые продукты
Container bci/golang:latest:go1.24-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-doc-1.24.4-150000.1.26.1
Container bci/golang:latest:go1.24-race-1.24.4-150000.1.26.1
SUSE Enterprise Storage 7.1:go1.24-1.24.4-150000.1.26.1

Ссылки