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 : 18.216.95.250
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
vendor /
symfony /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
Definition
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Exception
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Loader
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Resource
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Util
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
CHANGELOG.md
3.22
KB
-rw-r--r--
2021-02-05 18:32
ConfigCache.php
1.55
KB
-rw-r--r--
2021-02-05 18:32
ConfigCacheFactory.php
1.26
KB
-rw-r--r--
2021-02-05 18:32
ConfigCacheFactoryInterface.php
961
B
-rw-r--r--
2021-02-05 18:32
ConfigCacheInterface.php
1.3
KB
-rw-r--r--
2021-02-05 18:32
FileLocator.php
2.46
KB
-rw-r--r--
2021-02-05 18:32
FileLocatorInterface.php
1.01
KB
-rw-r--r--
2021-02-05 18:32
LICENSE
1.04
KB
-rw-r--r--
2021-02-05 18:32
README.md
632
B
-rw-r--r--
2021-02-05 18:32
ResourceCheckerConfigCache.php
5.52
KB
-rw-r--r--
2021-02-05 18:32
ResourceCheckerConfigCacheFactory.php
1.22
KB
-rw-r--r--
2021-02-05 18:32
ResourceCheckerInterface.php
1.35
KB
-rw-r--r--
2021-02-05 18:32
composer.json
1.21
KB
-rw-r--r--
2021-02-05 18:32
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\Config; use Symfony\Component\Config\Exception\FileLocatorFileNotFoundException; /** * FileLocator uses an array of pre-defined paths to find files. * * @author Fabien Potencier <fabien@symfony.com> */ class FileLocator implements FileLocatorInterface { protected $paths; /** * @param string|string[] $paths A path or an array of paths where to look for resources */ public function __construct($paths = []) { $this->paths = (array) $paths; } /** * {@inheritdoc} */ public function locate($name, $currentPath = null, $first = true) { if ('' == $name) { throw new \InvalidArgumentException('An empty file name is not valid to be located.'); } if ($this->isAbsolutePath($name)) { if (!file_exists($name)) { throw new FileLocatorFileNotFoundException(sprintf('The file "%s" does not exist.', $name), 0, null, [$name]); } return $name; } $paths = $this->paths; if (null !== $currentPath) { array_unshift($paths, $currentPath); } $paths = array_unique($paths); $filepaths = $notfound = []; foreach ($paths as $path) { if (@file_exists($file = $path.\DIRECTORY_SEPARATOR.$name)) { if (true === $first) { return $file; } $filepaths[] = $file; } else { $notfound[] = $file; } } if (!$filepaths) { throw new FileLocatorFileNotFoundException(sprintf('The file "%s" does not exist (in: "%s").', $name, implode('", "', $paths)), 0, null, $notfound); } return $filepaths; } /** * Returns whether the file path is an absolute path. */ private function isAbsolutePath(string $file): bool { if ('/' === $file[0] || '\\' === $file[0] || (\strlen($file) > 3 && ctype_alpha($file[0]) && ':' === $file[1] && ('\\' === $file[2] || '/' === $file[2]) ) || null !== parse_url($file, \PHP_URL_SCHEME) ) { return true; } return false; } }