DragonFlyBSD Kernel Audit
DF-1043 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-1043 — build the sysctl reader PoC.
# This is a userspace reader loop; the actual UAF trigger requires a
# ufoma USB device + detach (see README.md and VERDICT.md).
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o ufoma_uaf ufoma_uaf.c
echo "BUILD_OK: ufoma_uaf"