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 : ConfigCacheInterface.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\Resource\ResourceInterface; /** * Interface for ConfigCache. * * @author Matthias Pigulla <mp@webfactory.de> */ interface ConfigCacheInterface { /** * Gets the cache file path. * * @return string The cache file path */ public function getPath(); /** * Checks if the cache is still fresh. * * This check should take the metadata passed to the write() method into consideration. * * @return bool Whether the cache is still fresh */ public function isFresh(); /** * Writes the given content into the cache file. Metadata will be stored * independently and can be used to check cache freshness at a later time. * * @param string $content The content to write into the cache * @param ResourceInterface[]|null $metadata An array of ResourceInterface instances * * @throws \RuntimeException When the cache file cannot be written */ public function write($content, array $metadata = null); }
Close