Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix - Usuarios - Generación automática de contraseña con requisitos de seguridad #417

Merged
merged 5 commits into from
Nov 19, 2024

Conversation

jordiSTIC
Copy link
Collaborator

Descripción

Si se definía en "Administración - Usuarios - Administración de contraseñas" una configuración de seguridad de contraseñas, y a la vez se habilitaba la generación de contraseñas por el sistema, las contraseñas generadas automáticamte no cumplían los requisitos de seguridad definidos.

Solución propuesta

Se ha modificado la función User::generatePassword() para que genere una contraseña teniendo en cuenta el cumplimiento de los requisitos de seguridad definidos en $sugar_config['passwordsetting']

Pruebas

En una instancia con servidor de correo saliente configurado:

  1. Ir a Administración - Usuarios - Administración de Contraseñas
  2. Habilitar Característica de Contraseñas Generadas por el Sistema
  3. Modificar la Configuración de seguridad de contraseña: Longitud mínima 8, e incluir carácteres especiales por ejemplo
  4. Crear un usuario con una cuenta de correo válida
  5. Verificar que en el correo enviado al usuario con la nueva contraseña, ésta SÍ cumple los requisitos de seguridad

Copy link

github-actions bot commented Oct 2, 2024

Actions executed at: 2024-11-19 15:30:33.

@AlbertoSTIC AlbertoSTIC requested review from ManuSinergiaCRM and ainaraRT and removed request for juanSTIC and AlbertoSTIC October 28, 2024 08:42

// Get password requirements
$length = 6;
if (isset($res['minpwdlength']) && is_numeric($res['minpwdlength']) && $res['minpwdlength'] < $length) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

En caso de configurar un número mayor a 6 no entra en el IF

--> Cambiar $res['minpwdlength'] < $length por $res['minpwdlength'] > $length o $res['minpwdlength'] != $length dependiendo de si queremos que la contraseña tenga 6 caracteres de longitud mínima o no.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corregido: Asumido que la longitud mínima será 6: en la antigua generación de contraseñas siempre se generaban de longitud 6

$password .= implode('', $requirements);

// Create other random characters
for ($i = 0; $i < $length - count($requirements) + 1; $i++) { // loop and create password
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Se crea una contraseña con un carácter más de lo indicado. Cambiar $i < $length ... por $i <= $length o no sumar el + 1

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corregido 👍

Copy link
Collaborator

@ManuSinergiaCRM ManuSinergiaCRM left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(A)probado

Copy link
Collaborator

@ainaraRT ainaraRT left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(A)Probado

@AlbertoSTIC AlbertoSTIC merged commit e75c59e into develop Nov 19, 2024
1 check passed
@AlbertoSTIC AlbertoSTIC deleted the bug/generatePwdWithRequirements branch November 19, 2024 15:30
@SinergiaCRM
Copy link
Collaborator

PR SA: salesagility#10592

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
5 participants