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 | : 18.216.167.229
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 /
views /
modules /
profile /
[ HOME SHELL ]
Name
Size
Permission
Action
views_handler_field_profile_da...
2.26
KB
-rw-r--r--
views_handler_field_profile_li...
1012
B
-rw-r--r--
views_handler_filter_profile_s...
678
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views_handler_field_profile_list.inc
<?php /** * @file * Definition of views_handler_field_profile_list. */ /** * Field handler display a profile list item. * * @ingroup views_field_handlers */ class views_handler_field_profile_list extends views_handler_field_prerender_list { /** * Break up our field into a proper list. */ function pre_render(&$values) { $this->items = array(); foreach ($values as $value) { $field = $this->get_value($value); $this->items[$field] = array(); foreach (preg_split("/[,\n\r]/", $field) as $item) { if ($item != '' && $item !== NULL) { $this->items[$field][] = array('item' => $item); } } } } function render_item($count, $item) { return $item['item']; } function document_self_tokens(&$tokens) { $tokens['[' . $this->options['id'] . '-item' . ']'] = t('The text of the profile item.'); } function add_self_tokens(&$tokens, $item) { $tokens['[' . $this->options['id'] . '-item' . ']'] = $item['item']; } }
Close