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 /
wiki.bernardino.org /
resources /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
jquery
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
jquery.tipsy
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.action
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.language
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.legacy
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.less
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.libs
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.messagePoster
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.router
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.skinning
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.special
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.toolbar
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.ui
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.widgets
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mediawiki.widgets.datetime
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
dom-level2-skip.js
159
B
-rw-r--r--
2016-11-28 20:20
es5-skip.js
697
B
-rw-r--r--
2016-11-28 20:20
json-skip.js
97
B
-rw-r--r--
2016-11-28 20:20
mediawiki.hidpi-skip.js
80
B
-rw-r--r--
2016-11-28 20:20
moment-dmy.js
517
B
-rw-r--r--
2016-11-28 20:20
moment-global.js
72
B
-rw-r--r--
2016-11-28 20:20
moment-locale-overrides.js
1.5
KB
-rw-r--r--
2016-11-28 20:20
oojs-global.js
68
B
-rw-r--r--
2016-11-28 20:20
oojs-ui-local.css
349
B
-rw-r--r--
2016-11-28 20:20
oojs-ui-local.js
177
B
-rw-r--r--
2016-11-28 20:20
polyfill-nodeTypes.js
556
B
-rw-r--r--
2016-11-28 20:20
polyfill-object-create.js
1.74
KB
-rw-r--r--
2016-11-28 20:20
startup.js
3.56
KB
-rw-r--r--
2016-11-28 20:20
Save
Rename
/** * Simplified version of es5-sham#Object-create that also works around a bug * in the actual es5-sham: https://github.com/es-shims/es5-shim/issues/252 * * Does not: * - Support empty inheritance via `Object.create(null)`. * - Support getter and setter accessors via `Object.create( .., properties )`. * - Support custom property descriptor (e.g. writable, configurtable, enumerable). * - Leave behind an enumerable "__proto__" all over the place. * * @author Timo Tijhof, 2014 */ // ES5 15.2.3.5 // http://es5.github.com/#x15.2.3.5 if ( !Object.create ) { ( function () { var hasOwn = Object.hasOwnProperty, // https://developer.mozilla.org/en-US/docs/ECMAScript_DontEnum_attribute#JScript_DontEnum_Bug // http://whattheheadsaid.com/2010/10/a-safer-object-keys-compatibility-implementation isEnumBug = !{ valueOf: 0 }.propertyIsEnumerable( 'valueOf' ); // Reusable constructor function for Object.create function Empty() {} function defineProperty( object, key, property ) { if ( hasOwn.call( property, 'value' ) ) { object[ key ] = property.value; } else { object[ key ] = property; } } Object.create = function create( prototype, properties ) { var object, key; if ( prototype !== Object( prototype ) ) { throw new TypeError( 'Called on non-object' ); } Empty.prototype = prototype; object = new Empty(); if ( properties !== undefined ) { if ( !isEnumBug ) { for ( key in properties ) { if ( hasOwn.call( properties, key ) ) { defineProperty( object, key, properties[ key ] ); } } } else { Object.keys( properties ).forEach( function ( key ) { defineProperty( object, key, properties[ key ] ); } ); } } return object; }; }() ); }