Path to this page:
./
lang/go,
Meta package providing the current release of the Go language
Branch: pkgsrc-2022Q3,
Version: 1.18.7,
Package name: go-1.18.7,
Maintainer: pkgsrc-usersThis is a meta package providing the latest release of the Go
programming language that is available for the host system.
The actual Go programming language is provided by packages such as
lang/go111, lang/go110, etc. This package merely allows users to
install "go" instead of having to figure out the exact package name.
No package should depend on this package directly.
Version history: (Expand)
- (2022-10-07) Updated to version: go-1.18.7
- (2022-09-26) Package added to pkgsrc.se, version go-1.18.6 (created)
CVS history: (Expand)
2022-10-07 20:19:31 by Benny Siegert | Files touched by this commit (3) |
Log message:
Pullup ticket #6680 - requested by taca
lang/go119: security fix
Revisions pulled up:
- lang/go/version.mk 1.163
- lang/go119/PLIST 1.3
- lang/go119/distinfo 1.3
---
Module Name: pkgsrc
Committed By: bsiegert
Date: Wed Oct 5 11:20:24 UTC 2022
Modified Files:
pkgsrc/lang/go: version.mk
pkgsrc/lang/go119: PLIST distinfo
Log message:
Update go119 to 1.19.2
This minor release includes 3 security fixes following the security policy:
- archive/tar: unbounded memory consumption when reading headers
Reader.Read did 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.
Reader.Read now limits the maximum size of header blocks to 1 MiB.
Thanks to Adam Korczynski (ADA Logics) and OSS-Fuzz for reporting this issue.
This is CVE-2022-2879 and Go issue https://go.dev/issue/54853.
- net/http/httputil: ReverseProxy should not forward unparseable query parameters
Requests forwarded by ReverseProxy included the raw query parameters from the
inbound request, including unparseable parameters rejected by net/http. This
could permit query parameter smuggling when a Go proxy forwards a parameter
with an unparseable value.
ReverseProxy will now sanitize 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.
Thanks to Gal Goldstein (Security Researcher, Oxeye) and
Daniel Abeles (Head of Research, Oxeye) for reporting this issue.
This is CVE-2022-2880 and Go issue https://go.dev/issue/54663.
- regexp/syntax: limit memory used by parsing regexps
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.
Each regexp being parsed is now limited to a 256 MB memory footprint.
Regular expressions whose representation would use more space than that
are now rejected. Normal use of regular expressions is unaffected.
Thanks to Adam Korczynski (ADA Logics) and OSS-Fuzz for reporting this issue.
This is CVE-2022-41715 and Go issue https://go.dev/issue/55949.
|
2022-10-07 18:34:03 by Benny Siegert | Files touched by this commit (3) | |
Log message:
Pullup ticket #6679 - requested by taca
lang/go118: security fix
Revisions pulled up:
- lang/go/version.mk 1.162
- lang/go118/PLIST 1.8
- lang/go118/distinfo 1.8
---
Module Name: pkgsrc
Committed By: bsiegert
Date: Wed Oct 5 09:51:52 UTC 2022
Modified Files:
pkgsrc/lang/go: version.mk
pkgsrc/lang/go118: PLIST distinfo
Log message:
go118: update to 1.18.7
This minor release includes 3 security fixes following the security policy:
- archive/tar: unbounded memory consumption when reading headers
Reader.Read did 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.
Reader.Read now limits the maximum size of header blocks to 1 MiB.
Thanks to Adam Korczynski (ADA Logics) and OSS-Fuzz for reporting this issue.
This is CVE-2022-2879 and Go issue https://go.dev/issue/54853.
- net/http/httputil: ReverseProxy should not forward unparseable query parameters
Requests forwarded by ReverseProxy included the raw query parameters from the
inbound request, including unparseable parameters rejected by net/http. This
could permit query parameter smuggling when a Go proxy forwards a parameter
with an unparseable value.
ReverseProxy will now sanitize 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.
Thanks to Gal Goldstein (Security Researcher, Oxeye) and
Daniel Abeles (Head of Research, Oxeye) for reporting this issue.
This is CVE-2022-2880 and Go issue https://go.dev/issue/54663.
- regexp/syntax: limit memory used by parsing regexps
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.
Each regexp being parsed is now limited to a 256 MB memory footprint.
Regular expressions whose representation would use more space than that
are now rejected. Normal use of regular expressions is unaffected.
Thanks to Adam Korczynski (ADA Logics) and OSS-Fuzz for reporting this issue.
This is CVE-2022-41715 and Go issue https://go.dev/issue/55949.
|