Andrew Geissler | 748a483 | 2020-07-24 16:24:21 -0500 | [diff] [blame] | 1 | From 9c81c8e5bc7782e8ae12c078615abc3c896059f2 Mon Sep 17 00:00:00 2001 |
| 2 | From: Julius Hemanth Pitti <jpitti@cisco.com> |
| 3 | Date: Tue, 14 Jul 2020 22:34:19 -0700 |
| 4 | Subject: [PATCH] telnetd/utility.c: Fix buffer overflow in netoprintf |
| 5 | |
| 6 | As per man page of vsnprintf, when formated |
| 7 | string size is greater than "size"(2nd argument), |
| 8 | then vsnprintf returns size of formated string, |
| 9 | not "size"(2nd argument). |
| 10 | |
| 11 | netoprintf() was not handling a case where |
| 12 | return value of vsnprintf is greater than |
| 13 | "size"(2nd argument), results in buffer overflow |
| 14 | while adjusting "nfrontp" pointer to point |
| 15 | beyond "netobuf" buffer. |
| 16 | |
| 17 | Here is one such case where "nfrontp" |
| 18 | crossed boundaries of "netobuf", and |
| 19 | pointing to another global variable. |
| 20 | |
| 21 | (gdb) p &netobuf[8255] |
| 22 | $5 = 0x55c93afe8b1f <netobuf+8255> "" |
| 23 | (gdb) p nfrontp |
| 24 | $6 = 0x55c93afe8c20 <terminaltype> "\377" |
| 25 | (gdb) p &terminaltype |
| 26 | $7 = (char **) 0x55c93afe8c20 <terminaltype> |
| 27 | (gdb) |
| 28 | |
| 29 | This resulted in crash of telnetd service |
| 30 | with segmentation fault. |
| 31 | |
| 32 | Though this is DoS security bug, I couldn't |
| 33 | find any CVE ID for this. |
| 34 | |
| 35 | Upstream-Status: Pending |
| 36 | |
| 37 | Signed-off-by: Julius Hemanth Pitti <jpitti@cisco.com> |
| 38 | --- |
| 39 | telnetd/utility.c | 2 +- |
| 40 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 41 | |
| 42 | diff --git a/telnetd/utility.c b/telnetd/utility.c |
| 43 | index b9a46a6..4811f14 100644 |
| 44 | --- a/telnetd/utility.c |
| 45 | +++ b/telnetd/utility.c |
| 46 | @@ -66,7 +66,7 @@ netoprintf(const char *fmt, ...) |
| 47 | len = vsnprintf(nfrontp, maxsize, fmt, ap); |
| 48 | va_end(ap); |
| 49 | |
| 50 | - if (len<0 || len==maxsize) { |
| 51 | + if (len<0 || len>=maxsize) { |
| 52 | /* didn't fit */ |
| 53 | netflush(); |
| 54 | } |
| 55 | -- |
| 56 | 2.19.1 |