DragonFlyBSD Kernel Audit
DF-0019 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0019 build script — compiles the PoC trigger.
# Must be run as root on the DragonFlyBSD guest.
set -e
cd "$(dirname "$0")"
cc -O2 -o df0019 df0019.c
echo "BUILD OK: df0019"