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 /
updater /
app /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
container.php
4.95
KB
-rw-r--r--
2018-04-19 18:16
Save
Rename
<?php /** * @author Victor Dubiniuk <dubiniuk@owncloud.com> * * @copyright Copyright (c) 2015, ownCloud, Inc. * @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/> * */ use Pimple\Container; use GuzzleHttp\Client; use Owncloud\Updater\Console\Application; use Owncloud\Updater\Utils\AppManager; use Owncloud\Updater\Utils\Checkpoint; use Owncloud\Updater\Utils\ConfigReader; use Owncloud\Updater\Utils\Fetcher; use Owncloud\Updater\Utils\FilesystemHelper; use Owncloud\Updater\Utils\Locator; use Owncloud\Updater\Utils\OccRunner; use Owncloud\Updater\Utils\Registry; use Owncloud\Updater\Command\BackupDataCommand; use Owncloud\Updater\Command\BackupDbCommand; use Owncloud\Updater\Command\CheckpointCommand; use Owncloud\Updater\Command\CheckSystemCommand; use Owncloud\Updater\Command\CleanCacheCommand; use Owncloud\Updater\Command\DetectCommand; use Owncloud\Updater\Command\ExecuteCoreUpgradeScriptsCommand; use Owncloud\Updater\Command\InfoCommand; use Owncloud\Updater\Command\MaintenanceModeCommand; use Owncloud\Updater\Command\PostUpgradeCleanupCommand; use Owncloud\Updater\Command\PostUpgradeRepairCommand; use Owncloud\Updater\Command\PreUpgradeRepairCommand; use Owncloud\Updater\Command\RestartWebServerCommand; use Owncloud\Updater\Command\UpdateConfigCommand; use Owncloud\Updater\Command\StartCommand; $c = new Container(); /* $c['parameters'] = [ 'locator.file' => 'locator.xml' ]; */ $c['guzzle.httpClient'] = function($c){ return new Client(); }; $c['utils.locator'] = function($c){ return new Locator(CURRENT_DIR); }; $c['utils.occrunner'] = function($c){ $disabled = explode(',', ini_get('disable_functions')); $isProcOpenEnabled = function_exists('proc_open') && !in_array('proc_open', $disabled); return new OccRunner($c['utils.locator'], $isProcOpenEnabled && IS_CLI); }; $c['utils.registry'] = function($c){ return new Registry(); }; $c['utils.appmanager'] = function($c){ return new AppManager($c['utils.occrunner']); }; $c['utils.filesystemhelper'] = function($c){ return new FilesystemHelper(); }; $c['utils.checkpoint'] = function($c){ return new Checkpoint($c['utils.locator'], $c['utils.filesystemhelper']); }; $c['utils.configReader'] = function($c){ return new ConfigReader($c['utils.occrunner']); }; $c['utils.fetcher'] = function($c){ return new Fetcher($c['guzzle.httpClient'], $c['utils.locator'], $c['utils.configReader']); }; $c['command.backupData'] = function($c){ return new BackupDataCommand(); }; $c['command.backupDb'] = function($c){ return new BackupDbCommand(); }; $c['command.checkpoint'] = function($c){ return new CheckpointCommand(); }; $c['command.checkSystem'] = function($c){ return new CheckSystemCommand(); }; $c['command.cleanCache'] = function($c){ return new CleanCacheCommand(); }; $c['command.detect'] = function($c){ return new DetectCommand($c['utils.fetcher'], $c['utils.configReader']); }; $c['command.executeCoreUpgradeScripts'] = function($c){ return new ExecuteCoreUpgradeScriptsCommand($c['utils.occrunner']); }; $c['command.info'] = function($c){ return new InfoCommand(); }; $c['command.maintenanceMode'] = function($c){ return new MaintenanceModeCommand($c['utils.occrunner']); }; $c['command.postUpgradeCleanup'] = function($c){ return new PostUpgradeCleanupCommand(); }; $c['command.postUpgradeRepair'] = function($c){ return new PostUpgradeRepairCommand(); }; $c['command.preUpgradeRepair'] = function($c){ return new PreUpgradeRepairCommand(); }; $c['command.restartWebServer'] = function($c){ return new RestartWebServerCommand(); }; $c['command.updateCoreConfig'] = function($c){ return new UpdateConfigCommand(); }; $c['command.start'] = function($c){ return new StartCommand(); }; $c['commands'] = function($c){ return [ $c['command.backupData'], $c['command.backupDb'], $c['command.checkpoint'], $c['command.checkSystem'], $c['command.cleanCache'], $c['command.detect'], $c['command.executeCoreUpgradeScripts'], $c['command.info'], $c['command.maintenanceMode'], $c['command.postUpgradeCleanup'], $c['command.postUpgradeRepair'], $c['command.preUpgradeRepair'], $c['command.restartWebServer'], $c['command.updateCoreConfig'], $c['command.start'], ]; }; $c['application'] = function($c){ $application = new Application('ownCloud updater', '1.0'); $application->setContainer($c); $application->addCommands($c['commands']); $application->setDefaultCommand($c['command.start']->getName()); return $application; }; return $c;