CVE-2026-46110

HIGHPre-NVD 7.57.5
EchelonGraph scoreMEDIUM confidence

Score 7.5 from GitHub Security Advisory (severity: HIGH) published 2026-05-28. a secondary CVSS source baseline 7.5; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 4 sources updated this week
7.5
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS: 1%CVSS: 7.5Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

In the Linux kernel, the following vulnerability has been resolved:

net: stmmac: Prevent NULL deref when RX memory exhausted

The CPU receives frames from the MAC through conventional DMA: the CPU allocates buffers for the MAC, then the MAC fills them and returns ownership to the CPU. For each hardware RX queue, the CPU and MAC coordinate through a shared ring array of DMA descriptors: one descriptor per DMA buffer. Each descriptor includes the buffer's physical address and a status flag ("OWN") indicating which side owns the buffer: OWN=0 for CPU, OWN=1 for MAC. The CPU is only allowed to set the flag and the MAC is only allowed to clear it, and both must move through the ring in sequence: thus the ring is used for both "submissions" and "completions."

In the stmmac driver, stmmac_rx() bookmarks its position in the ring with the cur_rx index. The main receive loop in that function checks for rx_descs[cur_rx].own=0, gives the corresponding buffer to the network stack (NULLing the pointer), and increments cur_rx modulo the ring size. After the loop exits, stmmac_rx_refill(), which bookmarks its position with dirty_rx, allocates fresh buffers and rearms the descriptors (setting OWN=1). If it fails any allocation, it simply stops early (leaving OWN=0) and will retry where it left off when next called.

This means descriptors have a three-stage lifecycle (terms my own):

  • empty (OWN=1, buffer valid)
  • full (OWN=0, buffer valid and populated)
  • dirty (OWN=0, buffer NULL)

But because stmmac_rx() only checks OWN, it confuses full/dirty. In the past (see 'Fixes:'), there was a bug where the loop could cycle cur_rx all the way back to the first descriptor it dirtied, resulting in a NULL dereference when mistaken for full. The aforementioned commit resolved that *specific* failure by capping the loop's iteration limit at dma_rx_size - 1, but this is only a partial fix: if the previous stmmac_rx_refill() didn't complete, then there are leftover dirty descriptors that the loop might encounter without needing to cycle fully around. The current code therefore panics (see 'Closes:') when stmmac_rx_refill() is memory-starved long enough for cur_rx to catch up to dirty_rx.

Fix this by explicitly checking, before advancing cur_rx, if the next entry is dirty; exit the loop if so. This prevents processing of the final, used descriptor until stmmac_rx_refill() succeeds, but fully prevents the cur_rx == dirty_rx ambiguity as the previous bugfix intended: so remove the clamp as well. Since stmmac_rx_zc() is a copy-paste-and-tweak of stmmac_rx() and the code structure is identical, any fix to stmmac_rx() will also need a corresponding fix for stmmac_rx_zc(). Therefore, apply the same check there.

In stmmac_rx() (not stmmac_rx_zc()), a related bug remains: after the MAC sets OWN=0 on the final descriptor, it will be unable to send any further DMA-complete IRQs until it's given more empty descriptors. Currently, the driver simply *hopes* that the next stmmac_rx_refill() succeeds, risking an indefinite stall of the receive process if not. But this is not a regression, so it can be addressed in a future change.

CVSS v3
7.5
EG Score
7.5(medium)
EPSS
39.4%
KEV
Not listed

Published

May 28, 2026

Last Modified

June 24, 2026

Advisory Details (5)

Auto-updated Jun 9, 2026
No patch confirmed yet.
generic

net: stmmac: Prevent NULL deref when RX memory exhausted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/e1c50b273298c7cd9b08b113e7a7598b531a02f5
generic

net: stmmac: Prevent NULL deref when RX memory exhausted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/950cb436165aad0f8f2cd49da3cd07677465bcde
generic

net: stmmac: Prevent NULL deref when RX memory exhausted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/5c910f7708e3c507b037ca91ca5b09f8cfe71e65
generic

