CVE-2024-39480: kdb: Fix buffer overflow during tab-complete
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.
Other sources
This CVE was automatically created from a reference found in an email or other text. If you are reading this, then this CVE entry is probably erroneous, since this text should be replaced by the official CVE description automatically.
— Launchpad
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
debian/linuxto a version that resolves this vulnerability.Fixed in 5.10.223-1Fixed in 5.10.234-1Fixed in 6.1.129-1Fixed in 6.1.135-1Fixed in 6.12.27-1 - Compensating control
Temporarily avoid using kdb symbol completion with the Tab key until the buffer-overflow fix is applied.
Event History
Frequently Asked Questions
What is the severity of CVE-2024-39480?
CVE-2024-39480 has been rated as a high severity vulnerability due to its potential for causing buffer overflow issues.
How do I fix CVE-2024-39480?
To fix CVE-2024-39480, update to the patched versions of the Linux kernel mentioned in the vulnerability details.
Which versions of the Linux kernel are affected by CVE-2024-39480?
CVE-2024-39480 affects various versions of the Linux kernel, specifically those between 4.19 and 6.9.5.
What type of vulnerability is CVE-2024-39480?
CVE-2024-39480 is a buffer overflow vulnerability that occurs during symbol completion using the Tab key in kdb.
Is there a workaround for CVE-2024-39480?
Currently, there is no known workaround for CVE-2024-39480, so users should apply the necessary updates.