Hackers News Hackers News
  • CyberSecurity News
  • Threats
  • Attacks
  • Vulnerabilities
  • Breaches
  • Comparisons

Social Media

Hackers News Hackers News
  • CyberSecurity News
  • Threats
  • Attacks
  • Vulnerabilities
  • Breaches
  • Comparisons
Search the Site
Popular Searches:
technology Amazon AI
Recent Posts
Critical Adobe Acrobat Flaw Steals WhatsApp Chats From 329M Users
July 22, 2026
Critical RefluxFS Linux Kernel Bug Lets Attackers Gain Root Access
July 22, 2026
Critical Microsoft 365 Flaw Lets Attackers Bypass MFA, Hijack Sessions
July 22, 2026
Home/CyberSecurity News/Critical RefluxFS Linux Kernel Bug Lets Attackers Gain Root Access
CyberSecurity News

Critical RefluxFS Linux Kernel Bug Lets Attackers Gain Root Access

Key Takeaways A critical vulnerability, dubbed “RefluXFS” (CVE-2026-64600), has been discovered in the Linux kernel’s XFS filesystem. This race condition allows an unprivileged...

David kimber
David kimber
July 22, 2026 4 Min Read
2 0

Key Takeaways

  • A critical vulnerability, dubbed “RefluXFS” (CVE-2026-64600), has been discovered in the Linux kernel’s XFS filesystem.
  • This race condition allows an unprivileged local user to achieve root access by silently overwriting system files.
  • The flaw impacts Linux kernel versions 4.11 and newer, affecting an estimated 16.4 million systems globally.
  • No effective workarounds exist; immediate patching and system reboots are required to mitigate the risk.
  • The discovery was aided by AI, specifically Anthropic’s Claude Mythos Preview model, highlighting a growing trend in vulnerability research.

RefluXFS: A Critical Linux Kernel Privilege Escalation

A severe race condition, now named “RefluXFS,” has been identified within the Linux kernel’s XFS filesystem copy-on-write mechanism. This vulnerability, tracked as CVE-2026-64600, enables a local attacker without elevated privileges to covertly modify protected system files, thereby gaining full root access to the host. Notably, this exploit can succeed even on systems configured with SELinux in Enforcing mode.

Table Of Content

  • Key Takeaways
  • RefluXFS: A Critical Linux Kernel Privilege Escalation
  • Understanding the Vulnerability
  • AI-Assisted Discovery
  • What You Should Do

The Qualys Threat Research Unit (TRU) uncovered this timing-based flaw. It manifests when two simultaneous O_DIRECT write operations target the same reflinked file residing on an XFS volume.

Understanding the Vulnerability

Under normal operation, XFS manages writes to shared data blocks by allocating a new, private block and remapping the file’s pointer to this new location. However, the kernel momentarily releases its inode lock while awaiting available space in the transaction log. This brief window of vulnerability allows a second writer to intervene. During this interval, the second writer can remap the file and decrement its reference count. Consequently, the initial writer, operating with a stale reference, erroneously writes directly to the original block. Since O_DIRECT bypasses the page cache and skips revalidation, this corrupted write is permanently committed to disk.

This flaw permits an unprivileged local user to maliciously overwrite any readable file at the block layer on an XFS volume where reflink functionality is enabled, directly leading to root access on the host.

Qualys’s proof-of-concept demonstrated the severity of RefluXFS on a default RHEL 10.2 installation. Within seconds, the exploit silently removed password protection from the root account, granting immediate, passwordless root access. Crucially, these modifications persist across reboots and leave no discernible artifacts in kernel logs, making detection exceptionally challenging.

The RefluXFS bug has been present in all mainline and stable Linux kernel versions since 4.11, which was released in 2017. Qualys estimates that this vulnerability could potentially affect over 16.4 million systems worldwide, based on analysis performed with its CyberSecurity Asset Management platform.

For a system to be vulnerable, three specific conditions must be met: it must be running a kernel version 4.11 or later without the necessary patch, feature an XFS filesystem with reflink=1 enabled, and contain a directory writable by an unprivileged user, alongside a critical target file such as a SUID-root binary.

Category Details
Confirmed distributions RHEL 8/9/10, CentOS Stream 8/9/10, Oracle Linux 8/9/10, Rocky/AlmaLinux 8/9/10, CloudLinux 8/9/10, Amazon Linux 2023 & AL2 (Dec 2022+), Fedora Server 31+
Lower-risk distros Debian, Ubuntu, SUSE (exposed only if XFS manually selected with reflink=1)
Kernel versions affected v4.11 (2017) onward
Severity Emergency priority — local user to root, no logs, survives reboot

RefluXFS operates at the filesystem allocation layer, a level beneath most conventional kernel hardening measures. Memory protection mechanisms like KASLR, SMEP, and SMAP address different attack vectors. Kernel lockdown imposes no restrictions on O_DIRECT or FICLONE calls, and testing has confirmed that SELinux does not block the vulnerable code path. Similarly, container isolation techniques, including user-namespace restrictions and capability limits, do not affect this low-level vulnerability, indicating that there is currently no reliable workaround apart from applying the official patch.

