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\ICertificateManager; use OCP\Settings\ISettings; use OCP\Template; use OCP\IConfig; use OCP\IURLGenerator; class Certificates implements ISettings { /** @var IConfig */ protected $config; /** @var ICertificateManager */ protected $certificateManager; /** @var IURLGenerator */ protected $urlGenerator; public function __construct(IConfig $config, IURLGenerator $urlGenerator, ICertificateManager $certificateManager) { $this->config = $config; $this->urlGenerator = $urlGenerator; $this->certificateManager = $certificateManager; } public function getPriority() { return 0; } public function getPanel() { if ($this->config->getSystemValue('enable_certificate_management', false)) { $tmpl = new Template('settings', 'panels/admin/certificates'); $tmpl->assign('type', 'admin'); $tmpl->assign('uploadRoute', 'settings.Certificate.addSystemRootCertificate'); $tmpl->assign('certs', $this->certificateManager->listCertificates()); $tmpl->assign('urlGenerator', $this->urlGenerator); return $tmpl; } else { return null; } } public function getSectionID() { return 'general'; } }