CVE-2026-23017
BaseFortify
Publication date: 2026-01-31
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 | 6.7 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.7.1 (inc) to 6.18.6 (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 in the Linux kernel's idpf driver. If the init_task fails during driver load, the system ends up without virtual ports (vports) and network devices (netdevs), causing the entire process to fail. Later, if a reset occurs, the service task tries to access uninitialized resources, leading to a kernel crash due to a NULL pointer dereference. The fix involves improving error handling in the init_task to disable service and mailbox tasks if an error occurs during load, preventing the crash.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash during a reset if the driver initialization fails, leading to system instability or downtime. This could disrupt network functionality since virtual ports and network devices may not be properly initialized, potentially impacting services relying on network connectivity.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring kernel logs for specific error messages related to the idpf driver. Look for messages indicating device hardware reset, transaction failures (op 501), and kernel NULL pointer dereferences involving idpf_vc_event_task. For example, use the command 'dmesg | grep idpf' to check for relevant error traces such as 'Device HW Reset initiated', 'Transaction failed (op 501)', and 'BUG: kernel NULL pointer dereference'.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves ensuring that the Linux kernel is updated with the fix that corrects error handling in the init_task during idpf driver load. This fix disables service and mailbox tasks if an error occurs during load, preventing crashes on reset. Until the fix is applied, monitor for the described error conditions and avoid triggering resets that could cause crashes. Restarting the idpf_vc_core_init() process after a successful reset will also help by restarting PTP callbacks safely.