4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / compress.sh SH
#!/bin/sh
# Credit: Hoefler
# https://github.com/hoefler02/CVE-2025-21756/blob/main/compress.sh

gcc -static $1 -o x
mv ./x ./initramfs
cd initramfs
find . -print0 \
| cpio --null -ov --format=newc \
| gzip -9 > initramfs.cpio.gz
mv ./initramfs.cpio.gz ../