Cyber Resilience

CVE-2022-49288

High

Published: 26 February 2025

Published
26 February 2025
Modified
25 March 2025
KEV Added
Patch
CVSS Score v3.1 7.8 CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0002 5.2th percentile
Risk Priority 16 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2022-49288 is a high-severity Use After Free (CWE-416) vulnerability in Linux Linux Kernel. Its CVSS base score is 7.8 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked at the 5.2th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 RA-5 (Vulnerability Monitoring and Scanning) and SI-2 (Flaw Remediation).

Deeper analysis

CVE-2022-49288 is a race condition vulnerability in the Linux kernel's ALSA PCM subsystem. It arises from a lack of protection against concurrent writes to proc files used for PCM buffer preallocation changes, which can potentially lead to use-after-free (UAF) conditions or other undefined behaviors (CWE-416). The issue affects Linux kernel versions prior to the application of the relevant stable patches.

A local attacker with low privileges (PR:L) can exploit this vulnerability with low attack complexity (AC:L) and no user interaction required (UI:N), within the local scope (AV:L, S:U). Successful exploitation could result in high impacts on confidentiality, integrity, and availability (C:H/I:H/A:H), with an overall CVSS v3.1 base score of 7.8, potentially enabling kernel memory corruption, arbitrary code execution, or system crashes.

Mitigation involves applying upstream kernel patches from the Linux stable repository, which resolve the issue by applying the PCM open_mutex to proc write operations. This synchronizes proc writes with PCM stream opens and subsequent operations, preventing the races. Key patch commits include 37b12c16beb6f6c1c3c678c1aacbc46525c250f7, 51fce708ab8986a9879ee5da946a2cc120f1036d, 5ed8f8e3c4e59d0396b9ccf2e639711e24295bb6, 69534c48ba8ce552ce383b3dfdb271ffe51820c3, and a21d2f323b5a978dedf9ff1d50f101f85e39b3f2.

EU & UK References

Vulnerability details

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Fix races among concurrent prealloc proc writes We have no protection against concurrent PCM buffer preallocation changes via proc files, and it may potentially lead to UAF or…

more

some weird problem. This patch applies the PCM open_mutex to the proc write operation for avoiding the racy proc writes and the PCM stream open (and further operations).

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1068 Exploitation for Privilege Escalation Privilege Escalation
Adversaries may exploit software vulnerabilities in an attempt to elevate privileges.
Why these techniques?

Local kernel race condition (UAF) directly enables privilege escalation via arbitrary code execution or memory corruption in ALSA PCM proc handling.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-23111Same product: Linux Linux Kernel
CVE-2026-31530Same product: Linux Linux Kernel
CVE-2023-52974Same product: Linux Linux Kernel
CVE-2026-43019Same product: Linux Linux Kernel
CVE-2026-23158Same product: Linux Linux Kernel
CVE-2025-21893Same product: Linux Linux Kernel
CVE-2026-31446Same product: Linux Linux Kernel
CVE-2022-49176Same product: Linux Linux Kernel
CVE-2022-49291Same product: Linux Linux Kernel
CVE-2026-31650Same product: Linux Linux Kernel

Affected Assets

linux
linux kernel
≤ 4.14.279 · 4.15 — 4.19.243 · 4.20 — 5.4.193

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Requires timely remediation of identified flaws, such as applying kernel patches to fix the race condition in ALSA PCM proc file handling that leads to UAF.

detect

Vulnerability scanning identifies the specific race condition vulnerability in vulnerable Linux kernel versions, enabling proactive patching.

prevent

Kernel memory protection mechanisms mitigate the impact of use-after-free conditions resulting from the concurrent proc write races.

References