AI-Assisted Discovery

Notably, this discovery resulted from a collaborative research effort between Qualys and Anthropic, which integrated the Claude Mythos Preview model into TRU’s manual audit workflow under Anthropic’s Project Glasswing. Researchers tasked the AI model with identifying Dirty COW-style race conditions. Through iterative prompting, the model successfully pinpointed the XFS flaw and generated a functional proof-of-concept, which Qualys engineers subsequently verified independently before coordinating disclosure with upstream maintainers.

This approach of AI-accelerated, human-validated vulnerability research aligns with a broader trend observed in 2026. This year has seen several other significant Linux privilege escalation vulnerabilities, such as CVE-2026-46333 (a nine-year-old ptrace flaw) and CrackArmor, an AppArmor-based root-access chain impacting over 12 million systems.

Vulnerability CVE Disclosed Vulnerable component Core technique
Copy Fail CVE-2026-31431 Apr 29, 2026 algif_aead (AF_ALG crypto API) Logic flaw lets AF_ALG socket + splice() write 4 controlled bytes into page cache
Dirty Frag CVE-2026-43284, CVE-2026-43500 May 7, 2026 xfrm/IPsec ESP + RxRPC Chains two page-cache-write bugs in networking stack, explicitly extends the “bug class Dirty Pipe and Copy Fail belong to”
DirtyClone CVE-2026-43503 Jun 25, 2026 _pskb_copy_fclone() packet cloning Dropped safety flag lets cloned network packets overwrite file-backed page cache; part of the DirtyFrag family
RefluXFS CVE-2026-64600 Jul 22, 2026 XFS reflink copy-on-write path Race condition between concurrent O_DIRECT writes causes stale reference-count check, corrupting on-disk blocks directly

The emergence of these four critical vulnerabilities within approximately three months underscores a growing pattern where researchers are discovering novel methods to trick the kernel into writing attacker-controlled data into protected memory or disk blocks that back setuid binaries or configuration files.

What You Should Do

  • Apply Patches Immediately: Vendor-fixed kernels are already available and are being backported across various enterprise distributions, including RHEL, Oracle Linux, AlmaLinux, Rocky Linux, and Fedora.
  • Prioritize Critical Systems: Organizations must prioritize patching internet-facing and multi-tenant systems without delay.
  • Perform Full Reboot: After applying the relevant security update, a full system reboot is essential to ensure the fix is active and fully implemented.
  • No Interim Mitigation: Be aware that no interim mitigation or configuration workaround currently exists to neutralize this flaw short of patching.

Disclaimer: HackersRadar reports on cybersecurity threats and incidents for informational and awareness purposes only. We do not engage in hacking activities, data exfiltration, or the hosting or distribution of stolen or leaked information. All content is based on publicly available sources.

Tags:

AttackCVECybersecurityExploitPatchSecurityThreatVulnerability

Share Article

David kimber

David kimber

David is a penetration tester turned security journalist with expertise in mobile security, IoT vulnerabilities, and exploit development. As an OSCP-certified security professional, David brings hands-on technical experience to his reporting on vulnerabilities and security research. His articles often feature detailed technical analysis of exploits and provide actionable defense recommendations. David maintains an active presence in the security research community and has contributed to multiple open-source security tools.

Previous Post

Critical Microsoft 365 Flaw Lets Attackers Bypass MFA, Hijack Sessions

Next Post

Critical Adobe Acrobat Flaw Steals WhatsApp Chats From 329M Users

No Comment! Be the first one.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Popular Posts
ASUS Patches Critical Router Vulnerability CVE-2024-XXXX for Remote Command Execution
July 22, 2026
Iranian Hackers Exploit Fortinet and Microsoft Flaws for Persistent Access
July 22, 2026
Royal Ransomware Leverages Qbot, Cobalt Strike to Rapidly Compromise Windows Domains
July 22, 2026
Top Authors
Marcus Rodriguez
Marcus Rodriguez
Emy Elsamnoudy
Emy Elsamnoudy
David kimber
David kimber
Let's Connect
156k
2.25m
285k

Related Posts

Jennifer sherman
By Jennifer sherman
Threats

GlassWorm Attacks macOS via Malicious VS Code…

January 1, 2026
Emy Elsamnoudy
By Emy Elsamnoudy
Attacks

ClickFix Attack Hides Malicious Code via Stegan Security

January 1, 2026
Sarah simpson
By Sarah simpson
Vulnerabilities

MongoBleed Detector Tool Released to Detect MongoDB Vulnerability(CVE-2025-14847)

January 1, 2026
Emy Elsamnoudy
By Emy Elsamnoudy
Breaches

Conti Ransomware Gang Leaders & Infrastructure Exposed

January 1, 2026
Hackers News Hackers News
  • [email protected]

Quick Links

  • Contact Us
  • Privacy Policy
  • Terms of service

Categories

Attacks
Breaches
Comparisons
CyberSecurity News
Threats
Vulnerabilities

Let's keep in touch

receive fresh updates and breaking cyber news every day and week!

All Rights Reserved by HackersRadar ©2026

Follow Us