CVE & CISA-KEV Catalog

CVE-2026-23111

HIGH
7.8
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: fix inverted genmask check in nft_map_catchall_activate() nft_map_catchall_activate() has an inverted element activity check compared to its non-catchall counterpart nft_mapelem_activate() and compared to what is logically required. nft_map_catchall_activate() is called from the abort path to re-activate catchall map elements that were deactivated during a failed transaction. It should skip elements that are already active (they don't need re-activation) and process elements that are inactive (they need to be restored). Instead, the current code does the opposite: it skips inactive elements and processes active ones. Compare the non-catchall activate callback, which is correct: nft_mapelem_activate(): if (nft_set_elem_active(ext, iter->genmask)) return 0; /* skip active, process inactive */ With the buggy catchall version: nft_map_catchall_activate(): if (!nft_set_elem_active(ext, genmask)) continue; /* skip inactive, process active */ The consequence is that when a DELSET operation is aborted, nft_setelem_data_activate() is never called for the catchall element. For NFT_GOTO verdict elements, this means nft_data_hold() is never called to restore the chain->use reference count. Each abort cycle permanently decrements chain->use. Once chain->use reaches zero, DELCHAIN succeeds and frees the chain while catchall verdict elements still reference it, resulting in a use-after-free. This is exploitable for local privilege escalation from an unprivileged user via user namespaces + nftables on distributions that enable CONFIG_USER_NS and CONFIG_NF_TABLES. Fix by removing the negation so the check matches nft_mapelem_activate(): skip active elements, process inactive ones.

How to fix

Remediation Available
bpftoolAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
bpftool-debuginfoAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
bpftool6.12Amazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
bpftool6.12-debuginfoAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernelAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-debuginfoAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-debuginfo-common-aarch64Amazon
Fixed in:1:6.1.163-186.299.amzn2023
kernel-debuginfo-common-x86_64Amazon
Fixed in:1:6.1.163-186.299.amzn2023
kernel-develAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-headersAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-libbpfAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-libbpf-debuginfoAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-libbpf-develAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-libbpf-staticAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-livepatch-6.1.163-186.299Amazon
Fixed in:1:1.0-0.amzn2023
Fixed in:1:1.0-0.amzn2023
kernel-livepatch-6.12.73-95.123Amazon
Fixed in:1:1.0-0.amzn2023
Fixed in:1:1.0-0.amzn2023
kernel-modules-extraAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-modules-extra-commonAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-toolsAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-tools-debuginfoAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel-tools-develAmazon
Fixed in:1:6.1.163-186.299.amzn2023
Fixed in:1:6.1.163-186.299.amzn2023
kernel6.12Amazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-debuginfoAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-debuginfo-common-aarch64Amazon
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-debuginfo-common-x86_64Amazon
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-develAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-headersAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-libbpfAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-libbpf-debuginfoAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023
kernel6.12-libbpf-develAmazon
Fixed in:1:6.12.73-95.123.amzn2023
Fixed in:1:6.12.73-95.123.amzn2023

This vulnerability affects an unusually large number of packages. The highest-confidence fixes are shown above; the full list is longer. Check the referenced advisories for complete coverage.

TridentStack Control can deploy fixes like this automatically across your Windows, macOS, and Linux fleet. See how it works

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityHigh
IntegrityHigh
AvailabilityHigh

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Exploit Intelligence

0.49%probability of exploitation in 30 days
41stpercentile

Moderate risk: more likely to be exploited than 41% of all known CVEs.

References

Related Vulnerabilities

Other CWE-416 (Use After Free) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2019-0708Critical9.8100%KEV + Ransom-
CVE-2021-31166Critical9.8100%KEVFix
CVE-2015-5119Critical9.899%KEV-
CVE-2010-3962High8.197%KEV-
CVE-2021-34833High7.896%--
CVE-2015-0313Critical9.895%KEVFix

Common questions

How do I fix CVE-2026-23111?

Published advisories record a fix for 601 affected products. The "How to fix" section on this page lists the fixed version and source advisory for each one, so apply the entry matching what you actually run.

Is CVE-2026-23111 being actively exploited?

Not that we know of. CVE-2026-23111 is not in the CISA Known Exploited Vulnerabilities catalog. Its EPSS score of 0.49% is the estimated probability that it will be exploited in the next 30 days. That is higher than 41% of all scored CVEs.

How severe is CVE-2026-23111?

CVE-2026-23111 has a CVSS v3 base score of 7.8, rated high. CVSS rates the technical impact if the vulnerability is exploited, not how likely that is, so weigh it alongside the exploit-prediction score when you decide what to patch first.

What does CVE-2026-23111 affect?

Published advisories record a fix for bpftool (Amazon), bpftool-debuginfo (Amazon), bpftool6.12 (Amazon), bpftool6.12-debuginfo (Amazon), and 597 more. Only products with a sourced advisory are listed, so treat this as what we can cite rather than a complete inventory.

Embed a live status badge for CVE-2026-23111
CVE-2026-23111 severity badge

Markdown

[![CVE-2026-23111](https://tridentstack.com/cve/badge/CVE-2026-23111.svg)](https://tridentstack.com/cve/CVE-2026-23111)

HTML

<a href="https://tridentstack.com/cve/CVE-2026-23111"><img src="https://tridentstack.com/cve/badge/CVE-2026-23111.svg" alt="CVE-2026-23111"></a>

Check your Linux endpoints for this class of vulnerability

TridentStack Control continuously scans Linux endpoints for known vulnerabilities and deploys the fixes from the same console. 200 endpoints free forever, no credit card.

Patch your fleet freeStart freeThis CVE lookup is free and always will be.

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2026-09-03.