DragonFlyBSD Kernel Audit
DF-0869 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0869 PoC build: compile the trigger.
# Run as the unprivileged user from the PoC directory.
set -e
cd "$(dirname "$0")"

cc -o trigger trigger.c
echo "BUILD_OK: $(pwd)/trigger"