DragonFlyBSD Kernel Audit
DF-0938 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
#!/bin/sh
# DF-0938 build: compile the PoC as the unprivileged user.
set -e
cd "$(dirname "$0")"
cc -O2 -o poc poc.c
echo "BUILD_OK: poc"