🚨 CVE-2026-53706
PREVAIL is a Polynomial-Runtime EBPF Verifier using an Abstract Interpretation Layer. Prior to version 0.2.4, the prevail eBPF verifier accepts ALU32 ADD and SUB instructions that operate on pointer-typed registers without checking the is64 flag. Because ALU32 arithmetic zero-extends the 32-bit result, the upper half of any pointer is silently destroyed at runtime, yet prevail marks the program as verified safe. Any caller that can submit an eBPF program for verification — including unprivileged users on kernels that permit BPF program loading — can produce a program that passes verification but faults or misbehaves at runtime. This issue has been patched in version 0.2.4.
🎖@cveNotify
GitHub
Forget the truncated result of ALU32 pointer arithmetic · vbpf/prevail@d3fab8c
A 32-bit (ALU32) ADD/SUB zero-extends its result into the 64-bit register, so
applied to a pointer it yields the low half of a (possibly kernel) address. Such
a value must not be usable as a pointe...
September 2, 2026 27