SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-72018

HIGH · CVSS 7.8 EPSS 0.16%

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

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the loopback functionality, specifically the move_data() method, which does not properly validate the offset and size parameters before performing a memory copy operation. This oversight can lead to out-of-bounds (OOB) writes, potentially compromising system stability and security. Organizations using affected Linux systems, particularly those relying on loopback operations, should prioritize patching to mitigate the risk of exploitation.

CVE
CVE-2026-72018
Severity
HIGH
CVSS
7.8
EPSS
0.16%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: dibs: loopback: validate offset and size in move_data() The loopback move_data() performs a memcpy into the registered DMB without checking whether offset + size exceeds the DMB length. Unlike real ISM hardware, which enforces memory region bounds natively, the software loopback has no such protection. A peer-supplied out-of-bounds offset or oversized write would result in an OOB write past the allocated kernel buffer. Add an explicit bounds check before the memcpy to reject such requests with -EINVAL.