HOMEVULNERABILITIESCVE-2026-31715
HIGH

CVE-2026-31715

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

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

Official Description

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

f2fs: fix UAF caused by decrementing sbi->nr_pages[] in f2fs_write_end_io()

The xfstests case "generic/107" and syzbot have both reported a NULL

pointer dereference.

The concurrent scenario that triggers the panic is as follows:

F2FS_WB_CP_DATA write callback umount

- f2fs_write_checkpoint

- f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA)

- blk_mq_end_request

- bio_endio

- f2fs_write_end_io

: dec_page_count(sbi, F2FS_WB_CP_DATA)

: wake_up(&sbi->cp_wait)

- kill_f2fs_super

- kill_block_super

- f2fs_put_super

: iput(sbi->node_inode)

: sbi->node_inode = NULL

: f2fs_in_warm_node_list

- is_node_folio // sbi->node_inode is NULL and panic

The root cause is that f2fs_put_super() calls iput(sbi->node_inode) and

sets sbi->node_inode to NULL after sbi->nr_pages[F2FS_WB_CP_DATA] is

decremented to zero. As a result, f2fs_in_warm_node_list() may

dereference a NULL node_inode when checking whether a folio belongs to

the node inode, leading to a panic.

This patch fixes the issue by calling f2fs_in_warm_node_list() before

decrementing sbi->nr_pages[F2FS_WB_CP_DATA], thus preventing the

use-after-free condition.

NVD Source

Technical Analysis

CVE-2026-31715 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 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.Low
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityHigh
IntegrityHigh
AvailabilityHigh
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Affected Vendors & Products

Linux1 product
linux kernel
Source: NVD CPE · 2 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-31715
CVSS Score7.8 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.02%
Affected1 vendor
PublishedMay 1, 2026

Recommended Actions

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