DragonFlyBSD Kernel Audit
DF-0005 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0005 PoC build script (run on the DragonFlyBSD guest as the unprivileged user).
# Build:  ./build.sh
set -e
cd "$(dirname "$0")"
cc -Wall -o tiocsti tiocsti.c
echo "built: tiocsti"
ls -l tiocsti