1 2 3 4 5 6 7 8
#!/bin/sh # Build the DF-0852 PoC. Run on the guest as the unprivileged user (or root). set -e cd "$(dirname "$0")" echo "+ cc -o poc poc.c" cc -o poc poc.c echo "BUILD_EXIT=$?" ls -l poc