DF-0627 / build.sh
#!/bin/sh # DF-0627 reproducer build. # # The vulnerability is a kernel-side mbuf leak in the SMB CLIENT # (smb_iod_recvall) triggered by DUPLICATE responses from a malicious SMB # SERVER. There is therefore no standalone userspace binary to compile: the # "PoC" is a malicious SMB server (network attacker position) plus a victim # that mounts its share. See VERDICT.md and README.md for the trigger. # # This script is a no-op placeholder; the run is driven by run.sh + an # external SMB server harness (see README.md). echo "DF-0627: no client binary to build; the trigger is a malicious SMB server (see README.md)" exit 0 |