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

sctp: prevent peer transport count overflow

sctp_assoc_add_peer() increments the association's 16-bit transport_count
for every new unique peer. Adding the 65,536th transport wraps the count to
zero.

SCTP sock_diag uses transport_count to reserve the INET_DIAG_PEERS payload,
then copies one sockaddr_storage for every entry in transport_addr_list.
After the wrap, a diagnostic dump reserves an empty payload and writes
8 MiB of peer addresses past the skb tail.

Reject a new unique peer when transport_count has reached U16_MAX. Perform
the check after the existing-peer lookup so a duplicate address continues
to return its existing transport at the limit.
Published: 2026-08-15
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The flaw resides in the SCTP implementation of the Linux kernel. When an association adds the 65,536th transport, the 16‑bit transport_count field wraps to zero. A diagnostic request (sock_diag) then reserves a payload based on the wrapped count and copies more peer addresses than the buffer can hold, writing past the end of the skb buffer. This out‑of‑bounds write can corrupt kernel memory, potentially causing a system crash or allowing an attacker to execute arbitrary code.

Affected Systems

All Linux kernel releases that retain the old SCTP code without the patch. No specific version information is supplied, so any kernel that has not applied the commit series in the kernel git repository is affected.

Risk and Exploitability

The CVSS score of 8.8 indicates high severity, and the EPSS score of < 1% suggests the vulnerability is rarely exploited currently. The vulnerability is not listed in CISA's KEV catalog. Based on the description, it is inferred that an attacker would need to initiate SCTP traffic that creates a large peer list and then issue a diagnostic request. The likely attack vector is remote access via SCTP to trigger the overflow, which can lead to kernel memory corruption and potentially arbitrary code execution. The lack of a published exploit does not reduce the risk, since an out‑of‑bounds write in the kernel is a high‑severity condition.

Generated by OpenCVE AI on August 21, 2026 at 21:16 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the latest Linux kernel update that includes the SCTP peer count overflow fix.
  • If a kernel update is not immediately possible, block or limit SCTP traffic using firewall rules or security modules to prevent the creation of large peer lists.
  • Continuously monitor system logs and kernel crash reports for abnormal SCTP activity, and consider disabling the SCTP module if it is not required in the environment.

Generated by OpenCVE AI on August 21, 2026 at 21:16 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DSA Debian DSA DSA-6466-1 linux security update
History

Thu, 20 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-787
References
Metrics threat_severity

None

threat_severity

Moderate


Wed, 19 Aug 2026 16:45:00 +0000


Mon, 17 Aug 2026 14:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-119

Mon, 17 Aug 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-119

Mon, 17 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Sat, 15 Aug 2026 14:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-119

Sat, 15 Aug 2026 12:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: sctp: prevent peer transport count overflow sctp_assoc_add_peer() increments the association's 16-bit transport_count for every new unique peer. Adding the 65,536th transport wraps the count to zero. SCTP sock_diag uses transport_count to reserve the INET_DIAG_PEERS payload, then copies one sockaddr_storage for every entry in transport_addr_list. After the wrap, a diagnostic dump reserves an empty payload and writes 8 MiB of peer addresses past the skb tail. Reject a new unique peer when transport_count has reached U16_MAX. Perform the check after the existing-peer lookup so a duplicate address continues to return its existing transport at the limit.
Title sctp: prevent peer transport count overflow
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-08-19T16:37:15.198Z

Reserved: 2026-08-15T05:44:03.902Z

Link: CVE-2026-74469

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T13:17:51.623

Modified: 2026-08-19T17:21:03.977

Link: CVE-2026-74469

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-15T00:00:00Z

Links: CVE-2026-74469 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-21T21:30:17Z

Weaknesses
  • CWE-119

    Improper Restriction of Operations within the Bounds of a Memory Buffer

  • CWE-787

    Out-of-bounds Write