CVE-2025-40091
BaseFortify
Publication date: 2025-10-30
Last updated on: 2025-10-30
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| intel | ixgbe | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free (UAF) issue in the Linux kernel's ixgbe driver. Specifically, the function devlink_free() is called too early during the ixgbe_remove() process. Since the ixgbe_adapter structure is embedded within devlink, prematurely freeing devlink can lead to accessing freed memory later, causing a use-after-free error. The fix involves moving the devlink_free() call to the end of the removal process to prevent this issue.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to undefined behavior such as system crashes, memory corruption, or potential escalation of privileges if exploited. Since it occurs in a network driver, it could affect system stability or security, potentially allowing an attacker to execute arbitrary code or cause denial of service by triggering the bug.