DF-0606 / build.sh
#!/bin/sh # DF-0606 build.sh — no compilation needed; this is a DDB-context-only # privileged debugger defect (no userspace PoC). The "build" step is to # apply fix.diff and rebuild the kernel, which is documented in run.sh # and performed by the verifier. This script is a no-op for the trigger. echo "DF-0606: nothing to compile (DDB-context privileged debugger defect)." echo "Reproduction is via source/disassembly trace (verify.sh), not a binary PoC." echo "To validate the fix, build/install the patched kernel per VERDICT.md." exit 0 |