CVE-2026-64479: ALSA: seq: Fix uninitialised heap leak in snd_seq_event_dup()

Published Jul 25, 2026
·
Updated

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

ALSA: seq: Fix uninitialised heap leak in sndseqeventdup()

sndseqeventdup() 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 sndseqevent) == 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->midiversion > 0) that set SNDRVSEQFILTERNOCONVERT -- so the legacy event reaches it unconverted -- sndseqread() reads it out as the larger struct sndsequmpevent 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.

Affected Software

1 affected component
ALSA Project Linux kernel ALSA seq (snd_seq_event_dup / snd_seq_read)

Event History

Jul 25, 2026
CVE Published
via MITRE·08:51 AM
Data Sourced
via MITRE·08:51 AM
Description
Data Sourced
via NVD·10:17 AM
Description

Frequently Asked Questions

1

What is the severity of CVE-2026-64479?

The severity of CVE-2026-64479 is rated at risk level 33.

2

How do I fix CVE-2026-64479?

To fix CVE-2026-64479, update your Linux kernel to the latest version that addresses this vulnerability.

3

What systems are affected by CVE-2026-64479?

CVE-2026-64479 affects systems running the ALSA project in the Linux kernel, specifically the snd_seq_event_dup function.

4

What type of vulnerability is CVE-2026-64479?

CVE-2026-64479 is classified as an information leak vulnerability.

5

Who is responsible for addressing CVE-2026-64479?

The maintainers of the ALSA project and the Linux kernel are responsible for addressing CVE-2026-64479.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203