CVE-2025-39814
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-02
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.16 (inc) to 6.16.5 (exc) |
| 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 NULL pointer dereference in the Linux kernel's ice driver, specifically in the function ice_unplug_aux_dev() during a device reset. When the driver is loaded without RDMA support, issuing a reset causes the driver to attempt to remove a non-existent RDMA auxiliary bus device, leading to a crash due to dereferencing a NULL pointer.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash when resetting the network device managed by the ice driver without RDMA support. This results in a denial of service as the system or network interface may become unstable or unresponsive.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by observing kernel crash logs indicating a NULL pointer dereference in the ice_unplug_aux_dev() function. Specifically, look for kernel BUG messages and call traces involving ice_unplug_aux_dev, ice_prepare_for_reset, and pci_reset_function. You can also test the vulnerability by issuing the command: echo 1 > /sys/class/net/<if>/device/reset (replace <if> with the network interface name) on a system running the affected driver without RDMA support, which may cause a crash if vulnerable.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves avoiding issuing a reset command (echo 1 > /sys/class/net/<if>/device/reset) on interfaces using the ice driver without RDMA support until the driver is updated with the fix. Applying the vendor or kernel update that includes the patch introducing a flag to prevent NULL pointer dereference in ice_unplug_aux_dev() is the recommended permanent fix.