CVE-2026-53389
Received Received - Intake

Use-After-Free in Linux Kernel TCP-AO Implementation

Vulnerability report for CVE-2026-53389, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-19

Last updated on: 2026-07-19

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: net/tcp-ao: fix use-after-free of key in del_async path In tcp_ao_delete_key(), the del_async path skips the current_key and rnext_key validity checks present in the synchronous path, assuming these pointers are always NULL on LISTEN sockets. However, if a key was added with set_current=1/set_rnext=1 while the socket was in CLOSE state, current_key and rnext_key will be non-NULL after listen() transitions the socket to LISTEN. When such a key is deleted with del_async=1, hlist_del_rcu() and call_rcu() free the key without clearing the dangling pointers. After the RCU grace period, getsockopt(TCP_AO_INFO) dereferences current_key->sndid and rnext_key->rcvid from freed slab memory. Clear current_key and rnext_key in the del_async path when they reference the key being deleted.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-19
Last Modified
2026-07-19
Generated
2026-07-20
AI Q&A
2026-07-19
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel involves a use-after-free issue in the TCP Authentication Option (TCP-AO) implementation. When a socket transitions from CLOSE to LISTEN state after a key was added with specific flags, deleting the key asynchronously can leave dangling pointers. These pointers are later dereferenced when querying socket options, leading to potential memory corruption or crashes.

Detection Guidance

This vulnerability is specific to the Linux kernel's TCP-AO implementation and requires kernel-level inspection. Detection involves checking for use-after-free conditions in tcp_ao_delete_key() during asynchronous key deletion. No direct network commands exist for detection; instead, monitor kernel logs for slab corruption or memory access errors after TCP-AO key deletions.

Impact Analysis

This vulnerability could allow an attacker to cause a denial-of-service condition by crashing the system or potentially execute arbitrary code with kernel privileges. It may also lead to data corruption or unauthorized access if exploited successfully.

Compliance Impact

This vulnerability involves a use-after-free flaw in the Linux kernel's TCP-AO implementation, which could lead to memory corruption and potential unauthorized access. While not directly tied to GDPR or HIPAA, such vulnerabilities may impact compliance by compromising data integrity and confidentiality if exploited. Organizations handling sensitive data under these regulations could face increased risk of breaches.

Mitigation Strategies

Apply the Linux kernel patch that resolves this issue. Update to a patched kernel version where current_key and rnext_key are cleared in the del_async path. Avoid using TCP-AO features until patched. Monitor kernel logs for related errors as a temporary detection measure.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53389. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart