CVE-2023-53550
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-04-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | From 6.4 (inc) to 6.4.11 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability involves the Linux kernel's amd-pstate cpufreq driver where attributes were moved from a dedicated kobject to the CPU root kobject incorrectly. The dedicated kobject expects kobj_attributes, but the root kobject requires device_attributes. Although the changed arguments are not used by callbacks and it works most of the time, Control Flow Integrity (CFI) detects a type mismatch causing failures and potential kernel errors.
How can this vulnerability impact me? :
The vulnerability can cause Control Flow Integrity (CFI) failures in the Linux kernel, leading to kernel warnings or errors. This may affect system stability or reliability when accessing certain sysfs attributes related to amd-pstate, potentially causing crashes or unexpected behavior.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by observing kernel logs for Control Flow Integrity (CFI) failure messages related to amd_pstate sysfs attributes. You can check the kernel log for messages similar to: '[ 4947.849350] CFI failure at dev_attr_show+0x24/0x60 ...'. Use the command 'dmesg | grep CFI' or 'journalctl -k | grep CFI' to find such entries.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves updating the Linux kernel to a version that includes the fix for the amd-pstate sysfs attribute type issue, as described in commit 3666062b87ec. Until then, monitoring kernel logs for CFI failures and avoiding operations that trigger amd_pstate sysfs attribute access may reduce exposure.