DragonFlyBSD Kernel Audit
DF-0654 / run.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0654 build/run: NO-OP reproduction (no WiFi hardware on guest).
# The bug is a source/logic finding; fix.diff is the actionable artifact.
echo "DF-0654: ccmp_setkey AES-key-load omission (SWDECRYPT-only)."
echo "No reproduction possible on this guest (no WiFi hardware / ieee80211 VAP)."
echo "Bug confirmed by source trace (see VERDICT.md); fix in fix.diff."
echo "Verifying fix.diff applies to a clean tree:"
cd "$(dirname "$0")/../.." 2>/dev/null && git apply --check findings/poc/DF-0654/fix.diff && echo "fix.diff: APPLIES CLEANLY" || echo "(run from repo root to check apply)"