#!/bin/sh
# DF-0714 run script — executes the trigger PoC
# Requires root (netgraph socket access) and ng_tcpmss module loaded.
# The setup (module load + topology) is done by the program itself.
# In a real deployment, the admin wires tcpmss into the packet path;
# the trigger is a crafted TCP SYN from an unprivileged remote host.
set -e
cd "$(dirname "$0")"
./trigger
echo "RUN_EXIT=$?"
