DF-2411 / run.sh
#!/bin/sh # DF-2411 run.sh — no runnable PoC on this guest (gated). # Gate: no AdvanSys PCI HBA (pciconf); advansys module not loaded (kldstat) set -e echo "DF-2411: gated on this guest — nothing to run." echo "Gate proof:"; id case "DF-2411" in DF-2271) ls /dev/ch* 2>&1;; DF-2274) ls /dev/da* 2>&1;; DF-2281|DF-2282) ls -la /dev/sg0 2>&1;; DF-2411|DF-2415|DF-2424|DF-2428) kldstat | head -5; pciconf -l 2>&1 | grep -iE "0100|0101|0106" | head;; esac exit 0 |