Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.149.244
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
phar-io /
manifest /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
exceptions
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
values
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
xml
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
ManifestDocumentMapper.php
5.65
KB
-rw-r--r--
2020-11-17 16:24
ManifestLoader.php
1.63
KB
-rw-r--r--
2020-11-17 16:24
ManifestSerializer.php
5.51
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php /* * This file is part of PharIo\Manifest. * * (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PharIo\Manifest; class ManifestLoader { /** * @param string $filename * * @return Manifest * * @throws ManifestLoaderException */ public static function fromFile($filename) { try { return (new ManifestDocumentMapper())->map( ManifestDocument::fromFile($filename) ); } catch (Exception $e) { throw new ManifestLoaderException( sprintf('Loading %s failed.', $filename), $e->getCode(), $e ); } } /** * @param string $filename * * @return Manifest * * @throws ManifestLoaderException */ public static function fromPhar($filename) { return self::fromFile('phar://' . $filename . '/manifest.xml'); } /** * @param string $manifest * * @return Manifest * * @throws ManifestLoaderException */ public static function fromString($manifest) { try { return (new ManifestDocumentMapper())->map( ManifestDocument::fromString($manifest) ); } catch (Exception $e) { throw new ManifestLoaderException( 'Processing string failed', $e->getCode(), $e ); } } }