CVE-2026-64479
Received Received - Intake

Heap Information Leak in Linux Kernel ALSA Sequencer

Vulnerability report for CVE-2026-64479, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-25

Last updated on: 2026-07-25

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: ALSA: seq: Fix uninitialised heap leak in snd_seq_event_dup() snd_seq_event_dup() copies an incoming event into a pool cell and, in the UMP-enabled build, clears the trailing cell->ump.raw.extra word that the memcpy() did not cover. The guard deciding whether to clear it compares the copied size against sizeof(cell->event): memcpy(&cell->ump, event, size); if (size < sizeof(cell->event)) cell->ump.raw.extra = 0; For a legacy (non-UMP) event, size == sizeof(struct snd_seq_event) == sizeof(cell->event), so the condition is false and the extra word keeps stale data. The cell pool is allocated with kvmalloc() (not zeroed) and cells are reused via a free list, so that word holds uninitialised heap or leftover event data. When such a cell is delivered to a UMP client (client->midi_version > 0) that set SNDRV_SEQ_FILTER_NO_CONVERT -- so the legacy event reaches it unconverted -- snd_seq_read() reads it out as the larger struct snd_seq_ump_event and copies the stale word to user space, a 4-byte kernel heap infoleak to an unprivileged /dev/snd/seq client. Compare against sizeof(cell->ump) instead, so the trailing word is zeroed for every event shorter than the UMP cell.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-25
Last Modified
2026-07-25
Generated
2026-08-14
AI Q&A
2026-07-25
EPSS Evaluated
2026-08-13
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a heap memory leak vulnerability in the Linux kernel's ALSA sequencer subsystem. It occurs in the snd_seq_event_dup() function when handling MIDI events. The function copies event data into a memory pool cell but fails to properly clear extra bytes for legacy (non-UMP) events. When these cells are reused and accessed by UMP clients with specific settings, uninitialized heap data can be leaked to user space.

Detection Guidance

This vulnerability is specific to the Linux kernel's ALSA sequencer subsystem and requires local access to detect. Check if your system is running a vulnerable kernel version by running: uname -a. If the kernel version is below the patched version, the system may be vulnerable. Monitor for unusual activity in /dev/snd/seq or check kernel logs for heap-related warnings.

Impact Analysis

An attacker with access to a local system could exploit this to read sensitive kernel memory. This could potentially expose passwords, encryption keys, or other confidential data stored in memory. The impact is limited to local users since it requires access to /dev/snd/seq device.

Compliance Impact

This vulnerability could potentially violate data protection requirements under GDPR and HIPAA by allowing unauthorized access to sensitive information. Organizations must ensure systems are patched to prevent unauthorized memory access that could expose personal or health data.

Mitigation Strategies

Update the Linux kernel to the latest patched version immediately. If updating is not possible, disable the ALSA sequencer module by running: sudo modprobe -r snd_seq. Restrict access to /dev/snd/seq to prevent unprivileged users from exploiting the vulnerability.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-64479. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart