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 /
encryption /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
encryption.js
816
B
-rw-r--r--
2018-04-19 18:15
settings-admin.js
5.6
KB
-rw-r--r--
2018-04-19 18:15
settings-personal.js
2.36
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/** * Copyright (c) 2014 * Bjoern Schiessle <schiessle@owncloud.com> * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ /** * @namespace * @memberOf OC */ OC.Encryption = _.extend(OC.Encryption || {}, { displayEncryptionWarning: function () { if (!OC.currentUser || !OC.Notification.isHidden()) { return; } $.get( OC.generateUrl('/apps/encryption/ajax/getStatus'), function (result) { if (result.status === "interactionNeeded") { OC.Notification.show(result.data.message); } } ); } }); $(document).ready(function() { // wait for other apps/extensions to register their event handlers and file actions // in the "ready" clause _.defer(function() { OC.Encryption.displayEncryptionWarning(); }); });