CVE-2026-72342

HIGHPre-NVD 8.48.4
EchelonGraph scoreHIGH confidence

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

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 5 sources updated this week
8.4EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 8.4Exploit: None knownExposed: 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/mlx5e: Fix HV VHCA stats agent registration race

mlx5e_hv_vhca_stats_create() registers the stats agent through mlx5_hv_vhca_agent_create(). The helper publishes the agent in hv_vhca->agents[type] under agents_lock and immediately schedules an asynchronous control invalidation on the HV VHCA workqueue before returning to mlx5e.

The asynchronous invalidation invokes the control agent's invalidate callback, which reads the hypervisor control block and forwards the command to mlx5e_hv_vhca_stats_control(). That callback may either:

  • call cancel_delayed_work_sync(&priv->stats_agent.work), or
  • call queue_delayed_work(priv->wq, &sagent->work, sagent->delay).

However, the delayed_work and priv->stats_agent.agent are only initialized after mlx5_hv_vhca_agent_create() returns to mlx5e:

agent = mlx5_hv_vhca_agent_create(...); /* publish + invalidate */ ... priv->stats_agent.agent = agent; /* too late */ INIT_DELAYED_WORK(&priv->stats_agent.work, ...); /* too late */

If the asynchronous control path runs before the two assignments above, it can:

  • Operate on an uninitialized delayed_work whose timer.function is
NULL. queue_delayed_work() calls add_timer() unconditionally, so when the timer expires the timer softirq invokes a NULL function pointer.
  • Re-initialize the timer later through INIT_DELAYED_WORK() while
the timer is already enqueued in the timer wheel, corrupting the hlist (entry.pprev cleared while the previous bucket node still points at this entry).
  • When the worker eventually runs, mlx5e_hv_vhca_stats_work() reads
sagent->agent (NULL) and dereferences it inside mlx5_hv_vhca_agent_write().

Fix this by:

  • Initializing priv->stats_agent.work before invoking
mlx5_hv_vhca_agent_create(), so the work is always in a valid state when the control callback observes it.
  • Adding a struct mlx5_hv_vhca_agent **ctx_update out-parameter
to mlx5_hv_vhca_agent_create(). The helper writes the agent pointer to *ctx_update before publishing into hv_vhca->agents[] and triggering the agents_update flow, so any callback subsequently invoked from that flow already sees a valid priv->stats_agent.agent. This avoids having the control callback participate in agent initialization.

While at it, access priv->stats_agent.agent with READ_ONCE()/WRITE_ONCE() for the cross-CPU access with the worker, and clear priv->stats_agent.buf on the agent_create() failure path.

CVSS v3
8.4
EG Score
8.4(high)
EG Risk
42(Track)
EG Risk 42/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity84% × 45%
Exploitation0% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
9%
KEV
Not listed

Published

August 15, 2026

Last Modified

August 17, 2026

Advisory Details (6)

Auto-updated Aug 17, 2026
No patch confirmed yet.
generic

net/mlx5e: Fix HV VHCA stats agent registration race - kernel/git/stable/linux.git - Linux kernel stable tree

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

net/mlx5e: Fix HV VHCA stats agent registration race - kernel/git/stable/linux.git - Linux kernel stable tree

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

net/mlx5e: Fix HV VHCA stats agent registration race - kernel/git/stable/linux.git - Linux kernel stable tree

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

net/mlx5e: Fix HV VHCA stats agent registration race - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/89b25b5f46f488ea3b29b3444864c76944c9075b
generic

net/mlx5e: Fix HV VHCA stats agent registration race - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/60fddda7207d81fea71463abd403f0b10f74f2e1
generic

net/mlx5e: Fix HV VHCA stats agent registration race - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/24c77044cdfcf5b8b2e9f3b620d8b9aa392d9add

Vendor Advisories for CVE-2026-72342(1)

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

Data Freshness Timeline

(refreshed 31× in last 7d / 31× 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.

  1. 2026-08-20 22:56 UTCEPSS rescore
  2. 2026-08-20 21:11 UTCGHSA enrichment
  3. 2026-08-20 10:21 UTCGHSA enrichment
  4. 2026-08-19 23:32 UTCEG score recompute
  5. 2026-08-19 23:32 UTCGHSA enrichment
  6. 2026-08-19 17:04 UTCEPSS rescore
  7. 2026-08-19 12:42 UTCGHSA enrichment
  8. 2026-08-19 01:52 UTCGHSA enrichment
  9. 2026-08-18 15:02 UTCEG score recompute
  10. 2026-08-18 15:01 UTCGHSA enrichment
  11. 2026-08-18 13:49 UTCEPSS rescore
  12. 2026-08-18 13:49 UTCEPSS rescore
  13. 2026-08-18 04:11 UTCGHSA enrichment
  14. 2026-08-17 17:21 UTCEG score recompute
  15. 2026-08-17 17:21 UTCGHSA enrichment
  16. 2026-08-17 13:47 UTCEPSS rescore
  17. 2026-08-17 06:29 UTCEG score recompute
  18. 2026-08-17 06:29 UTCGHSA enrichment
  19. 2026-08-17 05:58 UTCEG score recompute 8.40
  20. 2026-08-17 05:58 UTCGHSA enrichment
  21. 2026-08-17 05:54 UTCMITRE cvelistV5CVSS v3 → 8.4 · severity → HIGH
  22. 2026-08-17 05:30 UTCEG score recompute
  23. 2026-08-17 05:30 UTCGHSA enrichment
  24. 2026-08-17 05:24 UTCMITRE cvelistV5
  25. 2026-08-16 14:56 UTCEPSS rescore
Show 6 more
  1. 2026-08-16 14:56 UTCEPSS rescore
  2. 2026-08-16 02:15 UTCEPSS rescore
  3. 2026-08-15 06:36 UTCGHSA enrichment
  4. 2026-08-15 06:23 UTCNVD update
  5. 2026-08-15 06:06 UTCEG score recompute
  6. 2026-08-15 06:02 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-72342?
CVE-2026-72342 is a high vulnerability published on August 15, 2026. In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats agent registration race mlx5ehvvhcastatscreate() registers the stats agent through mlx5hvvhcaagentcreate(). The helper publishes the agent in hvvhca->agents[type] under agentslock and immediately…
When was CVE-2026-72342 disclosed?
CVE-2026-72342 was first published in the National Vulnerability Database on August 15, 2026, with the most recent update on August 17, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-72342 actively exploited?
CVE-2026-72342 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 0% probability of exploitation in the next 30 days, which ranks it in the top 90.6% of all scored CVEs.
What is the CVSS score of CVE-2026-72342?
CVE-2026-72342 has a CVSS v3 base score of 8.4 (NVD).
How do I remediate CVE-2026-72342?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-72342, 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-72342

Explore →

Is Your Infrastructure Affected by CVE-2026-72342?

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