Skip to main content

Linux Kernel CVE-2026-64564

| EUVDEUVD-2026-52605 CRITICAL
2026-08-04 Linux GHSA-xw85-w2q2-369x
9.8
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
9.8 CRITICAL
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
7.0 HIGH

Remote peer needs an established SCTP association and non-default ASCONF enabled plus a specific chunk ordering (AC:H); primary demonstrated impact is kernel DoS (A:H) with a UAF giving limited plausible C/I effect.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H
4.0 AV:N/AC:H/AT:P/PR:N/UI:N/VC:L/VI:L/VA:H/SC:N/SI:N/SA:N
SUSE
7.8 HIGH
AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Red Hat
7.8 HIGH
qualitative

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 08, 2026 - 15:24 vuln.today
CVSS changed
Aug 08, 2026 - 15:22 NVD
9.8 (CRITICAL)
Patch available
Aug 04, 2026 - 07:01 EUVD
CVE Published
Aug 04, 2026 - 06:23 cve.org
UNKNOWN (no severity yet)
CVE Published
Aug 04, 2026 - 06:23 cve.org
CRITICAL 9.8

DescriptionCVE.org

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

sctp: don't free the ASCONF's own transport in DEL-IP processing

sctp_process_asconf() caches the transport the ASCONF chunk is processed against in asconf->transport (== chunk->transport, set once in sctp_rcv()). For an ASCONF located through its Address Parameter by __sctp_rcv_asconf_lookup(), that cached transport corresponds to the Address Parameter, which need not be the packet's source address.

sctp_process_asconf_param() rejects a DEL-IP for the packet source address (ADDIP D8, SCTP_ERROR_DEL_SRC_IP), but nothing protects asconf->transport. A single ASCONF can therefore carry, in order:

[Address Parameter L] [DEL-IP L] [DEL-IP 0.0.0.0]

where L differs from the source. The DEL-IP for L passes the D8 check and calls sctp_assoc_rm_peer() on the transport that asconf->transport still points at, freeing it (RCU-deferred). The following wildcard DEL-IP then reuses the now-dangling asconf->transport in sctp_assoc_set_primary() and sctp_assoc_del_nonprimary_peers(): set_primary() dereferences the freed transport (->ipaddr, ->state) and plants the dangling pointer into asoc->peer.primary_path / active_path, and del_nonprimary_peers(), keeping only the pointer that is no longer on the list, removes every real transport, leaving the association with a transport_count of 0 and primary_path/active_path pointing at freed memory.

Reject a DEL-IP that targets the transport the ASCONF is being processed against, mirroring the existing source-address guard, so the wildcard branch can never reuse a freed transport.

AnalysisAI

Kernel memory corruption in the Linux kernel SCTP stack allows a remote peer to trigger a use-after-free during ASCONF DEL-IP processing, corrupting an association's transport list and leaving primary_path/active_path pointing at freed memory. The flaw affects the SCTP dynamic address reconfiguration (ASCONF) path across a wide range of kernel versions and, given kernel-level impact, can lead to denial of service and potentially privilege escalation or code execution. Despite the 9.8 CVSS and 'Information Disclosure' tag, there is no public exploit identified at time of analysis and EPSS is low (0.16%), reflecting the SCTP/ASCONF-specific conditions required.

Technical ContextAI

The vulnerability lives in the kernel's SCTP (Stream Control Transmission Protocol) implementation, specifically ASCONF (Address Configuration Change) chunk handling used by RFC 5061 dynamic address reconfiguration. sctp_process_asconf() caches the transport the chunk was received on in asconf->transport (chunk->transport, set once in sctp_rcv()). When an ASCONF is located via its Address Parameter by __sctp_rcv_asconf_lookup(), that cached transport corresponds to the Address Parameter rather than the packet source. A single crafted ASCONF carrying [Address Parameter L][DEL-IP L][DEL-IP 0.0.0.0] passes the existing ADDIP D8 source-address guard (SCTP_ERROR_DEL_SRC_IP) but calls sctp_assoc_rm_peer() on the still-cached transport, freeing it (RCU-deferred). The subsequent wildcard DEL-IP then reuses the dangling pointer in sctp_assoc_set_primary() and sctp_assoc_del_nonprimary_peers(), dereferencing freed memory (->ipaddr, ->state) and dropping transport_count to 0. This is a classic use-after-free (CWE-416), not a genuine information-disclosure class despite the source tag; the CWE field was supplied as N/A.

RemediationAI

Vendor-released patch: upgrade to a fixed stable kernel - 6.6.148, 6.12.101, 6.18.42, 7.1.6, or 7.2-rc5 (or your distribution's backported build carrying the corresponding git.kernel.org commits such as fedeb4468987 / 9b2854f86f0b / d136b29bf91d / 74e8f3e7114f / 85aca407c560). The fix adds a guard rejecting any DEL-IP that targets the transport the ASCONF is being processed against, mirroring the existing source-address guard so the wildcard branch cannot reuse a freed transport. If you cannot patch immediately, the most effective compensating control is to disable SCTP dynamic address reconfiguration by setting net.sctp.addip_enable=0 (and net.sctp.addip_noauth_enable=0), which removes the ASCONF processing path entirely - the trade-off is loss of dynamic multihoming/address agility for SCTP peers that rely on it. Where SCTP itself is unused, blacklist the module (install sctp /bin/true / blacklist sctp) to eliminate the attack surface; the side effect is that any application depending on SCTP (some telecom/SIGTRAN/Diameter stacks) will break. Advisory and discussion: https://seclists.org/oss-sec/2026/q3/458 and https://vuldb.com/vuln/385769.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
openSUSE Tumbleweed Fixed
SUSE Linux Enterprise High Availability Extension 15 SP4 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS Affected
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS Affected

Share

CVE-2026-64564 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy