CVE-2026-43283
Memory Leak in Linux Kernel Ethernet Driver
Publication date: 2026-05-06
Last updated on: 2026-05-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability exists in the Linux kernel's ethernet driver ec_bhf. It involves the function dma_free_coherent() which, in an error path, incorrectly uses priv->rx_buf.alloc_len as the DMA handle. This misuse leads to improper unmapping of the buffer. The fix changes the DMA handle to use priv->rx_buf.alloc_phys instead, ensuring proper unmapping.
How can this vulnerability impact me? :
Improper unmapping of DMA buffers can lead to memory corruption or data integrity issues. This could potentially cause system instability, crashes, or unexpected behavior in network operations that rely on the affected ethernet driver.