Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[master] update to go1.21.9 #1011

Merged
merged 1 commit into from Apr 10, 2024
Merged

[master] update to go1.21.9 #1011

merged 1 commit into from Apr 10, 2024

Conversation

vvoland
Copy link
Contributor

@vvoland vvoland commented Apr 9, 2024

go1.21.9 (released 2024-04-03) includes a security fix to the net/http
package, as well as bug fixes to the linker, and the go/types and
net/http packages. See the Go 1.21.9 milestone
for more details.

These minor releases include 1 security fixes following the security policy:

  • http2: close connections when receiving too many headers
    Maintaining HPACK state requires that we parse and process all HEADERS
    and CONTINUATION frames on a connection. When a request's headers exceed
    MaxHeaderBytes, we don't allocate memory to store the excess headers but
    we do parse them. 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.
    Set a limit on the amount of excess header frames we will process before
    closing a connection.
    Thanks to Bartek Nowotarski (https://nowotarski.info/) for reporting this issue.
    This is CVE-2023-45288 and Go issue https://go.dev/issue/65051.

View the release notes for more information:
https://go.dev/doc/devel/release#go1.21.9

Signed-off-by: Paweł Gronowski pawel.gronowski@docker.com

go1.21.9 (released 2024-04-03) includes a security fix to the net/http
package, as well as bug fixes to the linker, and the go/types and
net/http packages. See the [Go 1.21.9 milestone](https://github.com/golang/go/issues?q=milestone%3AGo1.21.9+label%3ACherryPickApproved)
for more details.

These minor releases include 1 security fixes following the security policy:

- http2: close connections when receiving too many headers
Maintaining HPACK state requires that we parse and process all HEADERS
and CONTINUATION frames on a connection. When a request's headers exceed
MaxHeaderBytes, we don't allocate memory to store the excess headers but
we do parse them. 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.
Set a limit on the amount of excess header frames we will process before
closing a connection.
Thanks to Bartek Nowotarski (https://nowotarski.info/) for reporting this issue.
This is CVE-2023-45288 and Go issue https://go.dev/issue/65051.

View the release notes for more information:
https://go.dev/doc/devel/release#go1.21.9

- https://github.com/golang/go/issues?q=milestone%3AGo1.21.9+label%3ACherryPickApproved
- full diff: golang/go@go1.21.8...go1.21.9

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
@vvoland vvoland self-assigned this Apr 9, 2024
@vvoland vvoland changed the title update to go1.21.9 [master] update to go1.21.9 Apr 9, 2024
@vvoland vvoland requested a review from thaJeztah April 10, 2024 10:03
@vvoland vvoland merged commit f1905fd into docker:master Apr 10, 2024
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants