DragonFlyBSD Kernel Audit
DF-0846 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0846 build: compile the Q_QUOTAON same-path leak PoC.
# The PoC uses <vfs/ufs/quota.h> (available in the stock userland headers).
set -e
cd "$(dirname "$0")"
cc -Wall -O2 -o quotaon_leak quotaon_leak.c
echo "BUILD_EXIT=0 -> ./quotaon_leak"
ls -l quotaon_leak