SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-89717

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 component, specifically in the `zram_destroy_comps()` function, which improperly resets the primary compressor to NULL, potentially leading to a NULL pointer dereference. While the risk is considered low, this flaw could result in instability or crashes in systems utilizing zram for compressed block devices. Administrators and developers managing Linux kernel environments, particularly those using zram, should prioritize applying the patch to mitigate any potential issues.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: zram: set default primary compressor in zram_destroy_comps() Patch series "zram: fix zram issues reported by sashiko". Sashiko drove by and reported [1] a couple of zram issues: a possible BUG_ON() in zlib code due to missing winbits range validation and one possible NULL-ptr dereference in zcomp. Both are low risk yet still worth fixing. This patch (of 2): zram_destroy_comps() resets all compressors and leaves them set to NULL, including the primary one, which is invalid device state, as now comp_algorithm_show()->strcmp() can be called on a NULL compressor. Set default primary compressor in zram_destroy_comps().