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.118.144.239
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 : user.info.inc
<?php /** * @file * Provides info about the user entity. */ /** * Implements hook_entity_property_info() on top of user module. * * @see entity_entity_property_info() */ function entity_metadata_user_entity_property_info() { $info = array(); // Add meta-data about the user properties. $properties = &$info['user']['properties']; $properties['uid'] = array( 'label' => t("User ID"), 'type' => 'integer', 'description' => t("The unique ID of the user account."), 'schema field' => 'uid', ); $properties['name'] = array( 'label' => t("Name"), 'description' => t("The login name of the user account."), 'getter callback' => 'entity_metadata_user_get_properties', 'setter callback' => 'entity_property_verbatim_set', 'sanitize' => 'filter_xss', 'required' => TRUE, 'access callback' => 'entity_metadata_user_properties_access', 'schema field' => 'name', ); $properties['mail'] = array( 'label' => t("Email"), 'description' => t("The email address of the user account."), 'setter callback' => 'entity_property_verbatim_set', 'validation callback' => 'valid_email_address', 'required' => TRUE, 'access callback' => 'entity_metadata_user_properties_access', 'schema field' => 'mail', ); $properties['url'] = array( 'label' => t("URL"), 'description' => t("The URL of the account profile page."), 'getter callback' => 'entity_metadata_user_get_properties', 'type' => 'uri', 'computed' => TRUE, ); $properties['edit_url'] = array( 'label' => t("Edit URL"), 'description' => t("The url of the account edit page."), 'getter callback' => 'entity_metadata_user_get_properties', 'type' => 'uri', 'computed' => TRUE, ); $properties['last_access'] = array( 'label' => t("Last access"), 'description' => t("The date the user last accessed the site."), 'getter callback' => 'entity_metadata_user_get_properties', 'type' => 'date', 'access callback' => 'entity_metadata_user_properties_access', 'schema field' => 'access', ); $properties['last_login'] = array( 'label' => t("Last login"), 'description' => t("The date the user last logged in to the site."), 'getter callback' => 'entity_metadata_user_get_properties', 'type' => 'date', 'access callback' => 'entity_metadata_user_properties_access', 'schema field' => 'login', ); $properties['created'] = array( 'label' => t("Created"), 'description' => t("The date the user account was created."), 'type' => 'date', 'schema field' => 'created', 'setter permission' => 'administer users', ); $properties['roles'] = array( 'label' => t("User roles"), 'description' => t("The roles of the user."), 'type' => 'list<integer>', 'getter callback' => 'entity_metadata_user_get_properties', 'setter callback' => 'entity_metadata_user_set_properties', 'options list' => 'entity_metadata_user_roles', 'access callback' => 'entity_metadata_user_properties_access', ); $properties['status'] = array( 'label' => t("Status"), 'description' => t("Whether the user is active or blocked."), 'setter callback' => 'entity_property_verbatim_set', // Although the status is expected to be boolean, its schema suggests // it is an integer, so we follow the schema definition. 'type' => 'integer', 'options list' => 'entity_metadata_user_status_options_list', 'access callback' => 'entity_metadata_user_properties_access', 'schema field' => 'status', ); $properties['theme'] = array( 'label' => t("Default theme"), 'description' => t("The user's default theme."), 'getter callback' => 'entity_metadata_user_get_properties', 'setter callback' => 'entity_property_verbatim_set', 'access callback' => 'entity_metadata_user_properties_access', 'schema field' => 'theme', ); return $info; }
Close