mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
libssh: fix CVE-2025-5318
Upstream-Status: Backport from https://git.libssh.org/projects/libssh.git/commit/?id=5f4ffda88770f95482fd0e66aa44106614dbf466 Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
68d3af2e73
commit
058249f9a8
@@ -0,0 +1,31 @@
|
|||||||
|
From 5f4ffda88770f95482fd0e66aa44106614dbf466 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jakub Jelen <jjelen@redhat.com>
|
||||||
|
Date: Tue, 22 Apr 2025 21:18:44 +0200
|
||||||
|
Subject: CVE-2025-5318: sftpserver: Fix possible buffer overrun
|
||||||
|
|
||||||
|
Signed-off-by: Jakub Jelen <jjelen@redhat.com>
|
||||||
|
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
|
||||||
|
|
||||||
|
Upstream-Status: Backport [https://git.libssh.org/projects/libssh.git/commit/?id=5f4ffda88770f95482fd0e66aa44106614dbf466]
|
||||||
|
CVE: CVE-2025-5318
|
||||||
|
Signed-off-by: Hitendra Prajapati <hprajapati@mvista.com>
|
||||||
|
---
|
||||||
|
src/sftpserver.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/sftpserver.c b/src/sftpserver.c
|
||||||
|
index 1af8a0e7..dee51534 100644
|
||||||
|
--- a/src/sftpserver.c
|
||||||
|
+++ b/src/sftpserver.c
|
||||||
|
@@ -530,7 +530,7 @@ void *sftp_handle(sftp_session sftp, ssh_string handle){
|
||||||
|
|
||||||
|
memcpy(&val, ssh_string_data(handle), sizeof(uint32_t));
|
||||||
|
|
||||||
|
- if (val > SFTP_HANDLES) {
|
||||||
|
+ if (val >= SFTP_HANDLES) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
2.49.0
|
||||||
|
|
||||||
@@ -20,6 +20,7 @@ SRC_URI = "git://git.libssh.org/projects/libssh.git;protocol=https;branch=stable
|
|||||||
file://006_CVE-2023-6004.patch \
|
file://006_CVE-2023-6004.patch \
|
||||||
file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \
|
file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \
|
||||||
file://run-ptest \
|
file://run-ptest \
|
||||||
|
file://CVE-2025-5318.patch \
|
||||||
"
|
"
|
||||||
SRCREV = "04685a74df9ce1db1bc116a83a0da78b4f4fa1f8"
|
SRCREV = "04685a74df9ce1db1bc116a83a0da78b4f4fa1f8"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user