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.138.120.112
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 /
contexts /
[ HOME SHELL ]
Name
Size
Permission
Action
entity.inc
9.04
KB
-rw-r--r--
node.inc
5.21
KB
-rw-r--r--
node_add_form.inc
3.47
KB
-rw-r--r--
node_edit_form.inc
6.04
KB
-rw-r--r--
string.inc
2.36
KB
-rw-r--r--
term.inc
4.78
KB
-rw-r--r--
terms.inc
3.11
KB
-rw-r--r--
token.inc
1.71
KB
-rw-r--r--
user.inc
4.52
KB
-rw-r--r--
user_edit_form.inc
6.02
KB
-rw-r--r--
vocabulary.inc
1.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : token.inc
<?php /** * @file * Provide a global context to allow for token support. */ $plugin = array( 'title' => t('Token'), 'description' => t('A context that contains token replacements from token.module.'), 'context' => 'ctools_context_create_token', // func to create context 'context name' => 'token', 'keyword' => 'token', 'convert list' => 'ctools_context_token_convert_list', 'convert' => 'ctools_context_token_convert', ); /** * Create a context from manual configuration. */ function ctools_context_create_token($empty, $data = NULL, $conf = FALSE) { $context = new ctools_context('token'); $context->plugin = 'token'; return $context; } /** * Implementation of hook_ctools_context_convert_list(). */ function ctools_context_token_convert_list() { $tokens = token_info(); foreach ($tokens['types'] as $type => $type_info) { if (empty($type_info['needs-data'])) { $real_type = isset($type_info['type']) ? $type_info['type'] : $type; foreach ($tokens['tokens'][$real_type] as $id => $info) { $key = "$type:$id"; if (!isset($list[$key])) { $list[$key] = $type_info['name'] . ': ' . $info['name']; } } } } return $list; } /** * Implementation of hook_ctools_context_converter_alter(). */ function ctools_context_token_convert($context, $token) { $tokens = token_info(); list($type, $token) = explode(':', $token, 2); $parts = explode(':', $token, 2); $real_type = isset($tokens['types'][$type]['type']) ? $tokens['types'][$type]['type'] : $type; if (isset($tokens['tokens'][$real_type][$parts[0]])) { $values = token_generate($type, array($token => $token)); if (isset($values[$token])) { return $values[$token]; } } }
Close