SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80834

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-09-04 · Last synced 2026-09-19

CyberRota Analysis

AI-Generated

The vulnerability affects the sun8i-ce driver in the Linux kernel, specifically related to the deprecated crypto_rng interface for hardware pseudo-random number generators (PRNGs). The impact includes a use-after-free vulnerability in the driver’s generate function, which could potentially lead to system instability or exploitation during DMA operations. Linux system administrators and developers maintaining systems that utilize the sun8i-ce driver should prioritize addressing this issue, as it involves critical cryptographic functionality.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: crypto: sun8i-ce - Remove crypto_rng interface Since the crypto_rng interface for hardware PRNGs is unused and is redundant with hwrng and the actual Linux RNG, it's being phased out. Most drivers for it were already removed. Go ahead and remove the sun8i-ce support which is one of the only remaining ones. Note that the sun8i-ce support for hwrng remains in place. That is the interface that actually matters. As usual for crypto_rng, this driver was also buggy: its ->generate() function had a use-after-free vulnerability due to using wait_for_completion_interruptible_timeout() without handling shutting down the DMA operation if a signal is sent. There's no point in fixing this separately only to remove the code anyway, so this commit is marked with Fixes and Cc stable.