Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
js /
vendor /
jquery /
Delete
Unzip
Name
Size
Permission
Date
Action
MIT-LICENSE.txt
1.07
KB
-rw-r--r--
2021-02-05 18:25
additional-methods.js
50.81
KB
-rw-r--r--
2021-02-05 18:25
jquery-migrate.js
18.64
KB
-rw-r--r--
2021-02-05 18:25
jquery-ui-timepicker-addon.js
76.64
KB
-rw-r--r--
2021-02-05 18:25
jquery-ui.min.js
247.74
KB
-rw-r--r--
2021-02-05 18:25
jquery.ba-hashchange-1.3.js
16.13
KB
-rw-r--r--
2021-02-05 18:25
jquery.debounce-1.0.5.js
1.14
KB
-rw-r--r--
2021-02-05 18:25
jquery.event.drag-2.2.js
12.53
KB
-rw-r--r--
2021-02-05 18:25
jquery.fullscreen.js
5.52
KB
-rw-r--r--
2021-02-05 18:25
jquery.md5.js
9.35
KB
-rw-r--r--
2021-02-05 18:25
jquery.min.js
86.08
KB
-rw-r--r--
2021-02-05 18:25
jquery.min.map
133.2
KB
-rw-r--r--
2021-02-05 18:25
jquery.mousewheel.js
8.07
KB
-rw-r--r--
2021-02-05 18:25
jquery.sortableTable.js
8.01
KB
-rw-r--r--
2021-02-05 18:25
jquery.svg.js
55.32
KB
-rw-r--r--
2021-02-05 18:25
jquery.tablesorter.js
39.16
KB
-rw-r--r--
2021-02-05 18:25
jquery.uitablefilter.js
3.4
KB
-rw-r--r--
2021-02-05 18:25
jquery.validate.js
49.5
KB
-rw-r--r--
2021-02-05 18:25
Save
Rename
/** * 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);