You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
nfc nci
About this tag
The nfc nci tag on WindowsForum.com covers Linux kernel vulnerabilities and fixes related to the NFC NCI (Near Field Communication NCI Core) subsystem. Recent discussions focus on CVE-2026-31509, a locking-order failure in the nci_close_device function that can cause deadlocks, and CVE-2026-23339, a memory leak in nci_transceive() due to improper skb ownership handling. These threads provide technical analysis of the bugs, their impact on system stability, and the upstream patches. While the tag is Linux-specific, it is relevant for enterprise IT and security professionals managing systems with NFC hardware or monitoring kernel CVEs.
Overview
CVE-2026-31509 is a Linux kernel vulnerability in the NFC NCI path that was published on April 22, 2026, and quickly drew attention because the bug is not a flashy memory corruption issue but a locking-order failure with real stability implications. The upstream fix is narrowly scoped...
CVE-2026-23339 is a small-looking Linux kernel bug with the kind of lifecycle mistake that kernel engineers never ignore: nci_transceive() takes ownership of an skb, then returns early on several error paths without freeing it. The result is a memory leak on the -EPROTO, -EINVAL, and -EBUSY...