DragonFlyBSD Kernel Audit
DF-0718 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
9
#!/bin/sh
# DF-0718 build — compiles the two PoC binaries on the guest.
set -e
echo "[*] cc -o panic panic.c"
cc -o panic panic.c
echo "[*] cc -o hunter hunter.c (kqueue warning is harmless)"
cc -o hunter hunter.c 2>&1 || true
ls -l panic hunter
echo "[+] built."