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 /
core /
Command /
User /
Delete
Unzip
Name
Size
Permission
Date
Action
Add.php
5.42
KB
-rw-r--r--
2018-04-19 18:15
Delete.php
2.29
KB
-rw-r--r--
2018-04-19 18:15
Disable.php
1.78
KB
-rw-r--r--
2018-04-19 18:15
Enable.php
1.77
KB
-rw-r--r--
2018-04-19 18:15
Inactive.php
2.46
KB
-rw-r--r--
2018-04-19 18:15
LastSeen.php
2.14
KB
-rw-r--r--
2018-04-19 18:15
ListUserGroups.php
2.05
KB
-rw-r--r--
2018-04-19 18:15
ListUsers.php
1.91
KB
-rw-r--r--
2018-04-19 18:15
Modify.php
3.88
KB
-rw-r--r--
2018-04-19 18:15
Report.php
2.51
KB
-rw-r--r--
2018-04-19 18:15
ResetPassword.php
3.95
KB
-rw-r--r--
2018-04-19 18:15
Setting.php
6.83
KB
-rw-r--r--
2018-04-19 18:15
SyncBackend.php
12.74
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Andreas Fischer <bantu@owncloud.com> * @author Christopher Schäpers <kondou@ts.unde.re> * @author Clark Tomlinson <fallen013@gmail.com> * @author Joas Schilling <coding@schilljs.com> * @author Laurens Post <lkpost@scept.re> * @author Morris Jobke <hey@morrisjobke.de> * @author Thomas Müller <thomas.mueller@tmit.eu> * * @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\Core\Command\User; use OCP\IUserManager; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\Question; class ResetPassword extends Command { /** @var IUserManager */ protected $userManager; public function __construct(IUserManager $userManager) { $this->userManager = $userManager; parent::__construct(); } protected function configure() { $this ->setName('user:resetpassword') ->setDescription('Resets the password of the named user.') ->addArgument( 'user', InputArgument::REQUIRED, 'The user\'s name.' ) ->addOption( 'password-from-env', null, InputOption::VALUE_NONE, 'Read the password from the OC_PASS environment variable.' ) ; } protected function execute(InputInterface $input, OutputInterface $output) { $username = $input->getArgument('user'); /** @var $user \OCP\IUser */ $user = $this->userManager->get($username); if (is_null($user)) { $output->writeln('<error>User does not exist</error>'); return 1; } if ($input->getOption('password-from-env')) { $password = getenv('OC_PASS'); if (!$password) { $output->writeln('<error>--password-from-env given, but OC_PASS is empty!</error>'); return 1; } } elseif ($input->isInteractive()) { /** @var $dialog \Symfony\Component\Console\Helper\QuestionHelper */ $dialog = $this->getHelperSet()->get('question'); if (\OCP\App::isEnabled('encryption')) { $output->writeln( '<error>Warning: Resetting the password when using encryption will result in data loss!</error>' ); if (!$dialog->ask($input, $output, new Question('<question>Do you want to continue?</question>', true))) { return 1; } } $q = new Question('<question>Enter a new password: </question>', false); $q->setHidden(true); $password = $dialog->ask($input, $output, $q); if ($password === false) { // When user presses RETURN key or no password characters are entered, // $password gets a boolean value false. $output->writeln("<error>Password cannot be empty!</error>"); return 1; } $q = new Question('<question>Confirm the new password: </question>', false); $q->setHidden(true); $confirm = $dialog->ask($input, $output, $q); if ($password !== $confirm) { $output->writeln("<error>Passwords did not match!</error>"); return 1; } } else { $output->writeln("<error>Interactive input or --password-from-env is needed for entering a new password!</error>"); return 1; } $success = $user->setPassword($password); if ($success) { $output->writeln("<info>Successfully reset password for " . $username . "</info>"); } else { $output->writeln("<error>Error while resetting password!</error>"); return 1; } } }