DirtyClone: the vulnerability of the Linux kernel that allows you to climb privileges without touching the disk

Author: Published 5 min de lectura 203 reading

The images in this article were generated with artificial intelligence. How we publish

A new privilege climbing explosion called DirtyClone(CVE-2026-43503, CVSS 8.8) again shows the same architectural weakness in the Linux kernel network subsystem: cero-copy optimization that allows you to treat file pages as package data can be transformed into a writing primitive if at any point in the code a security flag is lost. JFrog Security Research released a functional demonstration on June 25 that shows how a local attacker can corrupt file-backed memory and, without touching the disk, get root by replacing bytes of a privileged binary in memory (e.g. / usr / bin / su) and causing its subsequent execution with high privileges.

The concrete DirtyClone vector exploits that two auxiliary functions that intervene when the kernel clone a network package stop spreading the bit that marks shared fragments with the file system. The explosion links the placement of pages of a privileged binary within a skb (socket buffer), the cloning of that skb and its passage through an IPsec tunnel controlled by the attacker: during decompression / decrypt on the reception route the kernel overwrites the memory mapped with data controlled by the attacker. The disk file is not modified, the file integrity tools do not detect anything and a reboot restores the disk image; in other words, the modification is temporary but sufficient because the attacker already has root before someone notices it.

DirtyClone: the vulnerability of the Linux kernel that allows you to climb privileges without touching the disk
Image generated with IA.

It is important to understand where the practical limitations apply: the operation requires the capacity CAP _ NET _ ADMIN to configure the IPsec loopback tunnel. In distributions that allow you to use namespaces without privileges (e.g. Debian and Fedora with default configuration) a local user can get CAP _ NET _ ADMIN within a namespace to mount the operating route. Ubuntu 24.04 and later have hardened the creation of namespaces by AppArmor, which blocks the default operating path on that platform.

DirtyClone is not an isolated case: it is the fourth variant in weeks that takes advantage of the same contract failure in the handling of skb fragments. Copy Fail, DirtyFrag and Fragnesia were previous variants that found other functions where the same rule was not respected: each path moving fragment descriptors must preserve the bit share-frag. The combined patch that sealed multiple weak points was integrated into mainline on 21 May (commit 48f6a5356a33) and has been retroported to stable branches and LTS; however, the repeated presence of variants indicates that the surface remains wide and requires comprehensive audit.

Immediate and practical actions to be taken by managers: update the kernel as soon as possible a version with the applied patch (the correction is in Linux v7.1-rc5 and in stable backports / LTS). After the parking, restart the systems concerned: since the operation alters only the live memory, a reboot cleans the temporary modifications and closes the active vector of a recent intrusion. Check the official kernel record for the correction commission: commitment 48f6a5356a33 and the CVE detail on the NVD base: CVE-2026-43503.

If you cannot immediately deploy the patch, there are two temporary mitigations that reduce the attack surface: disable the creation of namespaces without privileges (in Debian and Ubuntu can be done with kernel. Unprivileged _ userns _ clone = 0 by using sysctl or / etc / sysctl.conf) and / or blocking the kernel modules involved (s4, s6 and rxrpc) by adding them to the modprobe black list. Both measures have functional impact - block esp * disable IPsec and blacklisting only works if these components are modules and are not compiled in the kernel - so they should be applied with knowledge of the environment. These mitigations do not replace the complete update of the kernel.

DirtyClone: the vulnerability of the Linux kernel that allows you to climb privileges without touching the disk
Image generated with IA.

The most exposed environments are those that allow unreliable users to create namespaces and manipulate the network: public servers, shared CI runners, container hosts and Kubernetes clusters with laxity policies. In these scenarios it is appropriate to apply additional controls: to minimize the capabilities granted to containers (not to grant CAP _ NET _ ADMIN unless necessary, to use seccomp / SELinux / AppArmor profiles), to restrict who can create namespaces and to review the configuration of the container runtime to prevent network capacity escape.

From a defence and risk management perspective, there are two clear messages. First, the kind of failure that DirtyClone causes is a contract vulnerability between kernel components: the solution is not just to patch specific functions but to audit and strengthen the invariance throughout the code that moves skb fragments. Second, for operators the detection is difficult because the changes do not touch the disk or leave a trace on the file integrities; therefore, the response to the suspicion of commitment should include update + reboot and, in reasonable cases, reconstruction from reliable images. Maintain accelerated patching processes for kernel and review isolation policies for users and workloads.

Finally, security and platform equipment should monitor the distribution notices and apply the patches and backports that publish the vendors; in addition, assess preventive controls at the level of container policy and the ability to detect abnormal activity on the internal network. The recurrence of variants in the same family bug is a call to strengthen both the kernel development process and the in-depth defence strategies in shared infrastructure.

Coverage

Related

More news on the same subject.