DF-1081 / build.sh
#!/bin/sh # DF-1081 build — compiles both the original PoC and the OOB-proof harness. # Run as the unprivileged user (maxx) inside the guest. set -e cd "$(dirname "$0")" echo "+ cc -O2 -Wall -o cue_oob_harness cue_oob_harness.c" cc -O2 -Wall -o cue_oob_harness cue_oob_harness.c echo "+ cc -o cue_overflow cue_overflow.c" cc -o cue_overflow cue_overflow.c echo "BUILD OK" ls -l cue_oob_harness cue_overflow |