1 2 3 4 5 6 7 8 9 10
#!/bin/sh # build.sh — build the DF-0865 trigger PoC. set -e cd "$(dirname "$0")" echo "[*] cc -O2 -o poc poc.c" cc -O2 -o poc poc.c echo "[*] building crafted HPFS image" python3 mk_hpfs.py evil.hpfs ls -l poc evil.hpfs echo "BUILD_OK"