惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

Cyber Security News

AIRecon: AI-Powered Penetration Testing Tool with Kali Linux Sandbox Critical Chrome Vulnerabilities Allow Attackers to Execute Arbitrary Code - Update Now! UNC3753 Uses Screen-Sharing Sessions and RMM Tools to Exfiltrate Sensitive Legal Data New OnionDrop Loader Campaign Uses gainmsg C2 to Deliver LegionLoader Payloads ClickFix Campaign Uses EtherHiding and GULoader to Infect Windows Users via Fake CAPTCHA Ghostwriter Hackers Abuse Gmail Admin-Themed Emails to Steal Credentials and 2FA Codes The Half-Life of Threat Intelligence: When Does an IOC Stop Being Useful? Critical Fortinet FortiSandbox Vulnerabilities Actively Exploited in Attacks Aembit Extends IAM for Agentic AI to Microsoft Copilot Studio India Temporarily Bans Telegram Messenger Over Medical Exam Fraud Microsoft 365 Device Code Phishing Campaign Bypasses Password Theft With Legitimate Login Flow AppViewX Launches Agent Identity Security to Govern Agents for the AI and Quantum Era Hackers Weaponize Microsoft Teams Relay to Hide Ransomware Traffic Developer laptops are the credential store attackers are picking through in 2026, GitGuardian announces Endpoint Protection Interlock and Rhysida Ransomware Operations Share Supper Backdoor and Malware Codebase Novo Nordisk Confirms Cyber Attack — Hackers Accessed Patient Medical Data and Internal AI Assets Russian and Chinese Influence Actors Use AI to Evade Bot Detection and Mimic Human Behavior Microsoft Teams Analyze the Wi-Fi Hotspot Data Connected to an Employee’s Device PRC-Nexus Hackers Exploit REDCap Servers to Spy on US Medical Research Institutions Infinite Campus Data Breach Exposes 137,000 Users Personal Details OptinMonster Plugin Hack Exposes 1.2 Million Wordpress Sites to Cyberattack Ransomware Ecosystem Consolidates Around LockBit Alumni, Qilin, Hyflock, and The Gentlemen Hackers Abuse Legitimate RMM Tools in The Quarry IRS and SSA Phishing Campaigns LiteSpeed cPanel Plugin 0-Day Vulnerability Actively Exploited in the Wild Cisco SD-WAN vManage Vulnerability Exploited in Zero-Day Attacks Nearly 14,000 SimpleHelp Servers Exposed Amid Critical Authentication Bypass Disclosure Microsoft Site Showing Warning Following Certificate Expiry DPAPISnoop Tool Extracts CREDHIST Hashes for Offline Windows Credential Recovery SHADOWBYT3$ Allegedly Claim Breach of Nintendo, Stealing Sensitive Data Anthropic Updated Privacy Policy to Include Identity Verification for Claude Users
New DirtyClone Linux Vulnerability Allows Attackers to Ga...
Guru Baran · 2026-06-27 · via Cyber Security News

A new Linux kernel local privilege escalation vulnerability, dubbed “DirtyClone” (CVE-2026-43503), that allows unprivileged local users to gain full root access by manipulating cloned network packets through the XFRM/IPsec subsystem, all without leaving a trace in kernel logs or audit records.

DirtyClone is a high-severity variant in the DirtyFrag vulnerability family, a class of Linux kernel memory corruption bugs affecting how socket buffers (skb) reference shared page-cache memory.

Tracked as CVE-2026-43503, uncovered by JFrog Security Research with a CVSS score of 8.8, it was discovered by JFrog’s Security Research team during an audit of Linux kernel patches addressing earlier DirtyFrag fixes.

The core issue lies in the __pskb_copy_fclone() function, which drops the SKBFL_SHARED_FRAG safety flag during packet cloning, the same critical flag that the original DirtyFrag mitigation introduced to protect file-backed page cache memory.

Unlike its predecessor, DirtyClone exploits a packet cloning path rather than a direct splice path, specifically triggered by the Linux netfilter TEE target that duplicates packets internally using __pskb_copy_fclone().

The vulnerability was independently reported by JFrog on May 19, 2026, coinciding with a broader upstream report from original DirtyFrag researcher Hyunwoo Kim on May 16.

The DirtyFrag Vulnerability Family

DirtyFrag, Fragnesia, and DirtyClone are sibling vulnerabilities, not a chain sharing the same underlying exploitation primitive. All three exploit the kernel’s failure to strictly separate three memory roles: file-backed page cache, networking buffers (skb), and in-place cryptographic transformations.

