Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
symfony /
config /
Resource /
[ HOME SHELL ]
Name
Size
Permission
Action
ClassExistenceResource.php
7.11
KB
-rw-r--r--
ComposerResource.php
1.82
KB
-rw-r--r--
DirectoryResource.php
3.1
KB
-rw-r--r--
FileExistenceResource.php
1.59
KB
-rw-r--r--
FileResource.php
1.72
KB
-rw-r--r--
GlobResource.php
4.77
KB
-rw-r--r--
ReflectionClassResource.php
8.49
KB
-rw-r--r--
ResourceInterface.php
1.02
KB
-rw-r--r--
SelfCheckingResourceChecker.ph...
994
B
-rw-r--r--
SelfCheckingResourceInterface....
834
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> */ class ComposerResource implements SelfCheckingResourceInterface, \Serializable { private $vendors; private static $runtimeVendors; public function __construct() { self::refresh(); $this->vendors = self::$runtimeVendors; } public function getVendors() { return array_keys($this->vendors); } /** * {@inheritdoc} */ public function __toString() { return __CLASS__; } /** * {@inheritdoc} */ public function isFresh($timestamp) { self::refresh(); return array_values(self::$runtimeVendors) === array_values($this->vendors); } /** * @internal */ public function serialize() { return serialize($this->vendors); } /** * @internal */ public function unserialize($serialized) { $this->vendors = unserialize($serialized); } private static function refresh() { self::$runtimeVendors = []; foreach (get_declared_classes() as $class) { if ('C' === $class[0] && 0 === strpos($class, 'ComposerAutoloaderInit')) { $r = new \ReflectionClass($class); $v = \dirname(\dirname($r->getFileName())); if (file_exists($v.'/composer/installed.json')) { self::$runtimeVendors[$v] = @filemtime($v.'/composer/installed.json'); } } } } }
Close