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 /
Cache /
Adapter /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractAdapter.php
8.13
KB
-rw-r--r--
AbstractTagAwareAdapter.php
12.24
KB
-rw-r--r--
AdapterInterface.php
963
B
-rw-r--r--
ApcuAdapter.php
3.87
KB
-rw-r--r--
ArrayAdapter.php
10.92
KB
-rw-r--r--
ChainAdapter.php
8.76
KB
-rw-r--r--
CouchbaseBucketAdapter.php
7.55
KB
-rw-r--r--
CouchbaseCollectionAdapter.php
6.55
KB
-rw-r--r--
DoctrineAdapter.php
2.78
KB
-rw-r--r--
DoctrineDbalAdapter.php
15
KB
-rw-r--r--
FilesystemAdapter.php
933
B
-rw-r--r--
FilesystemTagAwareAdapter.php
7.41
KB
-rw-r--r--
MemcachedAdapter.php
13.43
KB
-rw-r--r--
NullAdapter.php
2.59
KB
-rw-r--r--
ParameterNormalizer.php
898
B
-rw-r--r--
PdoAdapter.php
19.85
KB
-rw-r--r--
PhpArrayAdapter.php
12.24
KB
-rw-r--r--
PhpFilesAdapter.php
10.02
KB
-rw-r--r--
ProxyAdapter.php
8.27
KB
-rw-r--r--
Psr16Adapter.php
1.9
KB
-rw-r--r--
RedisAdapter.php
1.17
KB
-rw-r--r--
RedisTagAwareAdapter.php
11.93
KB
-rw-r--r--
TagAwareAdapter.php
11.12
KB
-rw-r--r--
TagAwareAdapterInterface.php
775
B
-rw-r--r--
TraceableAdapter.php
6.77
KB
-rw-r--r--
TraceableTagAwareAdapter.php
932
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NullAdapter.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\Cache\Adapter; use Psr\Cache\CacheItemInterface; use Symfony\Component\Cache\CacheItem; use Symfony\Contracts\Cache\CacheInterface; /** * @author Titouan Galopin <galopintitouan@gmail.com> */ class NullAdapter implements AdapterInterface, CacheInterface { private static $createCacheItem; public function __construct() { self::$createCacheItem ?? self::$createCacheItem = \Closure::bind( static function ($key) { $item = new CacheItem(); $item->key = $key; $item->isHit = false; return $item; }, null, CacheItem::class ); } /** * {@inheritdoc} */ public function get(string $key, callable $callback, float $beta = null, array &$metadata = null): mixed { $save = true; return $callback((self::$createCacheItem)($key), $save); } /** * {@inheritdoc} */ public function getItem(mixed $key): CacheItem { return (self::$createCacheItem)($key); } /** * {@inheritdoc} */ public function getItems(array $keys = []): iterable { return $this->generateItems($keys); } /** * {@inheritdoc} */ public function hasItem($key): bool { return false; } /** * {@inheritdoc} */ public function clear(string $prefix = ''): bool { return true; } /** * {@inheritdoc} */ public function deleteItem($key): bool { return true; } /** * {@inheritdoc} */ public function deleteItems(array $keys): bool { return true; } /** * {@inheritdoc} */ public function save(CacheItemInterface $item): bool { return true; } /** * {@inheritdoc} */ public function saveDeferred(CacheItemInterface $item): bool { return true; } /** * {@inheritdoc} */ public function commit(): bool { return true; } /** * {@inheritdoc} */ public function delete(string $key): bool { return $this->deleteItem($key); } private function generateItems(array $keys): \Generator { $f = self::$createCacheItem; foreach ($keys as $key) { yield $key => $f($key); } } }
Close