DragonFlyBSD Kernel Audit
DF-0931 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# build.sh - DF-0931 PoC build
set -e
cd "$(dirname "$0")"
cc -O2 -o suid_bypass suid_bypass.c
cc -O2 -o exploit exploit.c
cc -O2 -o small_eFault small_eFault.c
echo "BUILD_OK: suid_bypass exploit small_eFault"