Security readout for executives and security teams
Plain-English summary
CVE-2024-35899 is a Linux kernel race condition in nftables cleanup. Under specific local conditions, delayed destroy work can reference memory already released during network namespace/module teardown, causing a use-after-free. Business impact is mainly host instability or denial of service, with limited confidentiality impact per the CVSS data.
Executive priority
Treat this as a routine but important kernel patching item, highest for multi-user Linux servers, container hosts, and appliances. There is no supplied evidence of active exploitation, but the availability impact justifies timely remediation through normal kernel update channels.
Technical view
The issue is CWE-362 in netfilter nf_tables. The kernel fix flushes pending destroy work before exit_net releases nf_tables state, preventing nf_tables_trans_destroy_work from touching freed set/table memory. The supplied trace shows KASAN slab-use-after-free during nf_tables module removal after nfnetlink set activity.
Likely exposure
Exposure is local Linux systems running affected kernel versions using nf_tables/netfilter. The source bundle lists Linux as affected and includes stable kernel fix commits. Internet-facing services are not directly exposed unless an attacker already has local execution or a constrained environment that can reach the relevant kernel interfaces.
Exploitation context
The bundle does not show KEV listing or active exploitation. CVSS marks local attack vector, low attack complexity, low privileges, no user interaction, low confidentiality impact, and high availability impact. The observed failure is a KASAN use-after-free in kernel cleanup paths, not a remotely reachable application bug.
Researcher notes
Key behavior is a lifecycle race between exit_net release and queued nf_tables destroy work. The fix direction is synchronization cleanup, not a configuration workaround. Evidence does not establish exploitability beyond the CVSS local, low-privilege model and the included KASAN trace.
Mitigation direction
Apply vendor kernel updates containing the referenced stable nf_tables fixes.
Prioritize shared Linux hosts, container platforms, and systems allowing local untrusted users.
Review Debian, Siemens, and Linux distribution advisories for product-specific fixed packages.
Limit unnecessary local access until patched where multi-user risk is material.
Validation and detection
Inventory Linux kernel versions against vendor advisories for CVE-2024-35899.
Check whether nf_tables/netfilter functionality is enabled or loaded on exposed hosts.
Confirm installed kernel includes the applicable stable fix commit or downstream backport.
Review kernel logs for KASAN or use-after-free reports involving nf_tables.
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-362: 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.
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-362 · source CWE mapping
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition') represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.