xfrm / ESP code path.VMware is aware of CVE-2026-43284 and CVE-2026-43500. An updated Jammy stemcell containing fixes for both vulnerabilities is currently targeted for the June patch release (June 16). Subscribe to this KB to be notified when the resolution is officially released.
For BOSH-managed VMs that are not using Tanzu IPSec, the affected kernel modules can be unloaded and blacklisted as a temporary mitigation.
bosh -d <deployment-name> ssh <instance-group>/<instance-id>sudo sh -c "printf 'install esp4 /bin/false\ninstall esp6 /bin/false\ninstall rxrpc /bin/false\n' > /etc/modprobe.d/dirtyfrag.conf; rmmod esp4 esp6 rxrpc 2>/dev/null; true"echo 3 | sudo tee /proc/sys/vm/drop_caches
esp4 and esp6 modules are required for IPSec functionality. Disabling them can disrupt or break IPSec communication between VMs.
Fixed version:
Jammy stemcell v1.1234 does contain the dirty-frag and copy-fail kernel fixes https://techdocs.broadcom.com/us/en/vmware-tanzu/platform/stemcells/services/stemcell-rn/stemcells.html
Garden, the container runtime used by Tanzu Elastic Application Runtime, applies a strict seccomp filter to all unprivileged containers by default. Seccomp (Secure Computing Mode) is a Linux kernel feature that restricts which system calls a process is permitted to make — any call not on the allowlist is rejected before it reaches the kernel. The Dirty Frag vulnerability chain requires two system calls that are absent from Garden's allowlist: unshare, used to create an isolated network namespace in order to register IPsec security associations, and add_key, used to install a cryptographic session key into the kernel's key management subsystem. Because neither call is permitted, both exploit paths are blocked before any vulnerable kernel code is reached. Customers running workloads in standard unprivileged Garden containers are not vulnerable to Dirty Frag.