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.222.161.119
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 /
field /
modules /
text /
[ HOME SHELL ]
Name
Size
Permission
Action
text.info
290
B
-rw-r--r--
text.install
2.09
KB
-rw-r--r--
text.js
1.74
KB
-rw-r--r--
text.module
20.39
KB
-rw-r--r--
text.test
18.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : text.install
<?php /** * @file * Install, update and uninstall functions for the text module. */ /** * Implements hook_field_schema(). */ function text_field_schema($field) { switch ($field['type']) { case 'text': $columns = array( 'value' => array( 'type' => 'varchar', 'length' => $field['settings']['max_length'], 'not null' => FALSE, ), ); break; case 'text_long': $columns = array( 'value' => array( 'type' => 'text', 'size' => 'big', 'not null' => FALSE, ), ); break; case 'text_with_summary': $columns = array( 'value' => array( 'type' => 'text', 'size' => 'big', 'not null' => FALSE, ), 'summary' => array( 'type' => 'text', 'size' => 'big', 'not null' => FALSE, ), ); break; } $columns += array( 'format' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), ); return array( 'columns' => $columns, 'indexes' => array( 'format' => array('format'), ), 'foreign keys' => array( 'format' => array( 'table' => 'filter_format', 'columns' => array('format' => 'format'), ), ), ); } /** * Change text field 'format' columns into varchar. */ function text_update_7000() { $spec = array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ); $fields = _update_7000_field_read_fields(array( 'module' => 'text', 'storage_type' => 'field_sql_storage', )); foreach ($fields as $field) { if ($field['deleted']) { $table = "field_deleted_data_{$field['id']}"; $revision_table = "field_deleted_revision_{$field['id']}"; } else { $table = "field_data_{$field['field_name']}"; $revision_table = "field_revision_{$field['field_name']}"; } $column = $field['field_name'] . '_' . 'format'; db_change_field($table, $column, $column, $spec); db_change_field($revision_table, $column, $column, $spec); } }
Close