Blame SOURCES/0009-libssh2-1.8.0-CVE-2019-3863.patch

72ae39
From 9ed3c716b63c77e9b52f71f2dae5464ade6143df Mon Sep 17 00:00:00 2001
72ae39
From: Kamil Dudka <kdudka@redhat.com>
72ae39
Date: Tue, 19 Mar 2019 13:47:41 +0100
72ae39
Subject: [PATCH] Resolves: CVE-2019-3863 - fix integer overflow in user
72ae39
 authenticate keyboard interactive
72ae39
72ae39
... that allows out-of-bounds writes
72ae39
72ae39
Upstream-Patch: https://libssh2.org/1.8.0-CVE/CVE-2019-3863.patch
72ae39
---
72ae39
 src/userauth.c | 13 +++++++++++--
72ae39
 1 file changed, 11 insertions(+), 2 deletions(-)
72ae39
72ae39
diff --git a/src/userauth.c b/src/userauth.c
72ae39
index 3946cf9..ee924c5 100644
72ae39
--- a/src/userauth.c
72ae39
+++ b/src/userauth.c
72ae39
@@ -1578,8 +1578,17 @@ userauth_keyboard_interactive(LIBSSH2_SESSION * session,
72ae39
 
72ae39
             for(i = 0; i != session->userauth_kybd_num_prompts; ++i) {
72ae39
                 /* string    response[1] (ISO-10646 UTF-8) */
72ae39
-                session->userauth_kybd_packet_len +=
72ae39
-                    4 + session->userauth_kybd_responses[i].length;
72ae39
+                 if(session->userauth_kybd_responses[i].length <=
72ae39
+                   (SIZE_MAX - 4 - session->userauth_kybd_packet_len) ) {
72ae39
+                    session->userauth_kybd_packet_len +=
72ae39
+                        4 + session->userauth_kybd_responses[i].length;
72ae39
+                }
72ae39
+                else {
72ae39
+                    _libssh2_error(session, LIBSSH2_ERROR_ALLOC,
72ae39
+                                   "Unable to allocate memory for keyboard-"
72ae39
+                                   "interactive response packet");
72ae39
+                    goto cleanup;
72ae39
+                }
72ae39
             }
72ae39
 
72ae39
             /* A new userauth_kybd_data area is to be allocated, free the
72ae39
-- 
72ae39
2.17.2
72ae39