net: stmmac: Prevent NULL deref when RX memory exhausted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/4af2e62cbcda575a174acd230c3f3a208135e16d
generic

net: stmmac: Prevent NULL deref when RX memory exhausted - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/0bb05e6adfa99a2ea1fee1125cc0953409f83ed8

Vendor Advisories for CVE-2026-46110(2)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Data Freshness Timeline

(refreshed 13× in last 7d / 89× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

Showing the most recent 100 of 193 total refreshes for this CVE.

  1. 2026-07-16 10:35 UTCEG score recompute
  2. 2026-07-16 10:35 UTCVendor advisory
  3. 2026-07-16 10:35 UTCGHSA enrichment
  4. 2026-07-15 16:57 UTCEPSS rescore
  5. 2026-07-15 02:00 UTCEPSS rescore
  6. 2026-07-13 22:30 UTCEPSS rescore
  7. 2026-07-13 06:13 UTCEPSS rescore
  8. 2026-07-12 05:46 UTCEPSS rescore
  9. 2026-07-11 21:22 UTCEG score recompute
  10. 2026-07-11 21:22 UTCVendor advisory
  11. 2026-07-11 21:22 UTCGHSA enrichment
  12. 2026-07-11 08:27 UTCEPSS rescore
  13. 2026-07-09 19:10 UTCEPSS rescore
  14. 2026-07-08 18:36 UTCEG score recompute
  15. 2026-07-08 18:36 UTCVendor advisory
  16. 2026-07-08 18:36 UTCGHSA enrichment
  17. 2026-07-08 15:16 UTCEPSS rescore
  18. 2026-07-07 13:46 UTCEPSS rescore
  19. 2026-07-06 16:27 UTCEPSS rescore
  20. 2026-07-06 02:23 UTCEPSS rescore
  21. 2026-07-05 02:30 UTCEPSS rescore
  22. 2026-07-04 06:31 UTCEPSS rescore
  23. 2026-07-02 14:30 UTCEG score recompute
  24. 2026-07-02 14:30 UTCVendor advisory
  25. 2026-07-02 14:30 UTCGHSA enrichment
Show 75 more
  1. 2026-07-01 15:42 UTCEG score recompute
  2. 2026-07-01 15:42 UTCVendor advisory
  3. 2026-07-01 15:42 UTCGHSA enrichment
  4. 2026-07-01 15:07 UTCEPSS rescore
  5. 2026-07-01 03:17 UTCEG score recompute
  6. 2026-07-01 03:17 UTCVendor advisory
  7. 2026-07-01 03:17 UTCGHSA enrichment
  8. 2026-06-30 23:22 UTCEPSS rescore
  9. 2026-06-30 02:10 UTCEG score recompute
  10. 2026-06-30 02:10 UTCVendor advisory
  11. 2026-06-30 02:10 UTCGHSA enrichment
  12. 2026-06-29 14:06 UTCEPSS rescore
  13. 2026-06-29 14:06 UTCEPSS rescore
  14. 2026-06-29 13:46 UTCEG score recompute
  15. 2026-06-29 13:46 UTCVendor advisory
  16. 2026-06-29 13:46 UTCGHSA enrichment
  17. 2026-06-28 19:19 UTCEG score recompute
  18. 2026-06-28 19:19 UTCVendor advisory
  19. 2026-06-28 19:19 UTCGHSA enrichment
  20. 2026-06-28 14:07 UTCEPSS rescore
  21. 2026-06-28 06:38 UTCEG score recompute
  22. 2026-06-28 06:38 UTCVendor advisory
  23. 2026-06-28 06:38 UTCGHSA enrichment
  24. 2026-06-28 04:56 UTCEPSS rescore
  25. 2026-06-28 04:56 UTCEPSS rescore
  26. 2026-06-27 18:21 UTCEG score recompute
  27. 2026-06-27 18:21 UTCVendor advisory
  28. 2026-06-27 18:21 UTCGHSA enrichment
  29. 2026-06-27 05:30 UTCEG score recompute
  30. 2026-06-27 05:30 UTCVendor advisory
  31. 2026-06-27 05:30 UTCGHSA enrichment
  32. 2026-06-27 03:08 UTCEPSS rescore
  33. 2026-06-26 16:54 UTCEG score recompute
  34. 2026-06-26 16:54 UTCVendor advisory
  35. 2026-06-26 16:54 UTCGHSA enrichment
  36. 2026-06-25 23:30 UTCEG score recompute
  37. 2026-06-25 23:30 UTCVendor advisory
  38. 2026-06-25 23:30 UTCGHSA enrichment
  39. 2026-06-25 13:49 UTCEPSS rescore
  40. 2026-06-25 11:12 UTCEG score recompute
  41. 2026-06-25 11:12 UTCVendor advisory
  42. 2026-06-25 11:12 UTCGHSA enrichment
  43. 2026-06-24 22:53 UTCEG score recompute
  44. 2026-06-24 22:53 UTCVendor advisory
  45. 2026-06-24 22:53 UTCGHSA enrichment
  46. 2026-06-24 14:05 UTCEPSS rescore
  47. 2026-06-23 21:33 UTCEPSS rescore
  48. 2026-06-23 21:33 UTCEPSS rescore
  49. 2026-06-22 14:25 UTCEPSS rescore
  50. 2026-06-22 14:25 UTCEPSS rescore
  51. 2026-06-21 14:56 UTCEPSS rescore
  52. 2026-06-21 14:56 UTCEPSS rescore
  53. 2026-06-21 01:59 UTCEPSS rescore
  54. 2026-06-21 01:59 UTCEPSS rescore
  55. 2026-06-19 19:26 UTCEPSS rescore
  56. 2026-06-19 19:26 UTCEPSS rescore
  57. 2026-06-18 17:52 UTCEPSS rescore
  58. 2026-06-18 17:52 UTCEPSS rescore
  59. 2026-06-17 18:27 UTCEG score recompute
  60. 2026-06-17 18:26 UTCGHSA enrichment
  61. 2026-06-17 17:53 UTCEPSS rescore
  62. 2026-06-17 04:04 UTCEG score recompute
  63. 2026-06-17 04:03 UTCGHSA enrichment
  64. 2026-06-16 17:52 UTCEPSS rescore
  65. 2026-06-16 15:46 UTCEG score recompute
  66. 2026-06-16 15:46 UTCVendor advisory
  67. 2026-06-16 15:46 UTCGHSA enrichment
  68. 2026-06-16 01:25 UTCEG score recompute
  69. 2026-06-16 01:25 UTCVendor advisory
  70. 2026-06-16 01:25 UTCGHSA enrichment
  71. 2026-06-15 17:49 UTCEPSS rescore
  72. 2026-06-15 13:06 UTCEG score recompute
  73. 2026-06-15 13:06 UTCVendor advisory
  74. 2026-06-15 13:06 UTCGHSA enrichment
  75. 2026-06-14 22:19 UTCEG score recompute

Frequently asked(5)

What is CVE-2026-46110?
CVE-2026-46110 is a high vulnerability published on May 28, 2026. In the Linux kernel, the following vulnerability has been resolved: net: stmmac: Prevent NULL deref when RX memory exhausted The CPU receives frames from the MAC through conventional DMA: the CPU allocates buffers for the MAC, then the MAC fills them and returns ownership to the CPU. For each…
When was CVE-2026-46110 disclosed?
CVE-2026-46110 was first published in the National Vulnerability Database on May 28, 2026, with the most recent update on June 24, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-46110 actively exploited?
CVE-2026-46110 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 39.4% percentile likelihood of exploitation in the next 30 days — higher percentiles indicate greater predicted risk.
What is the CVSS score of CVE-2026-46110?
CVE-2026-46110 has a CVSS v3 base score of 7.5 (NVD).
How do I remediate CVE-2026-46110?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-46110, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-46110

Explore →

Is Your Infrastructure Affected by CVE-2026-46110?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.