DragonFlyBSD Kernel Audit
DF-0429 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0429 build — compiles the UREQ injection demonstrator (unprivileged build OK).
set -e
cd "$(dirname "$0")"
cc -o inject_ureq inject_ureq.c
echo "BUILD_EXIT=$?"
ls -l inject_ureq