![[Dirty Frag] Mitigation appears possible on default Kernel 7.0.0-3-pve](https://preview.redd.it/kez8mn2bs00h1.png?auto=webp&s=9e846179ef00ccd1d057d84e1022b3c18bbfe089)
[Dirty Frag] Mitigation appears possible on default Kernel 7.0.0-3-pve
You probably don't need this post — just update your kernel!
https://forum.proxmox.com/threads/proxmox-virtual-environment-security-advisories.149331/post-851849
Everything below is only for cases where you cannot immediately update the kernel.
―――――――――――――
On a default Proxmox VE 9 installation with kernel 7.0.0-3-pve,
the following modules are present but not loaded by default:
- esp4.ko
- esp6.ko
- rxrpc.ko
So mitigation should be possible if you are not using L2TP/IPsec or AFS.
esp4.ko, esp6.ko, and rxrpc.ko are present, so I’d like to remove them…
Reference
https://nvd.nist.gov/vuln/detail/CVE-2026-43284
https://almalinux.org/ja/blog/2026-05-07-dirty-frag/
Workaround
As described in the article, disabling just esp4, esp6, and rxrpc would be sufficient,
but I’ve also disabled afs, which depends on them, just to be safe.
tee /etc/modprobe.d/blacklist-dirtyfrag.conf << EOF
install esp4 /bin/false
install esp6 /bin/false
install rxrpc /bin/false
install kafs /bin/false
EOF
log
mors ~ 10:20:45
❯ rmmod rxrpc
rmmod: ERROR: Module rxrpc is not currently loaded
mors ~ 10:20:52
❯ rmmod esp4
rmmod: ERROR: Module esp4 is not currently loaded
mors ~ 10:20:59
❯ rmmod esp6
rmmod: ERROR: Module esp6 is not currently loaded
mors ~ 10:21:01
❯ uname -a
Linux mors 7.0.0-3-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.0-3 (2026-04-21T22:56Z) x86_64 GNU/Linux
mors ~ 10:31:44
❯ ls /lib/modules/$(uname -r)/kernel/net/ipv*/esp*
/lib/modules/7.0.0-3-pve/kernel/net/ipv4/esp4.ko /lib/modules/7.0.0-3-pve/kernel/net/ipv6/esp6.ko
/lib/modules/7.0.0-3-pve/kernel/net/ipv4/esp4_offload.ko /lib/modules/7.0.0-3-pve/kernel/net/ipv6/esp6_offload.ko
mors ~ 10:31:49
❯ ls /lib/modules/$(uname -r)/kernel/net/rxrpc/
rxperf.ko rxrpc.ko
mors ~ 10:34:47
❯ ls /lib/modules/$(uname -r)/kernel/fs/afs/kafs.ko
/lib/modules/7.0.0-3-pve/kernel/fs/afs/kafs.ko