CVE-2023-53275
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | to 5.4.255 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.192 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.128 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.47 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.12 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a possible null-pointer dereference in the Linux kernel's ALSA hda driver. It occurs because the variable codec->regmap is accessed without holding its protecting lock in the function snd_hdac_regmap_sync(). If codec->regmap is set to NULL right after the check, a null-pointer dereference can happen in the regcache_sync() function, potentially causing a crash or undefined behavior. The fix extends the mutex lock coverage to protect both the check and the function call, preventing this race condition.
How can this vulnerability impact me? :
This vulnerability can lead to a null-pointer dereference in the Linux kernel, which may cause system crashes or instability when the affected ALSA hda driver code is executed. This could impact system reliability and availability, especially during power management runtime resume operations.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version where the fix for the null-pointer dereference in snd_hdac_regmap_sync() has been applied. This fix extends mutex_lock coverage to protect the critical section, preventing the data race. Avoid using vulnerable kernel versions and apply security patches as soon as they are available.