SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-89719

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's zram module, specifically in the read_block_state() function, which can lead to out-of-bounds access due to improper handling of device resets and reinitializations. This flaw may allow an attacker to exploit the vulnerability to access memory beyond the allocated table, potentially leading to system instability or unauthorized data access. Linux system administrators and developers utilizing the zram feature should prioritize addressing this issue to mitigate potential security risks.

CVE
CVE-2026-89719
Severity
UNKNOWN
CVSS
N/A
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: zram: fix out-of-bounds access in read_block_state() read_block_state() calculates nr_pages before taking dev_lock. If the device is reset and reinitialized with a smaller disksize before lock acquisition, nr_pages still describes the old table. The subsequent loop can then call slot_lock() past the end of the newly allocated table. Read disksize after acquiring dev_lock and checking that the device is initialized. The read lock then keeps the table and its bound stable for the duration of the scan.