DF-1392 / run.sh
#!/bin/sh # DF-1392 PoC runner # This finding is HW-gated GPU module (radeon DPM). # It CANNOT be triggered on this QEMU guest (no GPU hardware / module not loaded / root-only). # # Reachability: HW-gated. radeon.ko is a loadable module (not in GENERIC); requires ATI/AMD radeon GPU hardware (RV6xx/RV7xx ASIC). No GPU in QEMU guest. Module is not loaded and no device node exists. # echo "DF-1392: HW-gated GPU module (radeon DPM) — not reproducible on this guest" echo "Reason: HW-gated. radeon.ko is a loadable module (not in GENERIC); requires ATI/AMD radeon GPU hardware (RV6xx/RV7xx ASIC). No GPU in QEMU guest. Module is not loaded and no device node exists." exit 0 |