CVE-2026-63825
Published: July 19th, 2026
In the Linux kernel, the following vulnerability has been resolved:
gcov: use atomic counter updates to fix concurrent access crashes
GCC's GCOV instrumentation can merge global branch counters with loop
induction variables as an optimization. In inflate_fast(), the inner copy
loops get transformed so that the GCOV counter value is loaded multiple
times to compute the loop base address, start index, and end bound. Since
GCOV counters are global (not per-CPU), concurrent execution on different
CPUs causes the counter to change between loads, producing inconsistent
values and out-of-bounds memory writes.
The crash manifests during IPComp (IP Payload Compression) processing when
inflate_fast() runs concurrently on multiple CPUs:
BUG: unable to handle page fault for address: ffffd0a3c0902ffa
RIP: inflate_fast+1431
Call Trace:
zlib_inflate
__deflate_decompress
crypto_comp_decompress
ipcomp_decompress [xfrm_ipcomp]
ipcomp_input [xfrm_ipcomp]
xfrm_input
At the crash point, the compiler generated three loads from the same
global GCOV counter (__gcov0.inflate_fast+216) to compute base, start, and
end for an indexed loop. Another CPU modified the counter between loads,
making the values inconsistent - the write went 3.4 MB past a 65 KB
buffer.
Add -fprofile-update=prefer-atomic to CFLAGS_GCOV at the global level in
the top-level Makefile, guarded by a try-run compile test. The test
compiles a minimal program with and without -fprofile-update=prefer-atomic
using the full KBUILD_CFLAGS, then compares undefined symbols in the
resulting object files. If prefer-atomic introduces new undefined
references (such as __atomic_fetch_add_8 on i386 or __aarch64_ldadd8_relax
on arm64 with outline-atomics), the flag is not added -- the kernel does
not link against libatomic.
On architectures where GCC inlines 64-bit atomic counter updates (x86_64,
s390, ...) the test passes and the flag is enabled, preventing the
compiler from merging counters with loop induction variables and fixing
the observed concurrent-access crash.
On architectures where the flag would introduce libatomic dependencies, it
is silently omitted and behaviour is no worse than before this patch.
Move the CFLAGS_GCOV block from its original position (before the arch
Makefile include) to after the core KBUILD_CFLAGS assignments but before
the scripts/Makefile.gcc-plugins include. This placement ensures the
try-run test sees arch-specific flags (-m32, -march=,
-mno-outline-atomics) while avoiding GCC plugin flags (-fplugin=) that
would break the test on clean builds when plugin shared objects do not yet
exist.
CRITICAL
CVSS v3: 9.8
CVSS v3: 9.8
Status
| DocFilters Release | Package | State | Justification | Comment |
|---|---|---|---|---|
| 26.3 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 26.2 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 26.1 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 25.4 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 25.3 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 25.2 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 25.1 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 24.4 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 24.4.0 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 24.3 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 24.2 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 24.1 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 23.3 | zlib (1.3) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 23.2 | zlib (1.2.12) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 23.1 | zlib (1.2.12) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 22.4 | zlib (1.2.12) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 22.3 | zlib (1.2.12) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 22.2 | zlib (1.2.12) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 22.1 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 21.11 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 21.8 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 21.5.0 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 21.2.0 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.19.3667 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.18.3599 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.16.3445 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.15.3368 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.14.3263 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.13.3179 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.12.3054 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.11.3040 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.11.2990 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.10.2934 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.9.2878 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
| 11.4.8.2822 | zlib (1.2.11) | Not Affected | Code Not Present | CVE-2026-63825 is a Linux kernel vulnerability, not a userspace zlib vulnerability. The ‘zlib_inflate’ referenced in the advisory is the Linux kernel’s own internal, independently-maintained decompressor (lib/zlib_inflate/ in the kernel source tree), a different codebase from the userspace madler/zlib 1.3 that Document Filters vendors – the two share no source. The root cause requires a kernel built with GCOV coverage instrumentation (CONFIG_GCOV_KERNEL) plus the IPComp/IPsec network-compression subsystem processing attacker-controlled traffic on a multi-CPU system. Document Filters is a userspace C++ SDK with .NET/Python/Java bindings; it does not build, ship, or modify a Linux kernel, does not enable kernel GCOV instrumentation, and does not implement or use IPsec/IPComp in any form. No kernel module, GCOV kernel-build configuration, or IPComp/xfrm code exists anywhere in this codebase. |
Severity score breakdown
Attack Complexity
LOW
Attack Vector
NETWORK
Availability Impact
HIGH
Base Score
9.8
Base Severity
CRITICAL
Confidentiality Impact
HIGH
Integrity Impact
HIGH
Privileges Required
NONE
Scope
UNCHANGED
User Interaction
NONE
Vector String
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Version
3.1