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 /
www /
plugins /
system /
bluejoomla /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
bootstrap.min.js
28.74
KB
-rw----r--
dropline.js
2.01
KB
-rw----r--
fitvids.js
2.13
KB
-rw----r--
index.html
44
B
-rw----r--
jquery-noconflict.js
266
B
-rw----r--
jquery.isotope.min.js
15.58
KB
-rw----r--
jquery.min.js
91.44
KB
-rw----r--
jquery.themepunch.revolution.m...
107.7
KB
-rw----r--
jquery.themepunch.tools.min.js
92.79
KB
-rw----r--
menu.js
12.13
KB
-rw----r--
mobilemenu.js
2.63
KB
-rw----r--
modernizr-2.6.2.min.js
15.05
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
respond.min.js
3.95
KB
-rw----r--
selectivizr-min.js
4.72
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mobilemenu.js
/** * jQuery Mobile Menu * Turn unordered list menu into dropdown select menu * version 1.0(31-OCT-2011) * * Built on top of the jQuery library * http://jquery.com * * Documentation * http://github.com/mambows/mobilemenu */ ; (function ($) { $.fn.mobileMenu = function (options) { var defaults = { defaultText: 'Navigate to...', className: 'select-menu', subMenuClass: 'menu-item', subMenuDash: '-', appendTo: '#sp-mmenu' }, settings = $.extend(defaults, options), el = $(this); mobileMenu = $(settings.appendTo); this.each(function () { // ad class to submenu list el.find('ul').addClass(settings.subMenuClass); // Create base menu $('<select />', { 'class': settings.className }).appendTo(mobileMenu); // Create default option $('<option />', { "value": '#', "text": settings.defaultText }).appendTo('.' + settings.className); // Create select option from menu el.find('a').each(function () { var $this = $(this), optText = ' ' + $this.find('span.menu-title').text(), optSub = $this.parents('.' + settings.subMenuClass), len = optSub.length, dash; // if menu has sub menu if ($this.parents('ul').hasClass(settings.subMenuClass)) { dash = Array(len + 1).join(settings.subMenuDash); optText = dash + optText; } // Now build menu and append it $('<option />', { "value": this.href, "html": optText, "selected": (this.href == window.location.href) }).appendTo('.' + settings.className); }); // End el.find('a').each // Change event on select element $('.' + settings.className).change(function () { var locations = $(this).val(); if (locations !== '#') { window.location.href = $(this).val(); }; }); }); // End this.each return this; }; })(jQuery);
Close