Описание
Security update for go1.19
This update for go1.19 fixes the following issues:
Updated to version 1.19.2 (bsc#1200441):
- CVE-2022-41715: Fixed memory exhaustion in regexp/syntax (bsc#1204023).
- CVE-2022-2879: Fixed unbounded memory consumption when reading headers in archive/tar (bsc#1204024).
- CVE-2022-2880: Fixed ReverseProxy forwarding unparseable query parameters (bsc#1204025).
Список пакетов
Container bci/golang:1.19
SUSE Linux Enterprise Module for Development Tools 15 SP3
SUSE Linux Enterprise Module for Development Tools 15 SP4
openSUSE Leap 15.3
openSUSE Leap 15.4
Ссылки
- Link for SUSE-SU-2022:3669-1
- E-Mail link for SUSE-SU-2022:3669-1
- SUSE Security Ratings
- SUSE Bug 1200441
- SUSE Bug 1204023
- SUSE Bug 1204024
- SUSE Bug 1204025
- SUSE CVE CVE-2022-2879 page
- SUSE CVE CVE-2022-2880 page
- SUSE CVE CVE-2022-41715 page
Описание
Reader.Read does not set a limit on the maximum size of file headers. A maliciously crafted archive could cause Read to allocate unbounded amounts of memory, potentially causing resource exhaustion or panics. After fix, Reader.Read limits the maximum size of header blocks to 1 MiB.
Затронутые продукты
Ссылки
- CVE-2022-2879
- SUSE Bug 1204024
Описание
Requests forwarded by ReverseProxy include the raw query parameters from the inbound request, including unparsable parameters rejected by net/http. This could permit query parameter smuggling when a Go proxy forwards a parameter with an unparsable value. After fix, ReverseProxy sanitizes the query parameters in the forwarded query when the outbound request's Form field is set after the ReverseProxy. Director function returns, indicating that the proxy has parsed the query parameters. Proxies which do not parse query parameters continue to forward the original query parameters unchanged.
Затронутые продукты
Ссылки
- CVE-2022-2880
- SUSE Bug 1204025
- SUSE Bug 1204076
Описание
Programs which compile regular expressions from untrusted sources may be vulnerable to memory exhaustion or denial of service. The parsed regexp representation is linear in the size of the input, but in some cases the constant factor can be as high as 40,000, making relatively small regexps consume much larger amounts of memory. After fix, each regexp being parsed is limited to a 256 MB memory footprint. Regular expressions whose representation would use more space than that are rejected. Normal use of regular expressions is unaffected.
Затронутые продукты
Ссылки
- CVE-2022-41715
- SUSE Bug 1204023
- SUSE Bug 1208441