Researcher Discloses AI-Assisted Linux Root Exploit

STAR Labs researcher Lee Jia Jie disclosed an AI-assisted local privilege-escalation exploit for Linux kernel flaw CVE-2026-53264 on July 27, demonstrating root access on a targeted CentOS Stream 9 build. The Hacker News reports that the use-after-free race in the net/sched traffic-control subsystem requires local access, unprivileged user namespaces, specific kernel options, and kernel-specific ROP offsets. Upstream fixes are available in maintained kernel branches.
STAR Labs researcher Lee Jia Jie disclosed an AI-assisted exploit for CVE-2026-53264, a Linux kernel use-after-free vulnerability that can elevate a local user to root on the CentOS Stream 9 configuration targeted for the TyphoonPwn 2026 competition. Lee's July 27 technical write-up describes a race condition in net/sched, Linux's packet scheduling and traffic-control subsystem.
According to The Hacker News, the flaw carries a CVSS score of 7.8 and is a local privilege-escalation issue rather than a remote-code-execution bug. An attacker first needs code execution or another foothold on the affected host before attempting the exploit.
A race in traffic-control actions
The vulnerable path involves shared traffic-control action objects tracked in a per-network-namespace action identifier registry. STAR Labs' analysis identifies tcf_idr_check_alloc() as a relevant lookup path: it reads an action object under a read-copy-update, or RCU, read lock. A concurrent deletion path can free that object without waiting for existing RCU readers, producing a use-after-free condition.
The published proof of concept triggers the race through traffic-control netlink operations, including concurrent filter creation and deletion. The Hacker News reports that the exploit requires unprivileged user namespaces, CONFIG_NET_ACT_GACT, and CONFIG_NET_CLS_FLOWER. It also depends on a kernel-specific return-oriented programming chain with hardcoded offsets, constraints that limit portability across kernel builds.
GBHackers reports that the exploit uses a separate user namespace, where the process can obtain CAP_NET_ADMIN, to access traffic-control operations that would normally require network-administration privileges in the initial namespace. Its account also describes a narrow timing requirement: freed memory must be reclaimed with attacker-controlled data before the kernel validates and increments the object's reference count.
AI-assisted, not autonomous
Lee wrote that AI assisted with bug discovery, a Kernel Address Sanitizer proof of concept, and optimization of the race window. In the STAR Labs post, he also cautioned that the systems used had "many blind spots and lapses in reasoning ability" and that human judgment remained necessary during the work.
The disclosure does not identify the model, service, prompts, or interaction history used in the research. As The Hacker News noted, those omissions make it difficult to independently assess how much of the finding or exploit engineering came from the AI system versus the researcher's direction and validation.
For security engineers, the more immediate issue is that full exploit source is public. In comparable kernel disclosures, public proof-of-concept code commonly shifts defensive work from theoretical exposure assessment to testing the kernel packages actually deployed, particularly where user namespaces are enabled.
Patch status and exposure checks
The Hacker News reports that the upstream fix landed on June 1 and has been backported to several stable branches. It lists fixed releases as:
- •5.10.259
- •5.15.210
- •6.1.176
- •6.6.143
- •6.12.94
- •6.18.36
- •7.0.13
The mainline correction entered 7.1-rc7, according to the same report. Administrators should verify their distribution's kernel advisory and package changelog rather than relying only on an upstream version string, because distributions can backport fixes without changing to the listed release line.
The Hacker News reported no official evidence of exploitation in the wild as of July 28. The disclosed prerequisites mean hardened systems that disable unprivileged user namespaces or lack the needed traffic-control features may not meet the demonstrated exploit conditions, but patch deployment remains the primary remediation.
Key Points
- 1CVE-2026-53264 exposes an RCU-related use-after-free in Linux traffic control, enabling local root escalation under specific kernel and namespace conditions.
- 2The public exploit is constrained by user namespaces, net/sched configuration, and kernel-specific ROP offsets, narrowing but not eliminating operational exposure.
- 3AI accelerated discovery and exploit iteration, while the researcher documented continued dependence on human validation and judgment for reliable exploitation.
Scoring Rationale
This is a publicly disclosed Linux kernel local privilege-escalation exploit with patches available and source code released. Its applicability is constrained by local access, user-namespace settings, and build-specific exploit requirements, but the affected subsystem and root-impact outcome make it significant for Linux security and platform teams.
Sources
Primary source and supporting public references used for this report.
Practice interview problems based on real data
1,625 SQL & Python problems across 15 industry datasets — the exact type of data you work with.
Try 250 free problems


