123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Bundle\SecurityBundle\Command;
- use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
- use Symfony\Component\Console\Input\InputArgument;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Output\OutputInterface;
- use Symfony\Component\Console\Question\Question;
- use Symfony\Component\Console\Style\SymfonyStyle;
- use Symfony\Component\Security\Core\Encoder\BCryptPasswordEncoder;
- /**
- * Encode a user's password.
- *
- * @author Sarah Khalil <mkhalil.sarah@gmail.com>
- */
- class UserPasswordEncoderCommand extends ContainerAwareCommand
- {
- /**
- * {@inheritdoc}
- */
- protected function configure()
- {
- $this
- ->setName('security:encode-password')
- ->setDescription('Encodes a password.')
- ->addArgument('password', InputArgument::OPTIONAL, 'The plain password to encode.')
- ->addArgument('user-class', InputArgument::OPTIONAL, 'The User entity class path associated with the encoder used to encode the password.', 'Symfony\Component\Security\Core\User\User')
- ->addOption('empty-salt', null, InputOption::VALUE_NONE, 'Do not generate a salt or let the encoder generate one.')
- ->setHelp(<<<EOF
- The <info>%command.name%</info> command encodes passwords according to your
- security configuration. This command is mainly used to generate passwords for
- the <comment>in_memory</comment> user provider type and for changing passwords
- in the database while developing the application.
- Suppose that you have the following security configuration in your application:
- <comment>
- # app/config/security.yml
- security:
- encoders:
- Symfony\Component\Security\Core\User\User: plaintext
- AppBundle\Entity\User: bcrypt
- </comment>
- If you execute the command non-interactively, the default Symfony User class
- is used and a random salt is generated to encode the password:
- <info>php %command.full_name% --no-interaction [password]</info>
- Pass the full user class path as the second argument to encode passwords for
- your own entities:
- <info>php %command.full_name% --no-interaction [password] AppBundle\Entity\User</info>
- Executing the command interactively allows you to generate a random salt for
- encoding the password:
- <info>php %command.full_name% [password] AppBundle\Entity\User</info>
- In case your encoder doesn't require a salt, add the <comment>empty-salt</comment> option:
- <info>php %command.full_name% --empty-salt [password] AppBundle\Entity\User</info>
- EOF
- )
- ;
- }
- /**
- * {@inheritdoc}
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $io = new SymfonyStyle($input, $output);
- $input->isInteractive() ? $io->title('Symfony Password Encoder Utility') : $io->newLine();
- $password = $input->getArgument('password');
- $userClass = $input->getArgument('user-class');
- $emptySalt = $input->getOption('empty-salt');
- $encoder = $this->getContainer()->get('security.encoder_factory')->getEncoder($userClass);
- $bcryptWithoutEmptySalt = !$emptySalt && $encoder instanceof BCryptPasswordEncoder;
- if ($bcryptWithoutEmptySalt) {
- $emptySalt = true;
- }
- if (!$password) {
- if (!$input->isInteractive()) {
- $io->error('The password must not be empty.');
- return 1;
- }
- $passwordQuestion = $this->createPasswordQuestion();
- $password = $io->askQuestion($passwordQuestion);
- }
- $salt = null;
- if ($input->isInteractive() && !$emptySalt) {
- $emptySalt = true;
- $io->note('The command will take care of generating a salt for you. Be aware that some encoders advise to let them generate their own salt. If you\'re using one of those encoders, please answer \'no\' to the question below. '.PHP_EOL.'Provide the \'empty-salt\' option in order to let the encoder handle the generation itself.');
- if ($io->confirm('Confirm salt generation ?')) {
- $salt = $this->generateSalt();
- $emptySalt = false;
- }
- } elseif (!$emptySalt) {
- $salt = $this->generateSalt();
- }
- $encodedPassword = $encoder->encodePassword($password, $salt);
- $rows = array(
- array('Encoder used', \get_class($encoder)),
- array('Encoded password', $encodedPassword),
- );
- if (!$emptySalt) {
- $rows[] = array('Generated salt', $salt);
- }
- $io->table(array('Key', 'Value'), $rows);
- if (!$emptySalt) {
- $io->note(sprintf('Make sure that your salt storage field fits the salt length: %s chars', \strlen($salt)));
- } elseif ($bcryptWithoutEmptySalt) {
- $io->note('Bcrypt encoder used: the encoder generated its own built-in salt.');
- }
- $io->success('Password encoding succeeded');
- }
- /**
- * Create the password question to ask the user for the password to be encoded.
- *
- * @return Question
- */
- private function createPasswordQuestion()
- {
- $passwordQuestion = new Question('Type in your password to be encoded');
- return $passwordQuestion->setValidator(function ($value) {
- if ('' === trim($value)) {
- throw new \Exception('The password must not be empty.');
- }
- return $value;
- })->setHidden(true)->setMaxAttempts(20);
- }
- private function generateSalt()
- {
- return base64_encode(random_bytes(30));
- }
- }
|