Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
jquery /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax
[ DIR ]
drwxr-xr-x
2022-04-21 14:35
attributes
[ DIR ]
drwxr-xr-x
2022-04-21 14:32
core
[ DIR ]
drwxr-xr-x
2022-04-21 14:35
css
[ DIR ]
drwxr-xr-x
2022-04-21 14:35
data
[ DIR ]
drwxr-xr-x
2022-04-21 14:35
deferred
[ DIR ]
drwxr-xr-x
2022-04-21 14:32
effects
[ DIR ]
drwxr-xr-x
2022-04-21 14:32
event
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
exports
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
manipulation
[ DIR ]
drwxr-xr-x
2022-04-21 14:35
queue
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
traversing
[ DIR ]
drwxr-xr-x
2022-04-21 14:35
var
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
.eslintrc.json
156
B
-rw-r--r--
2022-04-21 14:29
ajax.js
21.94
KB
-rw-r--r--
2022-04-21 14:29
attributes.js
217
B
-rw-r--r--
2022-04-21 14:29
callbacks.js
5.42
KB
-rw-r--r--
2022-04-21 14:29
core.js
8.95
KB
-rw-r--r--
2022-04-21 14:29
css.js
13.5
KB
-rw-r--r--
2022-04-21 14:29
data.js
4.22
KB
-rw-r--r--
2022-04-21 14:29
deferred.js
10.74
KB
-rw-r--r--
2022-04-21 14:29
deprecated.js
2.41
KB
-rw-r--r--
2022-04-21 14:29
dimensions.js
1.71
KB
-rw-r--r--
2022-04-21 14:29
effects.js
17.05
KB
-rw-r--r--
2022-04-21 14:29
event.js
23.94
KB
-rw-r--r--
2022-04-21 14:29
jquery.js
622
B
-rw-r--r--
2022-04-21 14:29
manipulation.js
12.35
KB
-rw-r--r--
2022-04-21 14:29
offset.js
6.71
KB
-rw-r--r--
2022-04-21 14:29
queue.js
3.02
KB
-rw-r--r--
2022-04-21 14:29
selector-native.js
6.24
KB
-rw-r--r--
2022-04-21 14:29
selector-sizzle.js
411
B
-rw-r--r--
2022-04-21 14:29
selector.js
66
B
-rw-r--r--
2022-04-21 14:29
serialize.js
3.17
KB
-rw-r--r--
2022-04-21 14:29
traversing.js
4.39
KB
-rw-r--r--
2022-04-21 14:29
wrap.js
1.44
KB
-rw-r--r--
2022-04-21 14:29
Save
Rename
define( [ "./core", "./core/nodeName", "./core/camelCase", "./core/toType", "./var/isFunction", "./var/isWindow", "./var/slice", "./event/alias" ], function( jQuery, nodeName, camelCase, toType, isFunction, isWindow, slice ) { "use strict"; jQuery.fn.extend( { bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, undelegate: function( selector, types, fn ) { // ( namespace ) or ( selector, types [, fn] ) return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); } } ); // Bind a function to a context, optionally partially applying any // arguments. // jQuery.proxy is deprecated to promote standards (specifically Function#bind) // However, it is not slated for removal any time soon jQuery.proxy = function( fn, context ) { var tmp, args, proxy; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !isFunction( fn ) ) { return undefined; } // Simulated bind args = slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }; jQuery.holdReady = function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }; jQuery.isArray = Array.isArray; jQuery.parseJSON = JSON.parse; jQuery.nodeName = nodeName; jQuery.isFunction = isFunction; jQuery.isWindow = isWindow; jQuery.camelCase = camelCase; jQuery.type = toType; jQuery.now = Date.now; jQuery.isNumeric = function( obj ) { // As of jQuery 3.0, isNumeric is limited to // strings and numbers (primitives or objects) // that can be coerced to finite numbers (gh-2662) var type = jQuery.type( obj ); return ( type === "number" || type === "string" ) && // parseFloat NaNs numeric-cast false positives ("") // ...but misinterprets leading-number strings, particularly hex literals ("0x...") // subtraction forces infinities to NaN !isNaN( obj - parseFloat( obj ) ); }; } );