DragonFlyBSD Kernel Audit
DF-0007 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0007 build: compile the leak PoC. Run as an unprivileged user.
set -e
cd "$(dirname "$0")"
cc -o leak_sigaction leak_sigaction.c
echo "BUILD_EXIT=$?"
ls -l leak_sigaction