#!/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."