-
v0.202605.115 Stable
released this
2026-05-03 23:20:13 +00:00 | 11 commits to main since this releaseChanges
- Fixed RHEL-based distro non-reboot mitigation, works on almost all now (8/9/10).
- Added
cvecheck mitigation kmod, a native C kernel module fallback for built-inalgif_aeadhosts where the eBPF kprobe stop-gap fails the verifier checkunknown func bpf_override_return(kernels withCONFIG_FUNCTION_ERROR_INJECTION=ybutCONFIG_BPF_KPROBE_OVERRIDE=n, e.g. RHEL/CentOS 8). Same primitive (kprobe at__x64_sys_socket+override_function_with_return), no BPF helper gate. Auto-loads on boot via/etc/modules-load.d/cvecheck-kmod.conf. Requireskernel-develheaders +gcc+makeat install time. Verdict's remediation block now points atkmod installwhen kprobe is gated off.
Automatic Install
Auto-detects your arch, downloads the right binary into
$(pwd), and verifies its SHA-256 against the publishedSHA256SUMS:curl -fsSL https://copyfail.pcdoyle.dev/install.sh | shAlways grabs the latest release. Exits non-zero on checksum mismatch and removes the bad file.
Manual Downloads
Binary Target When to grab cvecheck-linux-x86_64Linux x86-64 (Intel/AMD 64-bit) Default for servers, desktops, laptops, most VMs/containers. Ubuntu/Debian/RHEL/Fedora/Rocky/Alma/Oracle/SUSE/Alpine/Arch on x86_64. cvecheck-linux-arm64Linux ARM 64-bit (aarch64) AWS Graviton, Ampere Altra, Apple Silicon Linux VMs, Raspberry Pi 4/5 (64-bit OS), Oracle/Azure ARM instances. cvecheck-linux-x86Linux x86 32-bit (i386 / i686) Legacy 32-bit hosts only. Old industrial boxes, ancient VMs. Skip unless you know you need it.
Pick the right one for your system (quick guide)
Run
unameand check the output.uname -m # x86_64 -> cvecheck-linux-x86_64 # aarch64 -> cvecheck-linux-arm64 # i686 / i386 -> cvecheck-linux-x86
Verify manually
SHA256SUMSis published as a release asset alongside the binaries. Each
line is<sha256> <filename>.# Download the binary you want plus the checksum file. curl -LO https://git.pcdoyle.dev/pcdoyle/copy-fail-cve-2026-31431/releases/download/latest/cvecheck-linux-x86_64 curl -LO https://git.pcdoyle.dev/pcdoyle/copy-fail-cve-2026-31431/releases/download/latest/SHA256SUMS # Verify (only checks files present in the current directory). sha256sum --ignore-missing -c SHA256SUMS # cvecheck-linux-x86_64: OKInline form (no SHA256SUMS download):
echo "<paste-hash-here> cvecheck-linux-x86_64" | sha256sum -c -
Run
chmod +x cvecheck-linux-x86_64 ./cvecheck-linux-x86_64 # pretty styled report ./cvecheck-linux-x86_64 --format=json | jq # SIEM/automation ./cvecheck-linux-x86_64 --quiet; echo $? # exit code only sudo ./cvecheck-linux-x86_64 # needed when /boot is root-onlyDownloads