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.15.92.58
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 /
profile /
[ HOME SHELL ]
Name
Size
Permission
Action
profile-block.tpl.php
1.33
KB
-rw-r--r--
profile-listing.tpl.php
1.61
KB
-rw-r--r--
profile-wrapper.tpl.php
819
B
-rw-r--r--
profile.admin.inc
17.7
KB
-rw-r--r--
profile.css
168
B
-rw-r--r--
profile.info
574
B
-rw-r--r--
profile.install
4.76
KB
-rw-r--r--
profile.js
2.63
KB
-rw-r--r--
profile.module
22.51
KB
-rw-r--r--
profile.pages.inc
4.41
KB
-rw-r--r--
profile.test
18.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : profile.js
(function ($) { /** * Add functionality to the profile drag and drop table. * * This behavior is dependent on the tableDrag behavior, since it uses the * objects initialized in that behavior to update the row. It shows and hides * a warning message when removing the last field from a profile category. */ Drupal.behaviors.profileDrag = { attach: function (context, settings) { var table = $('#profile-fields'); var tableDrag = Drupal.tableDrag['profile-fields']; // Get the profile tableDrag object. // Add a handler for when a row is swapped, update empty categories. tableDrag.row.prototype.onSwap = function (swappedRow) { var rowObject = this; $('tr.category-message', table).each(function () { // If the dragged row is in this category, but above the message row, swap it down one space. if ($(this).prev('tr').get(0) == rowObject.element) { // Prevent a recursion problem when using the keyboard to move rows up. if ((rowObject.method != 'keyboard' || rowObject.direction == 'down')) { rowObject.swap('after', this); } } // This category has become empty if ($(this).next('tr').is(':not(.draggable)') || $(this).next('tr').length == 0) { $(this).removeClass('category-populated').addClass('category-empty'); } // This category has become populated. else if ($(this).is('.category-empty')) { $(this).removeClass('category-empty').addClass('category-populated'); } }); }; // Add a handler so when a row is dropped, update fields dropped into new categories. tableDrag.onDrop = function () { dragObject = this; if ($(dragObject.rowObject.element).prev('tr').is('.category-message')) { var categoryRow = $(dragObject.rowObject.element).prev('tr').get(0); var categoryNum = categoryRow.className.replace(/([^ ]+[ ]+)*category-([^ ]+)-message([ ]+[^ ]+)*/, '$2'); var categoryField = $('select.profile-category', dragObject.rowObject.element); var weightField = $('select.profile-weight', dragObject.rowObject.element); var oldcategoryNum = weightField[0].className.replace(/([^ ]+[ ]+)*profile-weight-([^ ]+)([ ]+[^ ]+)*/, '$2'); if (!categoryField.is('.profile-category-' + categoryNum)) { categoryField.removeClass('profile-category-' + oldcategoryNum).addClass('profile-category-' + categoryNum); weightField.removeClass('profile-weight-' + oldcategoryNum).addClass('profile-weight-' + categoryNum); categoryField.val(categoryField[0].options[categoryNum].value); } } }; } }; })(jQuery);
Close