First published: Fri Jul 05 2024(Updated: )
In the Linux kernel, the following vulnerability has been resolved: kdb: Fix buffer overflow during tab-complete Currently, when the user attempts symbol completion with the Tab key, kdb will use strncpy() to insert the completed symbol into the command buffer. Unfortunately it passes the size of the source buffer rather than the destination to strncpy() with predictably horrible results. Most obviously if the command buffer is already full but cp, the cursor position, is in the middle of the buffer, then we will write past the end of the supplied buffer. Fix this by replacing the dubious strncpy() calls with memmove()/memcpy() calls plus explicit boundary checks to make sure we have enough space before we start moving characters around.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | >=4.19<4.19.316 | |
Linux Kernel | >=5.4<5.4.278 | |
Linux Kernel | >=5.10<5.10.219 | |
Linux Kernel | >=5.15<5.15.161 | |
Linux Kernel | >=6.1<6.1.94 | |
Linux Kernel | >=6.6<6.6.34 | |
Linux Kernel | >=6.9<6.9.5 | |
debian/linux | 5.10.223-1 5.10.226-1 6.1.123-1 6.1.128-1 6.12.12-1 6.12.15-1 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-39480 has been rated as a high severity vulnerability due to its potential for causing buffer overflow issues.
To fix CVE-2024-39480, update to the patched versions of the Linux kernel mentioned in the vulnerability details.
CVE-2024-39480 affects various versions of the Linux kernel, specifically those between 4.19 and 6.9.5.
CVE-2024-39480 is a buffer overflow vulnerability that occurs during symbol completion using the Tab key in kdb.
Currently, there is no known workaround for CVE-2024-39480, so users should apply the necessary updates.