CVE-2026-64496

HIGHPre-NVD 7.17.1
EchelonGraph scoreMEDIUM confidence

This high-severity CVE scores 7.1 under a secondary CVSS source (NVD's own analysis pending). EPSS exploit probability: 0.2%, top 92% of all CVEs by exploit prediction. GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: epss, secondary
Trending — 5 sources updated this week
7.1EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 7.1Exploit: 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:

iio: event: Fix event FIFO reset race

iio_event_getfd() creates the event file descriptor with anon_inode_getfd(), which allocates a new fd, creates the anonymous file and installs it in the process fd table before returning to the caller.

The IIO code resets the event FIFO after anon_inode_getfd() has returned, but before IIO_GET_EVENT_FD_IOCTL has copied the fd number to userspace. But since fd tables are shared between threads, another thread can guess the newly allocated fd number and issue a read() on it as soon as the fd has been installed.

This means the kfifo_to_user() in iio_event_chrdev_read() can run in parallel with the kfifo_reset_out() in iio_event_getfd().

The kfifo documentation says that kfifo_reset_out() is only safe when it is called from the reader thread and there is only one concurrent reader. Otherwise it is dangerous and must be handled in the same way as kfifo_reset().

If that happens, kfifo_to_user() can advance the FIFO out index based on state from before the reset, after the reset has already moved the out index to the current in index. That can leave the FIFO with an out index past the in index. A later read() can then see an underflowed FIFO length and copy more data than the event FIFO buffer contains. This can result in an out-of-bounds read and leak adjacent kernel memory to userspace.

Move the FIFO reset before anon_inode_getfd(). At that point the event fd is marked busy, but the new fd has not been installed yet, so userspace cannot access it while the FIFO is reset.

CVSS v3
7.1
EG Score
7.1(medium)
EG Risk
37(Track)
EG Risk 37/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
Severity71% × 45%
Exploitation0% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
8%
KEV
Not listed

Published

July 25, 2026

Last Modified

July 27, 2026

Advisory Details (8)

Auto-updated Jul 27, 2026
No patch confirmed yet.
generic

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

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

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

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

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

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

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

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

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/9edefd4c56bee3fe331e0355d1f10a533134999d
generic

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/9dc84ba4be5bbeb29ee49efe6cea2cb32c461424
generic

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/72c6aa8e0d74eab91b8694cde97dec088c248fee
generic

iio: event: Fix event FIFO reset race - kernel/git/stable/linux.git - Linux kernel stable tree

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

Vendor Advisories for CVE-2026-64496(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 14× in last 7d / 14× 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-07-27 05:26 UTCEG score recompute
  2. 2026-07-27 05:26 UTCGHSA enrichment
  3. 2026-07-27 05:13 UTCEG score recompute 7.10
  4. 2026-07-27 05:13 UTCGHSA enrichment
  5. 2026-07-27 05:12 UTCMITRE cvelistV5CVSS v3 → 7.1 · severity → HIGH
  6. 2026-07-26 14:54 UTCEPSS rescore
  7. 2026-07-26 14:54 UTCEPSS rescore
  8. 2026-07-26 02:46 UTCEG score recompute
  9. 2026-07-26 02:46 UTCGHSA enrichment
  10. 2026-07-25 14:18 UTCEPSS rescore
  11. 2026-07-25 14:18 UTCEPSS rescore
  12. 2026-07-25 10:39 UTCNVD update
  13. 2026-07-25 09:24 UTCEG score recompute
  14. 2026-07-25 09:21 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-64496?
CVE-2026-64496 is a high vulnerability published on July 25, 2026. In the Linux kernel, the following vulnerability has been resolved: iio: event: Fix event FIFO reset race iioeventgetfd() creates the event file descriptor with anoninodegetfd(), which allocates a new fd, creates the anonymous file and installs it in the process fd table before returning to the…
When was CVE-2026-64496 disclosed?
CVE-2026-64496 was first published in the National Vulnerability Database on July 25, 2026, with the most recent update on July 27, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-64496 actively exploited?
CVE-2026-64496 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 92.5% of all scored CVEs.
What is the CVSS score of CVE-2026-64496?
CVE-2026-64496 has a CVSS v3 base score of 7.1 (NVD).
How do I remediate CVE-2026-64496?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-64496, 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-64496

Explore →

Is Your Infrastructure Affected by CVE-2026-64496?

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