#!/bin/sh
# run.sh — run the DF-0865 trigger PoC against the mounted HPFS image.
# Assumes the crafted image has been mounted at $MP by the driver script.
set -u
cd "$(dirname "$0")"
MP="${1:-/mnt/hpfs}"
echo "[*] running ./poc $MP"
./poc "$MP"
echo "RUN_EXIT=$?"