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 /
apps /
files /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
templates
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
app.js
8.69
KB
-rw-r--r--
2018-04-19 18:15
breadcrumb.js
7.03
KB
-rw-r--r--
2018-04-19 18:15
detailfileinfoview.js
981
B
-rw-r--r--
2018-04-19 18:15
detailsview.js
6.81
KB
-rw-r--r--
2018-04-19 18:15
detailtabview.js
2.07
KB
-rw-r--r--
2018-04-19 18:15
favoritesfilelist.js
2.62
KB
-rw-r--r--
2018-04-19 18:15
favoritesplugin.js
3.33
KB
-rw-r--r--
2018-04-19 18:15
file-upload.js
35.51
KB
-rw-r--r--
2018-04-19 18:15
fileactions.js
22.4
KB
-rw-r--r--
2018-04-19 18:15
fileactionsmenu.js
3.72
KB
-rw-r--r--
2018-04-19 18:15
fileinfomodel.js
3.11
KB
-rw-r--r--
2018-04-19 18:15
filelist.js
87.21
KB
-rw-r--r--
2018-04-19 18:15
files.js
14.21
KB
-rw-r--r--
2018-04-19 18:15
filesummary.js
8.19
KB
-rw-r--r--
2018-04-19 18:15
jquery-visibility.js
2.49
KB
-rw-r--r--
2018-04-19 18:15
jquery.fileupload.js
62.27
KB
-rw-r--r--
2018-04-19 18:15
keyboardshortcuts.js
4.65
KB
-rw-r--r--
2018-04-19 18:15
mainfileinfodetailview.js
8.1
KB
-rw-r--r--
2018-04-19 18:15
navigation.js
2.93
KB
-rw-r--r--
2018-04-19 18:15
newfilemenu.js
6.51
KB
-rw-r--r--
2018-04-19 18:15
search.js
5.63
KB
-rw-r--r--
2018-04-19 18:15
tagsplugin.js
7.04
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/*! * jquery-visibility v1.0.11 * Page visibility shim for jQuery. * * Project Website: http://mths.be/visibility * * @version 1.0.11 * @license MIT. * @author Mathias Bynens - @mathias * @author Jan Paepke - @janpaepke */ ;(function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(['jquery'], function ($) { return factory(root, $); }); } else if (typeof exports === 'object') { // Node/CommonJS module.exports = factory(root, require('jquery')); } else { // Browser globals factory(root, jQuery); } }(this, function(window, $, undefined) { "use strict"; var document = window.document, property, // property name of document, that stores page visibility vendorPrefixes = ['webkit', 'o', 'ms', 'moz', ''], $support = $.support || {}, // In Opera, `'onfocusin' in document == true`, hence the extra `hasFocus` check to detect IE-like behavior eventName = 'onfocusin' in document && 'hasFocus' in document ? 'focusin focusout' : 'focus blur'; var prefix; while ((prefix = vendorPrefixes.pop()) !== undefined) { property = (prefix ? prefix + 'H': 'h') + 'idden'; $support.pageVisibility = document[property] !== undefined; if ($support.pageVisibility) { eventName = prefix + 'visibilitychange'; break; } } // normalize to and update document hidden property function updateState() { if (property !== 'hidden') { document.hidden = $support.pageVisibility ? document[property] : undefined; } } updateState(); $(/blur$/.test(eventName) ? window : document).on(eventName, function(event) { var type = event.type; var originalEvent = event.originalEvent; // Avoid errors from triggered native events for which `originalEvent` is // not available. if (!originalEvent) { return; } var toElement = originalEvent.toElement; // If it’s a `{focusin,focusout}` event (IE), `fromElement` and `toElement` // should both be `null` or `undefined`; else, the page visibility hasn’t // changed, but the user just clicked somewhere in the doc. In IE9, we need // to check the `relatedTarget` property instead. if ( !/^focus./.test(type) || ( toElement === undefined && originalEvent.fromElement === undefined && originalEvent.relatedTarget === undefined ) ) { $(document).triggerHandler( property && document[property] || /^(?:blur|focusout)$/.test(type) ? 'hide' : 'show' ); } // and update the current state updateState(); }); }));