CVE-2024-27394: tcp: Fix Use-After-Free in tcp_ao_connect_init
In the Linux kernel, the following vulnerability has been resolved:
tcp: Fix Use-After-Free in tcp_ao_connect_init
Since call_rcu, which is called in the hlist_for_each_entry_rcu traversal
of tcp_ao_connect_init, is not part of the RCU read critical section, it
is possible that the RCU grace period will pass during the traversal and
the key will be free.
To prevent this, it should be changed to hlist_for_each_entry_safe.
Security readout for executives and security teams
Plain-English summary
A Linux kernel memory-safety flaw can free a TCP Authentication Option key while it is still being examined. A locally authenticated, low-privilege user may trigger serious confidentiality, integrity, or availability impact. The supplied record rates it 7.8 High.
Executive priority
Treat as a high-priority kernel update for multi-user or locally exposed Linux systems. Schedule prompt remediation through supported vendor channels, while recognizing that no active exploitation evidence is supplied.
Technical view
CVE-2024-27394 is a CWE-416 use-after-free in tcp_ao_connect_init. An RCU grace period may complete during key-list traversal because call_rcu occurs outside the RCU read-side critical section. The resolution replaces the traversal with a safe iterator.
Likely exposure
Prioritize Linux systems matching the supplied affected-version data, especially where untrusted local users can reach the relevant TCP-AO path. The version metadata includes 6.7, 6.8.9, and 6.9, but is insufficiently clear to define a complete affected range.
Exploitation context
The CVSS vector describes local access, low complexity, low privileges, no user interaction, and potentially high impact across confidentiality, integrity, and availability. The supplied record is not in KEV and provides no evidence of active exploitation.
Researcher notes
The stated correction changes hlist_for_each_entry_rcu to hlist_for_each_entry_safe in tcp_ao_connect_init. The bundle supplies two stable-kernel commits but does not clearly map every vulnerable or fixed release. Validate downstream backports by commit or vendor advisory, not version number alone.
Mitigation direction
Check distribution or kernel-vendor guidance for confirmed affected and fixed releases.
Upgrade to a vendor-supported kernel containing the official correction.
Restrict unnecessary local access until remediation is confirmed.
Apply normal reboot requirements after kernel replacement, following vendor guidance.
Validation and detection
Inventory running kernel versions across Linux systems.
Compare each kernel against vendor advisories and the supplied upstream fix commits.
Confirm the installed kernel contains the relevant correction.
Verify systems booted into the remediated kernel after updating.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-416: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
2CVSS vectors
3Timeline events
2ADP providers
3Source links
SSVC decision data
CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: pocAutomatable: noTechnical Impact: total
CVSS vector scores
2 official scores
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-416 · source CWE mapping
Use After Free
Use After Free represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.