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 /
settings /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
panels
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
users
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
admin-apps.js
20.05
KB
-rw-r--r--
2018-04-19 18:15
admin.js
3.51
KB
-rw-r--r--
2018-04-19 18:15
certificates.js
2.25
KB
-rw-r--r--
2018-04-19 18:15
log.js
1.18
KB
-rw-r--r--
2018-04-19 18:15
personal.js
2.19
KB
-rw-r--r--
2018-04-19 18:15
settings.js
2.68
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/** * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> * 2013, Morris Jobke <morris.jobke@gmail.com> * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ /** * The callback will be fired as soon as enter is pressed by the * user or 1 second after the last data entry * * @param callback * @param allowEmptyValue if this is set to true the callback is also called when the value is empty */ jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) { var cb = callback; var that = this; this.on('input', _.debounce(function (event) { // enter is already handled in keypress if (event.keyCode === 13) { return; } if (allowEmptyValue || that.val() !== '') { cb(); } }, 1000)); this.keypress(function (event) { if (event.keyCode === 13 && (allowEmptyValue || that.val() !== '')) { event.preventDefault(); cb(); } }); }; /** * The callback will be fired as soon as enter is pressed by the user * * @param callback * @param allowEmptyValue if this is set to true the callback is also called when the value is empty */ jQuery.fn.enter = function (callback, allowEmptyValue) { var cb = callback; var that = this; this.keypress(function (event) { if (event.keyCode === 13 && (allowEmptyValue || that.val !== '')) { event.preventDefault(); cb(); } }); this.bind('paste', null, function (e) { if(!e.keyCode){ if (allowEmptyValue || that.val() !== '') { cb(); } } }); }; $(document).ready(function () { // 'redirect' to anchor sections // anchors are lost on redirects (e.g. while solving the 2fa challenge) otherwise // example: /settings/personal?section=devices will result in /settings/personal?#devices if (!window.location.hash) { var query = OC.parseQueryString(location.search); if (query && query.section) { OC.Util.History.replaceState({}); window.location.hash = query.section; } } else { if(window.location.hash === '#apppasswords' && window.location.pathname === '/settings/personal') { // Handle old apppasswords links from desktop apps OC.redirect(OC.generateUrl('/settings/personal?sectionid=security#apppasswords')); } } });