CVE-2026-64029

HIGHPre-NVD 7.87.8
EchelonGraph scoreMEDIUM confidence

Score 7.8 from GitHub Security Advisory (severity: HIGH) published 2026-07-19. the CNA's CVSS baseline 7.8; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: cna:linux, epss, ghsa
Trending — 4 sources updated this week
7.8EG
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.8Exploit: None knownExposed: 0

A fix is available — apply it.

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

ALSA: seq: Serialize UMP output teardown with event_input

seq_ump_process_event() borrows client->out_rfile.output without synchronizing with the first-open and last-close transition in seq_ump_client_open() and seq_ump_client_close().

The last output unuse can therefore drop opened[STR_OUT] to zero and release the rawmidi file while an in-flight event_input callback is still inside snd_rawmidi_kernel_write(). That leaves the rawmidi substream runtime exposed to teardown before the write path has taken its own buffer reference.

Add a per-client rwlock for the event_input-visible output file. Publish a newly opened output file under the write side, and hold the read side from the output lookup through snd_rawmidi_kernel_write(). The last output close copies and clears the visible output file under the write side, then drops the lock and releases the saved rawmidi file. Use IRQ-safe rwlock guards because event_input can also be reached from atomic sequencer delivery.

The buggy scenario involves two paths, with each column showing the order within that path:

path A label: event_input path path B label: last unuse path

  • seq_ump_process_event() reads 1. seq_ump_client_close()
client->out_rfile.output. drops opened[STR_OUT] to zero.
  • snd_rawmidi_kernel_write1() 2. snd_rawmidi_kernel_release()
has not yet pinned runtime. closes the output file.
  • The writer continues using 3. close_substream() frees
the borrowed substream. substream->runtime.

This keeps the output substream and runtime alive for the full event_input write while keeping rawmidi release outside the rwlock.

KASAN reproduced this as a slab-use-after-free in snd_rawmidi_kernel_write1(), with allocation through seq_ump_use()/snd_seq_port_connect() and free through seq_ump_unuse()/snd_seq_port_disconnect().

Validation reproduced this kernel report: KASAN slab-use-after-free in snd_rawmidi_kernel_write1+0x9d/0x400 RIP: 0033:0x7f5528af837f Read of size 8 Call trace: dump_stack_lvl+0x73/0xb0 (?:?) print_report+0xd1/0x650 (?:?) srso_alias_return_thunk+0x5/0xfbef5 (?:?) __virt_addr_valid+0x1a7/0x340 (?:?) kasan_complete_mode_report_info+0x64/0x200 (?:?) kasan_report+0xf7/0x130 (?:?) snd_rawmidi_kernel_write1+0x9d/0x400 (?:?) __asan_load8+0x82/0xb0 (?:?) update_stack_state+0x1ef/0x2d0 (?:?) snd_rawmidi_kernel_write+0x1a/0x20 (?:?) seq_ump_process_event+0xd4/0x120 (sound/core/seq/seq_ump_client.c:82) __snd_seq_deliver_single_event+0x8a/0xe0 (?:?) snd_seq_deliver_from_ump+0x2b2/0xd60 (?:?) lock_acquire+0x14e/0x2e0 (?:?) find_held_lock+0x31/0x90 (?:?) snd_seq_port_use_ptr+0xa6/0xe0 (?:?) __kasan_check_write+0x18/0x20 (?:?) do_raw_read_unlock+0x32/0xa0 (?:?) _raw_read_unlock+0x26/0x50 (?:?) snd_seq_deliver_single_event+0x45c/0x4b0 (?:?) snd_seq_deliver_event+0x10d/0x1b0 (?:?) snd_seq_client_enqueue_event+0x192/0x240 (?:?) snd_seq_write+0x2cd/0x450 (?:?) apparmor_file_permission+0x20/0x30 (?:?) security_file_permission+0x51/0x60 (?:?) vfs_write+0x1ce/0x850 (?:?) __fget_files+0x12b/0x220 (?:?) lock_release+0xc8/0x2a0 (?:?) __rcu_read_unlock+0x74/0x2d0 (?:?) __fget_files+0x135/0x220 (?:?) ksys_write+0x15a/0x180 (?:?) rcu_is_watching+0x24/0x60 (?:?) __x64_sys_write+0x46/0x60 (?:?) x64_sys_call+0x7d/0x20d0 (?:?) do_syscall_64+0xc1/0x360 (arch/x86/entry/syscall_64.c:87) entry_SYSCALL_64_after_hwframe+0x77/0x7f (?:?)

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

Published

July 19, 2026

Last Modified

August 5, 2026

Advisory Details (5)

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

ALSA: seq: Serialize UMP output teardown with event_input - kernel/git/stable/linux.git - Linux kernel stable tree

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

ALSA: seq: Serialize UMP output teardown with event_input - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/8ba1c4ddbb1c67d34bb440aecb9f5690ed3f64cb
generic

ALSA: seq: Serialize UMP output teardown with event_input - kernel/git/stable/linux.git - Linux kernel stable tree

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

ALSA: seq: Serialize UMP output teardown with event_input - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/3aab4a58d23fb22dac5b558bbe5df1a8dad00b4b
generic

ALSA: seq: Serialize UMP output teardown with event_input - kernel/git/stable/linux.git - Linux kernel stable tree

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

Vendor Advisories for CVE-2026-64029(1)

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

Patch Availability(5)

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Affected Packages

(2 across 2 ecosystems)
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.94-1~bpo12+1 (27 versions)6.12.94-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.0.9-1~bpo13+1 (138 versions)7.0.12-1

All Vendor Advisories

(5)

Data Freshness Timeline

(refreshed 32× in last 7d / 168× 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 212 total refreshes for this CVE.

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

Frequently asked(5)

What is CVE-2026-64029?
CVE-2026-64029 is a high vulnerability published on July 19, 2026. In the Linux kernel, the following vulnerability has been resolved: ALSA: seq: Serialize UMP output teardown with event_input sequmpprocessevent() borrows client->outrfile.output without synchronizing with the first-open and last-close transition in sequmpclientopen() and sequmpclientclose(). The…
When was CVE-2026-64029 disclosed?
CVE-2026-64029 was first published in the National Vulnerability Database on July 19, 2026, with the most recent update on August 5, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-64029 actively exploited?
CVE-2026-64029 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 97.5% of all scored CVEs.
What is the CVSS score of CVE-2026-64029?
CVE-2026-64029 has a CVSS v4.0 base score of 7.8 (CNA self-assessment; NVD's own analysis pending).
How do I remediate CVE-2026-64029?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-64029, 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

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-64029

Explore →

Is Your Infrastructure Affected by CVE-2026-64029?

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