File 0005-CVE-2025-27144-vendor-don-t-allow-unbounded-amounts-.patch of Package podman
xxxxxxxxxx
1
From dda641be16015a75016a67e122615f92c3363d09 Mon Sep 17 00:00:00 2001
2
From: Danish Prakash <contact@danishpraka.sh>
3
Date: Fri, 28 Feb 2025 12:54:44 +0530
4
Subject: [PATCH 5/6] CVE-2025-27144: vendor: don't allow unbounded amounts of
5
splits (#10)
6
MIME-Version: 1.0
7
Content-Type: text/plain; charset=UTF-8
8
Content-Transfer-Encoding: 8bit
9
10
In compact JWS/JWE, don't allow unbounded number of splits.
11
Count to make sure there's the right number, then use SplitN.
12
13
This fixes CVE-2025-27144
14
This fixes bsc#1237641
15
16
Cherry-picked from
17
https://github.com/go-jose/go-jose/commit/99b346cec4e86d102284642c5dcbe9bb0cacfc22
18
19
Signed-off-by: Dan Čermák <dcermak@suse.com>
20
Signed-off-by: Danish Prakash <contact@danishpraka.sh>
21
Co-authored-by: Matthew McPherrin <mattm@letsencrypt.org>
22
---
23
vendor/github.com/go-jose/go-jose/v3/jwe.go | 5 +++--
24
vendor/github.com/go-jose/go-jose/v3/jws.go | 5 +++--
25
vendor/gopkg.in/go-jose/go-jose.v2/jwe.go | 5 +++--
26
vendor/gopkg.in/go-jose/go-jose.v2/jws.go | 5 +++--
27
4 files changed, 12 insertions(+), 8 deletions(-)
28
29
diff --git a/vendor/github.com/go-jose/go-jose/v3/jwe.go b/vendor/github.com/go-jose/go-jose/v3/jwe.go
30
index 4267ac75025a..1ba4ae0c0031 100644
31
--- a/vendor/github.com/go-jose/go-jose/v3/jwe.go
32
+++ b/vendor/github.com/go-jose/go-jose/v3/jwe.go
33
34
35
// parseEncryptedCompact parses a message in compact format.
36
func parseEncryptedCompact(input string) (*JSONWebEncryption, error) {
37
- parts := strings.Split(input, ".")
38
- if len(parts) != 5 {
39
+ // Five parts is four separators
40
+ if strings.Count(input, ".") != 4 {
41
return nil, fmt.Errorf("go-jose/go-jose: compact JWE format must have five parts")
42
}
43
+ parts := strings.SplitN(input, ".", 5)
44
45
rawProtected, err := base64URLDecode(parts[0])
46
if err != nil {
47
diff --git a/vendor/github.com/go-jose/go-jose/v3/jws.go b/vendor/github.com/go-jose/go-jose/v3/jws.go
48
index e37007dbb855..401fc18ac4df 100644
49
--- a/vendor/github.com/go-jose/go-jose/v3/jws.go
50
+++ b/vendor/github.com/go-jose/go-jose/v3/jws.go
51
52
53
// parseSignedCompact parses a message in compact format.
54
func parseSignedCompact(input string, payload []byte) (*JSONWebSignature, error) {
55
- parts := strings.Split(input, ".")
56
- if len(parts) != 3 {
57
+ // Three parts is two separators
58
+ if strings.Count(input, ".") != 2 {
59
return nil, fmt.Errorf("go-jose/go-jose: compact JWS format must have three parts")
60
}
61
+ parts := strings.SplitN(input, ".", 3)
62
63
if parts[1] != "" && payload != nil {
64
return nil, fmt.Errorf("go-jose/go-jose: payload is not detached")
65
diff --git a/vendor/gopkg.in/go-jose/go-jose.v2/jwe.go b/vendor/gopkg.in/go-jose/go-jose.v2/jwe.go
66
index a8966ab8e9d3..faebb8dd4ca4 100644
67
--- a/vendor/gopkg.in/go-jose/go-jose.v2/jwe.go
68
+++ b/vendor/gopkg.in/go-jose/go-jose.v2/jwe.go
69
70
71
// parseEncryptedCompact parses a message in compact format.
72
func parseEncryptedCompact(input string) (*JSONWebEncryption, error) {
73
- parts := strings.Split(input, ".")
74
- if len(parts) != 5 {
75
+ // Five parts is four separators
76
+ if strings.Count(input, ".") != 4 {
77
return nil, fmt.Errorf("go-jose/go-jose: compact JWE format must have five parts")
78
}
79
+ parts := strings.SplitN(input, ".", 5)
80
81
rawProtected, err := base64.RawURLEncoding.DecodeString(parts[0])
82
if err != nil {
83
diff --git a/vendor/gopkg.in/go-jose/go-jose.v2/jws.go b/vendor/gopkg.in/go-jose/go-jose.v2/jws.go
84
index 1a24fa468a31..717f04ace0ce 100644
85
--- a/vendor/gopkg.in/go-jose/go-jose.v2/jws.go
86
+++ b/vendor/gopkg.in/go-jose/go-jose.v2/jws.go
87
88
89
// parseSignedCompact parses a message in compact format.
90
func parseSignedCompact(input string, payload []byte) (*JSONWebSignature, error) {
91
- parts := strings.Split(input, ".")
92
- if len(parts) != 3 {
93
+ // Three parts is two separators
94
+ if strings.Count(input, ".") != 2 {
95
return nil, fmt.Errorf("go-jose/go-jose: compact JWS format must have three parts")
96
}
97
+ parts := strings.SplitN(input, ".", 3)
98
99
if parts[1] != "" && payload != nil {
100
return nil, fmt.Errorf("go-jose/go-jose: payload is not detached")
101
--
102
2.46.0
103
104