CVE-2021-47129: netfilter: nft_ct: skip expectations for confirmed conntrack
In the Linux kernel, the following vulnerability has been resolved:
netfilter: nft_ct: skip expectations for confirmed conntrack
nft_ct_expect_obj_eval() calls nf_ct_ext_add() for a confirmed
conntrack entry. However, nf_ct_ext_add() can only be called for
!nf_ct_is_confirmed().
[ 1825.349056] WARNING: CPU: 0 PID: 1279 at net/netfilter/nf_conntrack_extend.c:48 nf_ct_xt_add+0x18e/0x1a0 [nf_conntrack]
[ 1825.351391] RIP: 0010:nf_ct_ext_add+0x18e/0x1a0 [nf_conntrack]
[ 1825.351493] Code: 41 5c 41 5d 41 5e 41 5f c3 41 bc 0a 00 00 00 e9 15 ff ff ff ba 09 00 00 00 31 f6 4c 89 ff e8 69 6c 3d e9 eb 96 45 31 ed eb cd <0f> 0b e9 b1 fe ff ff e8 86 79 14 e9 eb bf 0f 1f 40 00 0f 1f 44 00
[ 1825.351721] RSP: 0018:ffffc90002e1f1e8 EFLAGS: 00010202
[ 1825.351790] RAX: 000000000000000e RBX: ffff88814f5783c0 RCX: ffffffffc0e4f887
[ 1825.351881] RDX: dffffc0000000000 RSI: 0000000000000008 RDI: ffff88814f578440
[ 1825.351971] RBP: 0000000000000000 R08: 0000000000000000 R09: ffff88814f578447
[ 1825.352060] R10: ffffed1029eaf088 R11: 0000000000000001 R12: ffff88814f578440
[ 1825.352150] R13: ffff8882053f3a00 R14: 0000000000000000 R15: 0000000000000a20
[ 1825.352240] FS: 00007f992261c900(0000) GS:ffff889faec00000(0000) knlGS:0000000000000000
[ 1825.352343] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1825.352417] CR2: 000056070a4d1158 CR3: 000000015efe0000 CR4: 0000000000350ee0
[ 1825.352508] Call Trace:
[ 1825.352544] nf_ct_helper_ext_add+0x10/0x60 [nf_conntrack]
[ 1825.352641] nft_ct_expect_obj_eval+0x1b8/0x1e0 [nft_ct]
[ 1825.352716] nft_do_chain+0x232/0x850 [nf_tables]
Add the ct helper extension only for unconfirmed conntrack. Skip rule
evaluation if the ct helper extension does not exist. Thus, you can
only create expectations from the first packet.
It should be possible to remove this limitation by adding a new action
to attach a generic ct helper to the first packet. Then, use this ct
helper extension from follow up packets to create the ct expectation.
While at it, add a missing check to skip the template conntrack too
and remove check for IPCT_UNTRACK which is implicit to !ct.
Security readout for executives and security teams
Plain-English summary
This Linux kernel flaw affects netfilter connection tracking logic. A crafted or unusual nftables connection-tracking expectation path can trigger incorrect handling of already confirmed connections. The published severity is medium, with limited confidentiality and integrity impact and no availability impact in the supplied CVSS data.
Executive priority
Treat this as a routine but necessary Linux kernel maintenance item. It is not documented as actively exploited in the supplied evidence, but affected network security infrastructure should be patched promptly because it sits on sensitive traffic paths.
Technical view
nft_ct_expect_obj_eval() could call nf_ct_ext_add() on a confirmed conntrack entry, although that extension add path is only valid before confirmation. The kernel fix skips confirmed and template conntrack entries, and limits expectation creation to the first packet unless future helper attachment logic changes.
Likely exposure
Exposure is most relevant on Linux systems using nftables/netfilter connection tracking expectations, especially firewall, routing, gateway, container host, or network appliance workloads. The bundle identifies Linux kernel versions and stable fixes, but distro backport status must be checked separately.
Exploitation context
The source bundle does not show CISA KEV listing or active exploitation. CVSS indicates network reachability, low attack complexity, low privileges, and required user interaction. No public exploit evidence is provided in the supplied sources.
Researcher notes
The key behavioral change is avoiding helper extension attachment after conntrack confirmation and skipping template conntrack. The source evidence is kernel-focused and does not provide exploit proof, affected distribution matrices, or operational mitigations beyond applying fixed kernel code.
Mitigation direction
Update to a vendor-supported kernel containing the listed upstream stable fixes.
Check Linux distribution advisories for backported fixes before relying on version numbers alone.
Prioritize internet-facing firewalls, routers, gateways, and hosts using nftables conntrack expectations.
If updating is delayed, follow vendor guidance for netfilter or nftables exposure reduction.
Validation and detection
Inventory running kernel versions across Linux hosts and network appliances.
Identify systems using nftables, nf_tables, nft_ct, or conntrack expectation features.
Verify package changelogs reference the upstream fix or CVE-2021-47129.
Review firewall and gateway assets first, then lower-exposure servers.
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-273: 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-273 · source CWE mapping
Improper Check for Dropped Privileges
Improper Check for Dropped Privileges represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.