First published: Thu Feb 27 2025(Updated: )
In the Linux kernel, the following vulnerability has been resolved: soc: qcom: socinfo: Avoid out of bounds read of serial number On MSM8916 devices, the serial number exposed in sysfs is constant and does not change across individual devices. It's always: db410c:/sys/devices/soc0$ cat serial_number 2644893864 The firmware used on MSM8916 exposes SOCINFO_VERSION(0, 8), which does not have support for the serial_num field in the socinfo struct. There is an existing check to avoid exposing the serial number in that case, but it's not correct: When checking the item_size returned by SMEM, we need to make sure the *end* of the serial_num is within bounds, instead of comparing with the *start* offset. The serial_number currently exposed on MSM8916 devices is just an out of bounds read of whatever comes after the socinfo struct in SMEM. Fix this by changing offsetof() to offsetofend(), so that the size of the field is also taken into account.
Credit: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Software | Affected Version | How to fix |
---|---|---|
Linux Kernel | ||
>=5.4<6.1.129 | ||
>=6.2<6.6.78 | ||
>=6.7<6.12.14 | ||
>=6.13<6.13.3 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-58007 is considered a medium severity vulnerability due to potential information disclosure.
To fix CVE-2024-58007, update the Linux kernel to a patched version that addresses this vulnerability.
CVE-2024-58007 affects Linux kernel versions between 5.4 and 6.12.14, excluding certain patched versions.
CVE-2024-58007 can lead to leaking the constant serial number of MSM8916 devices, risking user privacy.
As of now, there are no reports indicating that CVE-2024-58007 is actively exploited in the wild.