DragonFlyBSD Kernel Audit
DF-0894 / build.sh
← back to finding ↓ download raw
#!/bin/sh
# DF-0894 build.sh — exact build command for the PoC sources.
# Run as root IN THE GUEST.
set -e
cd "$(dirname "$0")"
echo "=== building craft_img ==="
cc -o craft_img craft_img.c
echo "=== building harness ==="
cc -o harness harness.c
echo "=== build OK ==="
ls -l craft_img harness