HOMEVULNERABILITIESCVE-2026-43292
MEDIUM

CVE-2026-43292

Published: May 8, 2026· Updated: May 14, 2026

5.5
CVSS v3.1
EPSS:0.02%probability of exploitation in 30 daysPercentile:4.7th

Official Description

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

mm/vmalloc: prevent RCU stalls in kasan_release_vmalloc_node

When CONFIG_PAGE_OWNER is enabled, freeing KASAN shadow pages during

vmalloc cleanup triggers expensive stack unwinding that acquires RCU read

locks. Processing a large purge_list without rescheduling can cause the

task to hold CPU for extended periods (10+ seconds), leading to RCU stalls

and potential OOM conditions.

The issue manifests in purge_vmap_node() -> kasan_release_vmalloc_node()

where iterating through hundreds or thousands of vmap_area entries and

freeing their associated shadow pages causes:

rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:

rcu: Tasks blocked on level-0 rcu_node (CPUs 0-1): P6229/1:b..l

...

task:kworker/0:17 state:R running task stack:28840 pid:6229

...

kasan_release_vmalloc_node+0x1ba/0xad0 mm/vmalloc.c:2299

purge_vmap_node+0x1ba/0xad0 mm/vmalloc.c:2299

Each call to kasan_release_vmalloc() can free many pages, and with

page_owner tracking, each free triggers save_stack() which performs stack

unwinding under RCU read lock. Without yielding, this creates an

unbounded RCU critical section.

Add periodic cond_resched() calls within the loop to allow:

- RCU grace periods to complete

- Other tasks to run

- Scheduler to preempt when needed

The fix uses need_resched() for immediate response under load, with a

batch count of 32 as a guaranteed upper bound to prevent worst-case stalls

even under light load.

NVD Source

Technical Analysis

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

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

A successful exploit results in availability disruption (denial of service), with a CVSS base score of 5.5.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorLocal
Attack ComplexityLow
Privileges Req.Low
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityNone
IntegrityNone
AvailabilityHigh
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Affected Vendors & Products

Linux1 product
linux kernel
Source: NVD CPE · 1 total CPE entries

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.

Official Patches & Advisories

All References (4)

Quick Facts

CVE IDCVE-2026-43292
CVSS Score5.5 / 10
SeverityMEDIUM
CISA KEVNo
EPSS (30d)0.02%
Affected1 vendor
PublishedMay 8, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-43292 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.