Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
phpMyAdmin /
vendor /
symfony /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Definition
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
Loader
[ DIR ]
drwxrwxrwx
Resource
[ DIR ]
drwxrwxrwx
Util
[ DIR ]
drwxrwxrwx
CHANGELOG.md
3.22
KB
-rw-rw-rw-
ConfigCache.php
1.55
KB
-rw-rw-rw-
ConfigCacheFactory.php
1.26
KB
-rw-rw-rw-
ConfigCacheFactoryInterface.ph...
961
B
-rw-rw-rw-
ConfigCacheInterface.php
1.3
KB
-rw-rw-rw-
FileLocator.php
2.46
KB
-rw-rw-rw-
FileLocatorInterface.php
1.01
KB
-rw-rw-rw-
LICENSE
1.04
KB
-rw-rw-rw-
README.md
632
B
-rw-rw-rw-
ResourceCheckerConfigCache.php
5.52
KB
-rw-rw-rw-
ResourceCheckerConfigCacheFact...
1.22
KB
-rw-rw-rw-
ResourceCheckerInterface.php
1.35
KB
-rw-rw-rw-
composer.json
1.21
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FileLocatorInterface.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; use Symfony\Component\Config\Exception\FileLocatorFileNotFoundException; /** * @author Fabien Potencier <fabien@symfony.com> */ interface FileLocatorInterface { /** * Returns a full path for a given file name. * * @param string $name The file name to locate * @param string|null $currentPath The current path * @param bool $first Whether to return the first occurrence or an array of filenames * * @return string|array The full path to the file or an array of file paths * * @throws \InvalidArgumentException If $name is empty * @throws FileLocatorFileNotFoundException If a file is not found */ public function locate($name, $currentPath = null, $first = true); }
Close