SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-80717

HIGH · CVSS 7.5 EPSS 0.33%

Source: NVD + CISA KEV + EPSS · Published 2026-08-28 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the SCTP (Stream Control Transmission Protocol) implementation, specifically in the handling of the Adaptation Layer Indication parameter. An attacker can exploit this flaw to read beyond the declared parameter length, potentially disclosing sensitive data from the receive buffer. Organizations using Linux-based systems that implement SCTP should prioritize patching this vulnerability to mitigate the risk of unauthorized data exposure.

CVE
CVE-2026-80717
Severity
HIGH
CVSS
7.5
EPSS
0.33%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: sctp: validate Adaptation Indication parameter length The Adaptation Layer Indication parameter contains a fixed 32-bit Adaptation Code Point after its parameter header. However, sctp_verify_param() accepts a header-only parameter because the generic parameter walker only requires the header to be present. sctp_process_param() then reads adaptation_ind beyond the declared parameter. When the malformed parameter is last in an INIT, the read starts at the receive skb tail, and the value is copied into the state cookie returned in the INIT ACK. This may disclose four receive-buffer tail bytes. Require the declared parameter length to match the fixed structure size and abort the association through the existing invalid parameter length path otherwise.