CVE-2025-39937
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-03-25
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 4.6 (inc) to 5.4.300 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.245 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.194 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.154 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.108 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.49 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.16.9 (exc) |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
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 crash issue in the Linux kernel's rfkill gpio driver caused by dereferencing an uninitialized pointer. Specifically, the function rfkill_find_type() is called with a local variable 'type_name' that may not be initialized if the device property read fails. On certain x86 systems with specific ACPI devices ("BCM4752" or "LNV4752"), the type property is missing, causing the pointer to remain uninitialized and potentially leading to a crash. The fix involves initializing 'type_name' to NULL to prevent this crash.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash on affected systems, leading to system instability or downtime. Since it occurs when the rfkill gpio driver attempts to handle certain ACPI devices without proper initialization, it may cause unexpected reboots or loss of functionality related to rfkill (radio frequency kill switch) features on impacted hardware.