HOMEVULNERABILITIESCVE-2026-43388
NONE

CVE-2026-43388

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

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

Official Description

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

mm/damon/core: clear walk_control on inactive context in damos_walk()

damos_walk() sets ctx->walk_control to the caller-provided control

structure before checking whether the context is running. If the context

is inactive (damon_is_running() returns false), the function returns

-EINVAL without clearing ctx->walk_control. This leaves a dangling

pointer to a stack-allocated structure that will be freed when the caller

returns.

This is structurally identical to the bug fixed in commit f9132fbc2e83

("mm/damon/core: remove call_control in inactive contexts") for

damon_call(), which had the same pattern of linking a control object and

returning an error without unlinking it.

The dangling walk_control pointer can cause:

1. Use-after-free if the context is later started and kdamond

   dereferences ctx->walk_control (e.g., in damos_walk_cancel()

   which writes to control->canceled and calls complete())

2. Permanent -EBUSY from subsequent damos_walk() calls, since the

   stale pointer is non-NULL

Nonetheless, the real user impact is quite restrictive. The

use-after-free is impossible because there is no damos_walk() callers who

starts the context later. The permanent -EBUSY can actually confuse

users, as DAMON is not running. But the symptom is kept only while the

context is turned off. Turning it on again will make DAMON internally

uses a newly generated damon_ctx object that doesn't have the invalid

damos_walk_control pointer, so everything will work fine again.

Fix this by clearing ctx->walk_control under walk_control_lock before

returning -EINVAL, mirroring the fix pattern from f9132fbc2e83.

NVD Source

Technical Analysis

CVE-2026-43388 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 (3)

Quick Facts

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

Recommended Actions

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