The CVE for Dirty Clone is CVE-2026-43503. And it is high severity with a score of 8.8.
This is a Local Privilege Escalation (LPE) vulnerability.
The JFrog security team recently identified that the fix for Dirty-Frag was not complete
Mitigation
If patching is not possible, do the following
- Block CAP_NET_ADMIN acquisition by setting
kernel.unprivileged_userns_clone=0.
Please note that settingkernel.unprivileged_userns_clone=0will disable user namespaces. This has impact on systemd-services and on containers like dockers/VMs/etc. Also applications like firefox or firefox derived browsers, Thunderbird email client, which use usernamespaces will be impacted. Not sure whether other non-firefox based browsers will also be impacted or not. - Blacklisting
esp4,esp6, andrxrpckernel modules.
To blacklist the modules put the following in a text file with extension.confand place it in the directory/etc/modprobe.d/
install esp4 /bin/false
install esp6 /bin/false
install rxrpc /bin/false
blacklist esp4
blacklist esp6
blacklist rxrpc
Doing this step will impact VPNs which depend on IPSec based on IPv4 and IPv6.
More details for these mitigation steps is over here.