VulnerabilityCVEDisclosedSubsystemWrite PrimitiveRoot Required?
Copy FailCVE-2026-31431April 30, 2026algif_aead (AF_ALG crypto)4-byte page-cache writeNo
DirtyFragCVE-2026-43284 / CVE-2026-43500May 8, 2026IPsec ESP (xfrm) + RxRPCFull write primitive (chained)No
FragnesiaCVE-2026-46300May 14, 2026XFRM ESP-in-TCPArbitrary byte writeNo
pedit COWCVE-2026-46331June 26, 2026net/sched act_peditOut-of-bounds page-cache writeNo

The original DirtyFrag fix (CVE-2026-43284) introduced the SKBFL_SHARED_FRAG flag to protect spliced UDP packets, but subsequent variants like Fragnesia (CVE-2026-46300) and DirtyClone demonstrated that this flag could be silently dropped across multiple code paths.

DirtyClone Linux Vulnerability

The key insight from JFrog’s research is that the attack primitive is not path-specific; any skb transformation that drops the shared-frag marker becomes an exploitation vector.

How the Attack Works

The DirtyClone exploit chains seven steps to achieve privilege escalation:

  1. Map a privileged binary — The attacker memory-maps /usr/bin/su, loading it into the kernel’s page cache as the write target
  2. Splice page-cache memory into a packet — Using vmsplice and splice, the attacker attaches file-backed pages directly into a UDP socket buffer (skb) without copying
  3. Configure a loopback IPsec tunnel — A local XFRM/ESP tunnel is set up via unshare -Urn to obtain CAP_NET_ADMIN inside a user namespace, keeping all traffic kernel-local
  4. Trigger packet cloning via TEE — A netfilter TEE rule forces packet duplication through __pskb_copy_fclone(), creating a cloned skb that loses the SKBFL_SHARED_FRAG flag
  5. Force in-place IPsec decryption — The cloned skb reaches esp_input(), where IPsec decrypts the payload directly into the buffer — which still references the page cache page of /usr/bin/su
  6. Controlled overwrite using AES-CBC — By manipulating the encryption key, IV, and packet layout, the attacker computes ciphertext that decrypts into specific target bytes, patching authentication logic inside the binary’s in-memory copy
  7. Execute the modified binary — The next execution of su uses the modified cached page, bypassing authentication and granting root.

The disk file remains entirely unchanged, making the attack invisible to file-integrity monitoring tools and leaving no kernel audit trail.

Affected Systems

CVE-2026-43503 affects a broad range of modern Linux distributions where unprivileged user namespaces are enabled:

  • Debian — Vulnerable by default; unprivileged namespaces enabled
  • Fedora — Vulnerable by default; unprivileged namespaces enabled
  • Ubuntu — Partially mitigated on 24.04+ via AppArmor namespace restrictions, but still listed as affected
  • Cloud and container environments — Kubernetes clusters, multi-tenant clouds, and containerized workloads with enabled user namespaces face the highest risk

Any kernel lacking the complete DirtyFrag patch chain — including CVE-2026-46300 and CVE-2026-43503 fixes remains exploitable even if the original DirtyFrag patches were applied.

The fix was merged into Linux mainline on May 21, 2026 (commit 48f6a5356a33), and the first fixed release tag is Linux v7.1-rc5 (May 24, 2026). The class-wide propagation fix ensures SKBFL_SHARED_FRAG is preserved across all skb copy/clone, coalesce, GRO receive, and segment paths.

Immediate actions:

  • Update the Linux kernel to v7.1-rc5 or apply the backported CVE-2026-43503 patch from your distribution.
  • Restrict user namespaces by setting kernel.unprivileged_userns_clone=0 on Debian/Ubuntu systems.
  • Blacklist kernel modules esp4, esp6, and rxrpc if IPsec is not in use to block the in-place decryption primitive.
  • Drop page cache after applying mitigations (echo 3 > /proc/sys/vm/drop_caches) to evict any potentially tampered pages.

No public PoC existed prior to JFrog’s research publication; JFrog has withheld the release of the full exploit code while distributions complete patch rollouts.

What Features Should AI SOC Have? – Download Free 2026 AI SOC Features Checklist

Guru Baran

Guru Baranhttps://cybersecuritynews.com

Gurubaran KS is a cybersecurity analyst, and Journalist with a strong focus on emerging threats and digital defense strategies. He is the Co-Founder and Editor-in-Chief of Cyber Security News, where he leads editorial coverage on global cybersecurity developments.