HOMEVULNERABILITIESCVE-2026-31778
NONE

CVE-2026-31778

Published: May 1, 2026· Updated: May 1, 2026

EPSS:0.02%probability of exploitation in 30 daysPercentile:6.8th

Official Description

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

ALSA: caiaq: fix stack out-of-bounds read in init_card

The loop creates a whitespace-stripped copy of the card shortname

where `len < sizeof(card->id)` is used for the bounds check. Since

sizeof(card->id) is 16 and the local id buffer is also 16 bytes,

writing 16 non-space characters fills the entire buffer,

overwriting the terminating nullbyte.

When this non-null-terminated string is later passed to

snd_card_set_id() -> copy_valid_id_string(), the function scans

forward with `while (*nid && ...)` and reads past the end of the

stack buffer, reading the contents of the stack.

A USB device with a product name containing many non-ASCII, non-space

characters (e.g. multibyte UTF-8) will reliably trigger this as follows:

BUG: KASAN: stack-out-of-bounds in copy_valid_id_string

sound/core/init.c:696 [inline]

BUG: KASAN: stack-out-of-bounds in snd_card_set_id_no_lock+0x698/0x74c

sound/core/init.c:718

The off-by-one has been present since commit bafeee5b1f8d ("ALSA:

snd_usb_caiaq: give better shortname") from June 2009 (v2.6.31-rc1),

which first introduced this whitespace-stripping loop. The original

code never accounted for the null terminator when bounding the copy.

Fix this by changing the loop bound to `sizeof(card->id) - 1`,

ensuring at least one byte remains as the null terminator.

NVD Source

Technical Analysis

CVE-2026-31778 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires some privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

Affected Vendors & Products

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

All References (8)

Quick Facts

CVE IDCVE-2026-31778
SeverityNONE
CISA KEVNo
EPSS (30d)0.02%
PublishedMay 1, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-31778 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.