AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72297

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The Linux kernel is vulnerable to an out-of-bounds read due to improper validation of ATM traffic classes in the Quality of Service (QoS) settings. This flaw allows invalid traffic class values to be accepted, potentially leading to information disclosure when accessing the /proc/net/atm/pvc interface. System administrators and developers managing Linux-based systems that utilize ATM networking should prioritize applying the relevant patches to mitigate this risk.

CVE
CVE-2026-72297
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: net: atm: reject out-of-range traffic classes in QoS validation Reject ATM traffic classes above ATM_ANYCLASS in check_tp(). SO_ATMQOS stores the supplied QoS after check_qos() succeeds, so accepting larger values leaves invalid traffic_class values in vcc->qos. That bad state later reaches pvc_info(), which indexes class_name[] with vcc->qos.{rx,tp}.traffic_class. Values above ATM_ANYCLASS cause an out-of-bounds read when /proc/net/atm/pvc is read. Tighten the existing QoS validation so invalid traffic_class values are rejected at the point where user supplied QoS is accepted.