DragonFlyBSD Kernel Audit
DF-0799 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
#!/bin/sh
# DF-0799 PoC build script
set -e
cd "$(dirname "$0")"
cc -O2 -o toctou_race toctou_race.c -lpthread
echo "BUILD OK: toctou_race"