How to Fix CVE-2024-53150: Out-of-Bounds Memory Access in Linux Linux
By Sai Kiran Pandrala
| Severity | CVSS 0.0 |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2025-04-09, federal due date 2025-04-30) |
| Affected | Linux: b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version a632bdcb359fd8145e86486ff8612da98e239acd, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version 45a92cbc88e4013bfed7fd2ccab3ade45f8e896b, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version ab011f7439d9bbfd34fd3b9cef4b2d6d952c9bb9, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version da13ade87a12dd58829278bc816a61bea06a56a9, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version 74cb86e1006c5437b1d90084d22018da30fddc77, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version ea0fa76f61cf8e932d1d26e6193513230816e11d, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version 096bb5b43edf755bc4477e64004fa3a20539ec2f, b8e4f1fdfa422398c2d6c47bfb7d1feb3046d70a < version a3dd4d63eeb452cfb064a13862fb376ab108f6a6, 9feeaa50e5b4b0b71259d918a36ecf9059e60796, 3b17a13b687ae99939dc94a4ae01fbc34f68decc; Linux: 5.4 |
| Fixed in | Linux: a632bdcb359fd8145e86486ff8612da98e239acd, 45a92cbc88e4013bfed7fd2ccab3ade45f8e896b, ab011f7439d9bbfd34fd3b9cef4b2d6d952c9bb9, da13ade87a12dd58829278bc816a61bea06a56a9, 74cb86e1006c5437b1d90084d22018da30fddc77, ea0fa76f61cf8e932d1d26e6193513230816e11d, 096bb5b43edf755bc4477e64004fa3a20539ec2f, a3dd4d63eeb452cfb064a13862fb376ab108f6a6 |
| Type (CWE) | Not verified, see official advisory |
What is CVE-2024-53150?
In the Linux kernel, the following vulnerability has been resolved: ALSA: usb-audio: Fix out of bounds reads when finding clock sources The current USB-audio driver code doesn't check bLength of each descriptor at traversing for clock descriptors. That is, when a device provides a bogus descriptor with a shorter bLength, the driver might hit out-of-bounds reads. For addressing it, this patch adds sanity checks to the validator functions for the clock descriptor traversal. When the descripto
A successful exploit lets a attacker run arbitrary code on the target system. The fix is to install the patched build from Linux listed in the table above and confirm the running version after the upgrade.
Am I affected?
Check your installed version of Linux Linux against the Affected row above. If your build sits within any of those ranges, treat the system as vulnerable until patched.
If you do not have the version handy, pull it the same way you usually would for Linux: the management console's About page, the CLI's version command, or the package manager record for the installed binary. The vendor advisory linked in the references section is the authoritative source.
How to fix CVE-2024-53150
- Read the vendor advisory at https://git.kernel.org/stable/c/a632bdcb359fd8145e86486ff8612da98e239acd for the build matrix that matches your installation.
- Identify the patched build for your major version: Linux: a632bdcb359fd8145e86486ff8612da98e239acd, 45a92cbc88e4013bfed7fd2ccab3ade45f8e896b, ab011f7439d9bbfd34fd3b9cef4b2d6d952c9bb9, da13ade87a12dd58829278bc816a61bea06a56a9, 74cb86e1006c5437b1d90084d22018da30fddc77, ea0fa76f61cf8e932d1d26e6193513230816e11d, 096bb5b43edf755bc4477e64004fa3a20539ec2f, a3dd4d63eeb452cfb064a13862fb376ab108f6a6.
- Back up configuration before upgrading (export running config, snapshot the VM, or take a database dump as appropriate for your platform).
- Apply the patched build using the vendor's documented upgrade path (in-place upgrade, package update, or replacement image).
- Restart the service so the new code is loaded; verify the running version reports the patched build number.
Patch via your OS package manager
# Patched version is 5.4.287 (from the vendor advisory).
# Debian / Ubuntu
sudo apt update
sudo apt install --only-upgrade linux-image-generic=5.4.287
# RHEL / Rocky / AlmaLinux / Fedora
sudo dnf upgrade linux-image-generic
# openSUSE
sudo zypper update linux-image-generic
# Verify the running version matches the fixed version
dpkg -s linux-image-generic 2>/dev/null | grep -i version || rpm -q linux-image-generic 2>/dev/null
# Windows: pull the cumulative update that ships this fix.
Install-Module PSWindowsUpdate -Force -SkipPublisherCheck
Get-WindowsUpdate -AcceptAll -Install -AutoReboot
Verify the fix landed
# 1. Confirm the running version matches the fixed-in version from the advisory:
# https://git.kernel.org/stable/c/a632bdcb359fd8145e86486ff8612da98e239acd
# Use the platform-specific version probe above.
# 2. Re-scan with your vulnerability scanner (Nessus, Qualys, Tenable, OpenVAS).
# The scanner should no longer flag CVE-2024-53150 on the patched target.
# 3. Inspect recent service / kernel logs for crash loops or rollback events.
journalctl -u <service> --since "10 minutes ago"
dmesg --since "10 minutes ago"
If you can't patch immediately
Check the vendor advisory's "Workarounds" section. If the advisory lists no official workaround, patching is the only remediation. Compensating controls that reduce attack surface in the meantime: restrict network access to the management interface to a small admin allowlist, disable the affected feature if it is not in use, and monitor the relevant logs for the exploitation patterns referenced in the advisory.
How to verify the fix worked
- Confirm the running version matches the patched build from the vendor advisory.
- Re-run your vulnerability scanner; the CVE should clear.
- Review logs from before the patch for the exploitation signatures described in the advisory, and treat any matches as a possible compromise (rotate credentials, isolate the host, full IR).
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2024-36971: Remote Code Execution in Linux Linux — Remote Code Execution in Linux Linux
- How to Fix CVE-2024-50302: Security Vulnerability in Linux Linux — Security Vulnerability in Linux Linux
- How to Fix CVE-2024-53104: Out-of-Bounds Memory Access in Linux Linux , Out-of-Bounds Memory Access in Linux Linux
- How to Fix CVE-2024-53197: Out-of-Bounds Memory Access in Linux Linux , Out-of-Bounds Memory Access in Linux Linux
- How to Fix CVE-2024-1086: Use-After-Free in Kernel , Use-After-Free in Kernel
Is CVE-2024-53150 being exploited right now?
Yes. It is listed in the CISA Known Exploited Vulnerabilities catalog (added 2025-04-09), which means CISA has evidence of active exploitation.
What is the CVSS score for CVE-2024-53150?
CVSS 0.0. Use this with your own asset exposure to set patching priority (internet-exposed systems first).
Do I need to take the system offline to patch?
It depends on the platform. Many appliances support hitless upgrade in HA pairs (upgrade standby, fail over, upgrade primary). Servers and applications usually need a service restart. Plan a maintenance window if HA is not available.
What if my version is not listed as affected?
Cross-check against the vendor advisory linked below. The CVE record reflects the vendor's official affected-products list at publication time; later-discovered variants are added through the same advisory or a follow-up CVE.
References
- Official vendor advisory: https://git.kernel.org/stable/c/a632bdcb359fd8145e86486ff8612da98e239acd
- NVD: https://nvd.nist.gov/vuln/detail/CVE-2024-53150
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- https://git.kernel.org/stable/c/45a92cbc88e4013bfed7fd2ccab3ade45f8e896b
- https://git.kernel.org/stable/c/ab011f7439d9bbfd34fd3b9cef4b2d6d952c9bb9
- https://git.kernel.org/stable/c/da13ade87a12dd58829278bc816a61bea06a56a9
- https://git.kernel.org/stable/c/74cb86e1006c5437b1d90084d22018da30fddc77
*This guide was assembled from the official vendor advisory, NVD record, and CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*