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.
rfkill
About this tag
The rfkill tag on WindowsForum.com covers discussions about the Linux kernel's rfkill subsystem, which manages wireless device blocking. A prominent thread addresses CVE-2026-23336, a use-after-free vulnerability in the cfg80211 Wi-Fi configuration stack related to rfkill_block work. The fix involves canceling pending work during wiphy_unregister() to prevent race conditions. This content highlights kernel security, bug discovery via syzkaller, and the importance of proper cleanup in wireless device handling. While the tag is Linux-focused, it may interest Windows users involved in cross-platform development or security research.
The Linux kernel’s CVE-2026-23336 is a classic example of a small-looking race condition with outsized consequences: a use-after-free in the Wi-Fi configuration stack, specifically around cfg80211 and rfkill_block work. The upstream fix is straightforward in concept—cancel the pending work...