Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
core /
vendor /
jquery /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
attributes
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
core
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
css
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
data
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
effects
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
event
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
exports
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
manipulation
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
queue
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
sizzle
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
traversing
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
var
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
ajax.js
20.67
KB
-rw-r--r--
2018-04-19 18:15
attributes.js
200
B
-rw-r--r--
2018-04-19 18:15
callbacks.js
5.38
KB
-rw-r--r--
2018-04-19 18:15
core.js
11.51
KB
-rw-r--r--
2018-04-19 18:15
css.js
12.06
KB
-rw-r--r--
2018-04-19 18:15
data.js
4.83
KB
-rw-r--r--
2018-04-19 18:15
deferred.js
4.31
KB
-rw-r--r--
2018-04-19 18:15
deprecated.js
223
B
-rw-r--r--
2018-04-19 18:15
dimensions.js
1.73
KB
-rw-r--r--
2018-04-19 18:15
effects.js
16.52
KB
-rw-r--r--
2018-04-19 18:15
event.js
23.9
KB
-rw-r--r--
2018-04-19 18:15
intro.js
1.36
KB
-rw-r--r--
2018-04-19 18:15
jquery.js
574
B
-rw-r--r--
2018-04-19 18:15
manipulation.js
14.69
KB
-rw-r--r--
2018-04-19 18:15
offset.js
5.46
KB
-rw-r--r--
2018-04-19 18:15
outro.js
5
B
-rw-r--r--
2018-04-19 18:15
queue.js
2.99
KB
-rw-r--r--
2018-04-19 18:15
selector-native.js
4.33
KB
-rw-r--r--
2018-04-19 18:15
selector-sizzle.js
294
B
-rw-r--r--
2018-04-19 18:15
selector.js
33
B
-rw-r--r--
2018-04-19 18:15
serialize.js
3.14
KB
-rw-r--r--
2018-04-19 18:15
traversing.js
4.43
KB
-rw-r--r--
2018-04-19 18:15
wrap.js
1.46
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
define([ "./core", "./manipulation/var/rcheckableType", "./core/init", "./traversing", // filter "./attributes/prop" ], function( jQuery, rcheckableType ) { var r20 = /%20/g, 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 ( jQuery.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" ? i : "" ) + "]", v, traditional, add ); } }); } else if ( !traditional && jQuery.type( 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, value ) { // If value is a function, invoke it and return its value value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); }; // Set traditional to true for jQuery <= 1.3.2 behavior. if ( traditional === undefined ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; } // If an array was passed in, assume that it is an array of form elements. if ( jQuery.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( "&" ).replace( r20, "+" ); }; 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(); return val == null ? null : jQuery.isArray( val ) ? jQuery.map( val, function( val ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }) : { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }).get(); } }); return jQuery; });