summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-1.14/0003-CVE-2022-32190.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/go/go-1.14/0003-CVE-2022-32190.patch')
-rw-r--r--meta/recipes-devtools/go/go-1.14/0003-CVE-2022-32190.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-1.14/0003-CVE-2022-32190.patch b/meta/recipes-devtools/go/go-1.14/0003-CVE-2022-32190.patch
new file mode 100644
index 0000000000..816d914983
--- /dev/null
+++ b/meta/recipes-devtools/go/go-1.14/0003-CVE-2022-32190.patch
@@ -0,0 +1,36 @@
1From 2c632b883b0f11084cc247c8b50ad6c71fa7b447 Mon Sep 17 00:00:00 2001
2From: Sean Liao <sean@liao.dev>
3Date: Sat, 9 Jul 2022 18:38:45 +0100
4Subject: [PATCH 3/4] net/url: use EscapedPath for url.JoinPath
5
6Fixes #53763
7
8Change-Id: I08b53f159ebdce7907e8cc17316fd0c982363239
9Reviewed-on: https://go-review.googlesource.com/c/go/+/416774
10TryBot-Result: Gopher Robot <gobot@golang.org>
11Reviewed-by: Damien Neil <dneil@google.com>
12Reviewed-by: Bryan Mills <bcmills@google.com>
13Run-TryBot: Ian Lance Taylor <iant@golang.org>
14
15Upstream-Status: Backport [https://github.com/golang/go/commit/bf5898ef53d1693aa572da0da746c05e9a6f15c5]
16CVE: CVE-2022-32190
17Signed-off-by: Shubham Kulkarni <skulkarni@mvista.com>
18---
19 src/net/url/url.go | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/src/net/url/url.go b/src/net/url/url.go
23index 3436707..73079a5 100644
24--- a/src/net/url/url.go
25+++ b/src/net/url/url.go
26@@ -1111,7 +1111,7 @@ func (u *URL) UnmarshalBinary(text []byte) error {
27 func (u *URL) JoinPath(elem ...string) *URL {
28 url := *u
29 if len(elem) > 0 {
30- elem = append([]string{u.Path}, elem...)
31+ elem = append([]string{u.EscapedPath()}, elem...)
32 p := path.Join(elem...)
33 // path.Join will remove any trailing slashes.
34 // Preserve at least one.
35--
362.7.4