Description
In the Linux kernel, the following vulnerability has been resolved:

sctp: validate embedded INIT chunk and address list lengths in cookie

sctp_unpack_cookie() only checked that the embedded INIT chunk length
did not exceed the remaining cookie payload, but did not ensure that the
INIT chunk is large enough to contain a complete INIT header.

A malformed COOKIE_ECHO can therefore carry a truncated INIT chunk whose
length field is smaller than sizeof(struct sctp_init_chunk). Later,
sctp_process_init() accesses INIT parameters unconditionally, which may
lead to out-of-bounds reads.

In addition, raw_addr_list_len is not fully validated against the
remaining cookie payload. When cookie authentication is disabled, an
attacker can supply an oversized raw_addr_list_len and cause
sctp_raw_to_bind_addrs() to read beyond the end of the cookie. The
address parser also lacks sufficient bounds checks for parameter headers
and lengths, allowing malformed address parameters to trigger
out-of-bounds reads.

Fix this by:

- requiring the embedded INIT chunk length to be at least sizeof(struct
sctp_init_chunk);
- validating that the INIT chunk and raw address list together fit
within the cookie payload;
- verifying sufficient data exists for each address parameter header and
payload before parsing it.

Note that sctp_verify_init() must be called after sctp_unpack_cookie()
and before sctp_process_init() when cookie authentication is disabled.
This will be addressed in a separate patch.
Published: 2026-06-25
Score: n/a
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The Linux kernel’s SCTP module lacks proper boundary checks when unpacking COOKIE_ECHO packets. The sctp_unpack_cookie() routine verifies that the embedded INIT chunk length does not exceed the remaining cookie payload, but it does not ensure that a complete INIT header is present. An attacker can send a malformed COOKIE_ECHO packet containing either a truncated INIT chunk whose reported length is smaller than sizeof(struct sctp_init_chunk) or an oversized raw address list. When sctp_process_init() and sctp_raw_to_bind_addrs() later access the INIT parameters or address list unconditionally, the code reads beyond the bounds of the cookie buffer, resulting in an out‑of‑bounds read. This can leak kernel memory contents and may lead to a crash or further privilege escalation.

Affected Systems

Every Linux kernel version that contains the vulnerable SCTP code prior to the patch is affected. The flaw exists in the core kernel, so any system that has SCTP enabled and receives SCTP traffic—including most mainstream distributions and custom kernel builds—must apply the fix. The specific kernel version numbers are not listed in the data, but any kernel that has not incorporated the bounds validation and length checks is at risk.

Risk and Exploitability

The vulnerability is a low‑impact kernel out‑of‑bounds read guarded by a crafted SCTP packet; the EPSS score is less than 1% and it is not listed in CISA KEV, implying a lower probability of exploitation. However, an attacker who can reach the target via SCTP must craft a COOKIE_ECHO packet to trigger the read. Successful exploitation could expose arbitrary kernel memory, which could be leveraged for privilege escalation or to subvert security controls. Because the flaw lies in the kernel, the risk is significant for hosts that accept untrusted SCTP traffic and cannot mitigate it by disabling or blocking the protocol.

Generated by OpenCVE AI on June 25, 2026 at 15:06 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade to a Linux kernel version that includes the bounds checks for embedded INIT chunks and raw address lists.
  • If an update is not available, disable SCTP support by removing the SCTP module or compiling the kernel with CONFIG_SCTP=n.
  • Block inbound SCTP traffic (port 5000) at the network perimeter to prevent the delivery of malformed COOKIE_ECHO packets.

Generated by OpenCVE AI on June 25, 2026 at 15:06 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 25 Jun 2026 15:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-119
CWE-200

Thu, 25 Jun 2026 09:15:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: sctp: validate embedded INIT chunk and address list lengths in cookie sctp_unpack_cookie() only checked that the embedded INIT chunk length did not exceed the remaining cookie payload, but did not ensure that the INIT chunk is large enough to contain a complete INIT header. A malformed COOKIE_ECHO can therefore carry a truncated INIT chunk whose length field is smaller than sizeof(struct sctp_init_chunk). Later, sctp_process_init() accesses INIT parameters unconditionally, which may lead to out-of-bounds reads. In addition, raw_addr_list_len is not fully validated against the remaining cookie payload. When cookie authentication is disabled, an attacker can supply an oversized raw_addr_list_len and cause sctp_raw_to_bind_addrs() to read beyond the end of the cookie. The address parser also lacks sufficient bounds checks for parameter headers and lengths, allowing malformed address parameters to trigger out-of-bounds reads. Fix this by: - requiring the embedded INIT chunk length to be at least sizeof(struct sctp_init_chunk); - validating that the INIT chunk and raw address list together fit within the cookie payload; - verifying sufficient data exists for each address parameter header and payload before parsing it. Note that sctp_verify_init() must be called after sctp_unpack_cookie() and before sctp_process_init() when cookie authentication is disabled. This will be addressed in a separate patch.
Title sctp: validate embedded INIT chunk and address list lengths in cookie
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-06-25T08:39:25.254Z

Reserved: 2026-06-09T07:44:35.392Z

Link: CVE-2026-53224

cve-icon Vulnrichment

No data.

cve-icon NVD

No data.

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-06-25T16:45:03Z

Weaknesses
  • CWE-119

    Improper Restriction of Operations within the Bounds of a Memory Buffer

  • CWE-200

    Exposure of Sensitive Information to an Unauthorized Actor