MB-R091
No executable code or script-enabling handlers detected in media or upload paths.
Magento media and upload paths are often writable by the application and publicly reachable. If PHP, PHTML, or other executable server-side files can run from these directories, an upload flaw can become remote code execution.
Blocking execution in writable public paths reduces the chance that an attacker can plant a web shell and use it to modify checkout, steal secrets, or skim payment pages.
find pub/media var -type f \( -iname "*.php" -o -iname "*.phtml" -o -iname "*.phar" \) 2>/dev/null
pub/media/catalog/tmp/shell.php
# PHP file present in public upload path → FAIL
location ~* ^/media/.*\.php$ { deny all; }
# Execution blocked → PASS