Resolves: CVE-2023-27538 - fix SSH connection too eager reuse still
This commit is contained in:
parent
9d1931d0ec
commit
d35c512f12
30
0029-curl-7.76.1-CVE-2023-27538.patch
Normal file
30
0029-curl-7.76.1-CVE-2023-27538.patch
Normal file
@ -0,0 +1,30 @@
|
||||
From 133e25afe4b8961b9c12334ee0bd3374db9a1fd4 Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Stenberg <daniel@haxx.se>
|
||||
Date: Fri, 10 Mar 2023 08:22:51 +0100
|
||||
Subject: [PATCH] url: fix the SSH connection reuse check
|
||||
|
||||
Reported-by: Harry Sintonen
|
||||
Closes #10735
|
||||
|
||||
Upstream-commit: af369db4d3833272b8ed443f7fcc2e757a0872eb
|
||||
Signed-off-by: Kamil Dudka <kdudka@redhat.com>
|
||||
---
|
||||
lib/url.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/url.c b/lib/url.c
|
||||
index 0c31486..3b11b7e 100644
|
||||
--- a/lib/url.c
|
||||
+++ b/lib/url.c
|
||||
@@ -1331,7 +1331,7 @@ ConnectionExists(struct Curl_easy *data,
|
||||
continue;
|
||||
|
||||
#ifdef USE_SSH
|
||||
- else if(get_protocol_family(needle->handler) == PROTO_FAMILY_SSH) {
|
||||
+ else if(get_protocol_family(needle->handler) & PROTO_FAMILY_SSH) {
|
||||
if(!ssh_config_matches(needle, check))
|
||||
continue;
|
||||
}
|
||||
--
|
||||
2.39.2
|
||||
|
@ -86,6 +86,9 @@ Patch27: 0027-curl-7.76.1-CVE-2023-27535.patch
|
||||
# fix GSS delegation too eager connection re-use (CVE-2023-27536)
|
||||
Patch28: 0028-curl-7.76.1-CVE-2023-27536.patch
|
||||
|
||||
# fix SSH connection too eager reuse still (CVE-2023-27538)
|
||||
Patch29: 0029-curl-7.76.1-CVE-2023-27538.patch
|
||||
|
||||
# patch making libcurl multilib ready
|
||||
Patch101: 0101-curl-7.32.0-multilib.patch
|
||||
|
||||
@ -288,6 +291,7 @@ be installed.
|
||||
%patch26 -p1
|
||||
%patch27 -p1
|
||||
%patch28 -p1
|
||||
%patch29 -p1
|
||||
|
||||
# Fedora patches
|
||||
%patch101 -p1
|
||||
@ -514,6 +518,7 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/libcurl.la
|
||||
|
||||
%changelog
|
||||
* Fri Mar 24 2023 Kamil Dudka <kdudka@redhat.com> - 7.76.1-24
|
||||
- fix SSH connection too eager reuse still (CVE-2023-27538)
|
||||
- fix GSS delegation too eager connection re-use (CVE-2023-27536)
|
||||
- fix FTP too eager connection reuse (CVE-2023-27535)
|
||||
- fix SFTP path ~ resolving discrepancy (CVE-2023-27534)
|
||||
|
Loading…
Reference in New Issue
Block a user