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 /
unp_probe /
node_modules /
jquery /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
attributes
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
core
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
css
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
data
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
deferred
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
effects
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
event
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
exports
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
manipulation
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
queue
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
traversing
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
var
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.eslintrc.json
96
B
-rw-r--r--
1985-10-26 08:15
ajax.js
21.94
KB
-rw-r--r--
1985-10-26 08:15
attributes.js
217
B
-rw-r--r--
1985-10-26 08:15
callbacks.js
5.42
KB
-rw-r--r--
1985-10-26 08:15
core.js
8.95
KB
-rw-r--r--
1985-10-26 08:15
css.js
13.5
KB
-rw-r--r--
1985-10-26 08:15
data.js
4.22
KB
-rw-r--r--
1985-10-26 08:15
deferred.js
10.74
KB
-rw-r--r--
1985-10-26 08:15
deprecated.js
2.41
KB
-rw-r--r--
1985-10-26 08:15
dimensions.js
1.71
KB
-rw-r--r--
1985-10-26 08:15
effects.js
17.05
KB
-rw-r--r--
1985-10-26 08:15
event.js
23.67
KB
-rw-r--r--
1985-10-26 08:15
jquery.js
622
B
-rw-r--r--
1985-10-26 08:15
manipulation.js
12.35
KB
-rw-r--r--
1985-10-26 08:15
offset.js
6.71
KB
-rw-r--r--
1985-10-26 08:15
queue.js
3.02
KB
-rw-r--r--
1985-10-26 08:15
selector-native.js
6.24
KB
-rw-r--r--
1985-10-26 08:15
selector-sizzle.js
411
B
-rw-r--r--
1985-10-26 08:15
selector.js
66
B
-rw-r--r--
1985-10-26 08:15
serialize.js
3.17
KB
-rw-r--r--
1985-10-26 08:15
traversing.js
4.39
KB
-rw-r--r--
1985-10-26 08:15
wrap.js
1.44
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
define( [ "./core", "./core/toType", "./var/rcheckableType", "./var/isFunction", "./core/init", "./traversing", // filter "./attributes/prop" ], function( jQuery, toType, rcheckableType, isFunction ) { "use strict"; var rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; function buildParams( prefix, obj, traditional, add ) { var name; if ( Array.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", v, traditional, add ); } } ); } else if ( !traditional && toType( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } // Serialize an array of form elements or a set of // key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, valueOrFunction ) { // If value is a function, invoke it and use its return value var value = isFunction( valueOrFunction ) ? valueOrFunction() : valueOrFunction; s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value == null ? "" : value ); }; if ( a == null ) { return ""; } // If an array was passed in, assume that it is an array of form elements. if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); } ); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ); }; jQuery.fn.extend( { serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map( function() { // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; } ) .filter( function() { var type = this.type; // Use .is( ":disabled" ) so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) ); } ) .map( function( i, elem ) { var val = jQuery( this ).val(); if ( val == null ) { return null; } if ( Array.isArray( val ) ) { return jQuery.map( val, function( val ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ); } return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ).get(); } } ); return jQuery; } );