DragonFlyBSD Kernel Audit
DF-0449 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0449 build script
# Builds the trigger PoC as an unprivileged user.
set -e
cd "$(dirname "$0")"
cc -o ng_overflow ng_overflow.c
echo "built: ng_overflow"