From 6fd865bbd21c1936a302f863dd52f9203da0f2fd Mon Sep 17 00:00:00 2001 From: Gabriel Detraz Date: Mon, 21 Nov 2016 20:14:25 +0100 Subject: [PATCH] Patch user password --- re2o/login.py | 2 +- users/forms.py | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/re2o/login.py b/re2o/login.py index fb78157d..056ce53a 100644 --- a/re2o/login.py +++ b/re2o/login.py @@ -27,7 +27,7 @@ def makeSecret(password): def hashNT(password): hash = hashlib.new('md4', password.encode('utf-16le')).digest() - return binascii.hexlify(hash) + return binascii.hexlify(hash).upper() def checkPassword(challenge_password, password): diff --git a/users/forms.py b/users/forms.py index 5b6482d7..b03ef00d 100644 --- a/users/forms.py +++ b/users/forms.py @@ -3,20 +3,25 @@ from django import forms from django.contrib.auth.forms import ReadOnlyPasswordHashField +from django.core.validators import MinLengthValidator from .models import User, ServiceUser, get_admin_right +def validate_password(value): + if not (any(x.isupper() for x in value) and any(x.islower() for x in value)): + raise forms.ValidationError("Le mot de passe doit contenir au moins une majuscule, une minuscule et un chiffre") + return value class PassForm(forms.Form): - passwd1 = forms.CharField(label=u'Nouveau mot de passe', max_length=255, widget=forms.PasswordInput) - passwd2 = forms.CharField(label=u'Saisir à nouveau le mot de passe', max_length=255, widget=forms.PasswordInput) + passwd1 = forms.CharField(label=u'Nouveau mot de passe', max_length=255, validators=[MinLengthValidator(8), validate_password], widget=forms.PasswordInput) + passwd2 = forms.CharField(label=u'Saisir à nouveau le mot de passe', max_length=255, validators=[MinLengthValidator(8), validate_password], widget=forms.PasswordInput) class UserCreationForm(forms.ModelForm): """A form for creating new users. Includes all the required fields, plus a repeated password.""" - password1 = forms.CharField(label='Password', widget=forms.PasswordInput, min_length=8, max_length=255) - password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput, min_length=8, max_length=255) + password1 = forms.CharField(label='Password', widget=forms.PasswordInput, validators=[MinLengthValidator(8), validate_password], max_length=255) + password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput, validators=[MinLengthValidator(8), validate_password], max_length=255) is_admin = forms.BooleanField(label='is admin') class Meta: