CVE-2023-53524
BaseFortify
Publication date: 2025-10-01
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 | From 5.0 (inc) to 5.4.244 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.181 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.113 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.30 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.3.4 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-190 | The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is an integer overflow in the Linux kernel's iwl_write_to_user_buf() function, which is used by the iwl_dbgfs_monitor_data_read() debugfs operation. When a very large value (SIZE_MAX) is passed to the 'count' parameter, it causes an integer overflow leading to a negative buffer size calculation. This negative value is then used in a copy operation, resulting in a heap overflow.
How can this vulnerability impact me? :
This vulnerability does not pose a security risk because the affected function is only accessible via a debugfs operation with read-only (0400) privileges, limiting its exposure and preventing exploitation under normal conditions.
What immediate steps should I take to mitigate this vulnerability?
This vulnerability is not considered a security risk because it affects a debugfs operation with read-only (0400) privileges. Therefore, no immediate mitigation steps are necessary.