HOMEVULNERABILITIESCVE-2026-31446
HIGH

CVE-2026-31446

Published: April 22, 2026· Updated: Apr 27, 2026

7.8
CVSS v3.1
EPSS:0.02%probability of exploitation in 30 daysPercentile:6.8th

Official Description

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

ext4: fix use-after-free in update_super_work when racing with umount

Commit b98535d09179 ("ext4: fix bug_on in start_this_handle during umount

filesystem") moved ext4_unregister_sysfs() before flushing s_sb_upd_work

to prevent new error work from being queued via /proc/fs/ext4/xx/mb_groups

reads during unmount. However, this introduced a use-after-free because

update_super_work calls ext4_notify_error_sysfs() -> sysfs_notify() which

accesses the kobject's kernfs_node after it has been freed by kobject_del()

in ext4_unregister_sysfs():

update_super_work ext4_put_super

----------------- --------------

ext4_unregister_sysfs(sb)

kobject_del(&sbi->s_kobj)

__kobject_del()

sysfs_remove_dir()

kobj->sd = NULL

sysfs_put(sd)

kernfs_put() // RCU free

ext4_notify_error_sysfs(sbi)

sysfs_notify(&sbi->s_kobj)

kn = kobj->sd // stale pointer

kernfs_get(kn) // UAF on freed kernfs_node

ext4_journal_destroy()

flush_work(&sbi->s_sb_upd_work)

Instead of reordering the teardown sequence, fix this by making

ext4_notify_error_sysfs() detect that sysfs has already been torn down

by checking s_kobj.state_in_sysfs, and skipping the sysfs_notify() call

in that case. A dedicated mutex (s_error_notify_mutex) serializes

ext4_notify_error_sysfs() against kobject_del() in ext4_unregister_sysfs()

to prevent TOCTOU races where the kobject could be deleted between the

state_in_sysfs check and the sysfs_notify() call.

NVD Source

Technical Analysis

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

Exploitation does not require any privileges, though user interaction (Required) is needed, which slightly reduces the risk of mass automated attacks.

A successful exploit results in complete confidentiality breach (data exposure), full integrity compromise (data manipulation), availability disruption (denial of service), with a CVSS base score of 7.8.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorLocal
Attack ComplexityLow
Privileges Req.None
User InteractionRequired
ScopeUnchanged
Impact
ConfidentialityHigh
IntegrityHigh
AvailabilityHigh
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

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 (7)

Quick Facts

CVE IDCVE-2026-31446
CVSS Score7.8 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.02%
PublishedApr 22, 2026

Recommended Actions

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