1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
|
"""
flask_security.forms
~~~~~~~~~~~~~~~~~~~~
Flask-Security forms module
:copyright: (c) 2012 by Matt Wright.
:copyright: (c) 2017 by CERN.
:copyright: (c) 2019-2025 by J. Christopher Wagner (jwag).
:license: MIT, see LICENSE for more details.
"""
from __future__ import annotations
import inspect
import typing as t
from flask import current_app, request
from flask_login import current_user
from flask_wtf import FlaskForm as BaseForm
from markupsafe import Markup
from wtforms import (
BooleanField,
EmailField,
Field,
HiddenField,
PasswordField,
RadioField,
StringField,
SubmitField,
TelField,
ValidationError,
)
from werkzeug.datastructures import MultiDict
from wtforms.validators import Optional, StopValidation, EqualTo, DataRequired, Length
from .babel import is_lazy_string, make_lazy_string
from .confirmable import requires_confirmation
from .mail_util import EmailValidateException
from .proxies import _security
from .utils import (
_,
_datastore,
config_value as cv,
do_flash,
get_identity_attribute,
get_message,
hash_password,
localize_callback,
suppress_form_csrf,
url_for_security,
validate_redirect_url,
verify_password,
)
if t.TYPE_CHECKING: # pragma: no cover
from flask_security import UserMixin
_default_field_labels = {
"authapp_method": _(
"Set up using an authenticator app (e.g. google, lastpass, authy)"
),
"change_method": _("Change Method"),
"change_password": _("Change Password"),
"code": _("Authentication Code"),
"delete": _("Delete"),
"email": _("Email Address"),
"email_method": _("Set up using email"),
"error": _("Error(s)"),
"identity": _("Identity"),
"login": _("Login"),
"new_password": _("New Password"),
"passcode": _("Passcode"),
"password": _("Password"),
"phone": _("Phone Number"),
"recover_password": _("Recover Password"),
"recover_username": _("Recover Username"),
"register": _("Register"),
"remember_me": _("Remember Me"),
"reset_password": _("Reset Password"),
"retype_password": _("Retype Password"),
"send_confirmation": _("Resend Confirmation Instructions"),
"send_login_link": _("Send Login Link"),
"sendcode": _("Send Code"),
"signin": _("Sign In"),
"sms_method": _("Set up using SMS"),
"submit": _("Submit"),
"submitcode": _("Submit Code"),
"username": _("Username"),
"verify_password": _("Verify Password"),
}
# translated methods for two-factor and us-signin. keyed by form 'choices'
_setup_methods_xlate = {
"google_authenticator": _("Google Authenticator"),
"authenticator": _("authenticator"),
"email": _("email"),
"mail": _("email"),
"sms": _("SMS"),
"password": _("password"),
None: _("none"),
}
class ValidatorMixin:
"""
This is called at import time - so there is no app context.
Validators have state - namely self.message - but we need that
xlated on a per-request basis. So we want a lazy_string - but we can't create
that until we are in an app context.
"""
def __init__(self, *args, **kwargs):
# If the message is available from config[MSG_xx] then it can be xlated.
# Otherwise, it will be used as is.
if "message" in kwargs:
self._original_message = kwargs["message"]
del kwargs["message"]
else:
self._original_message = None
super().__init__(*args, **kwargs)
def __call__(self, form, field):
if self._original_message and (
not is_lazy_string(self.message) and not self.message
):
# Creat on first usage within app context.
msg = cv("MSG_" + self._original_message, strict=False)
if msg:
self.message = make_lazy_string(_local_xlate, msg[0])
else:
self.message = self._original_message
return super().__call__(form, field)
class EqualToLocalize(ValidatorMixin, EqualTo):
pass
class RequiredLocalize(ValidatorMixin, DataRequired):
pass
class LengthLocalize(ValidatorMixin, Length):
pass
class EmailValidation:
"""Simple interface to email_validator.
N.B. Side-effect - if valid email, the field.data is set to the normalized value.
The 'verify' keyword informs the validator to perform checks to be more sure
that the email can actually receive an email (as well as normalize).
Set to False - just normalize (for use with identity purposes).
"""
def __init__(self, *args, **kwargs):
self.verify = kwargs.get("verify", False)
def __call__(self, form, field):
if field.data is None: # pragma: no cover
raise ValidationError(get_message("EMAIL_NOT_PROVIDED")[0])
try:
if self.verify:
field.data = _security.mail_util.validate(field.data)
else:
field.data = _security.mail_util.normalize(field.data)
except EmailValidateException as e:
# we stop further validators if email isn't valid.
# TODO: email_validator provides some really nice error messages - however
# they aren't localized. And there isn't an easy way to add multiple
# errors at once.
raise StopValidation(e.msg)
except ValueError:
# Backwards compat - mail_util no longer raises this - but app subclasses
# might (and we're making this change in 5.4.3).
msg = get_message("INVALID_EMAIL_ADDRESS")[0]
raise StopValidation(msg)
email_required = RequiredLocalize(message="EMAIL_NOT_PROVIDED")
password_required = RequiredLocalize(message="PASSWORD_NOT_PROVIDED")
def _local_xlate(text):
"""LazyStrings need to be evaluated in the context of a request
where _security.i18_domain is available.
"""
return localize_callback(text)
def get_form_field_label(key):
"""This is called during import since form fields are declared as part of
class. Thus, can't call 'localize_callback' until we need to actually
translate/render form.
"""
return make_lazy_string(_local_xlate, _default_field_labels.get(key, ""))
def get_form_field_xlate(txt):
return make_lazy_string(_local_xlate, txt)
def valid_user_email(form, field):
# Verify email exists in DB - be sure to normalize first.
# Side-effect - set form.user if field is valid
uia_email = get_identity_attribute("email")
form.user = _datastore.find_user(
case_insensitive=uia_email.get("case_insensitive", False), email=field.data
)
if form.user is None:
raise ValidationError(get_message("USER_DOES_NOT_EXIST")[0])
def unique_user_email(form, field):
# Verify email not already in DB
# Assumes field value already normalized - email_validator does this.
uia_email = get_identity_attribute("email")
form.existing_email_user = _datastore.find_user(
case_insensitive=uia_email.get("case_insensitive", False), email=field.data
)
if form.existing_email_user is not None:
msg = get_message("EMAIL_ALREADY_ASSOCIATED", email=field.data)[0]
raise ValidationError(msg)
def username_validator(form, field):
# Side-effect - field.data is updated to normalized value.
msg, field.data = _security.username_util.validate(field.data)
if msg:
raise ValidationError(msg)
def unique_username(form, field):
# Verify username not already in DB
# Assumes field value already normalized - username_validator does this.
uia_username = get_identity_attribute("username")
form.existing_username_user = _datastore.find_user(
case_insensitive=uia_username.get("case_insensitive", False),
username=field.data,
)
if form.existing_username_user is not None:
msg = get_message("USERNAME_ALREADY_ASSOCIATED", username=field.data)[0]
raise ValidationError(msg)
def unique_identity_attribute(form, field):
"""A validator that checks the field data against all configured
:py:data:`SECURITY_USER_IDENTITY_ATTRIBUTES`.
This can be used as part of registration.
Be aware that the "mapper" function likely also normalizes the input in addition
to validating it.
:param form:
:param field:
:return: Nothing; if field data corresponds to an existing User, ValidationError
is raised.
"""
for mapping in cv("USER_IDENTITY_ATTRIBUTES"):
attr = list(mapping.keys())[0]
details = mapping[attr]
idata = details["mapper"](field.data)
if idata:
if _datastore.find_user(
case_insensitive=details.get("case_insensitive", False), **{attr: idata}
):
msg = get_message(
"IDENTITY_ALREADY_ASSOCIATED", attr=attr, value=idata
)[0]
raise ValidationError(msg)
class Form(BaseForm):
def __init__(self, *args, **kwargs):
if current_app and current_app.testing:
self.TIME_LIMIT = None
super().__init__(*args, **kwargs)
def generic_message(
detailed_msg: str, generic_msg: str, **kwargs: t.Any
) -> tuple[str, str]:
if cv("RETURN_GENERIC_RESPONSES"):
m, c = get_message(generic_msg, **kwargs)
else:
m, c = get_message(detailed_msg, **kwargs)
return m, c
def form_errors_munge(form: Form, fields: dict[str, dict[str, str]]) -> None:
"""
To support OWASP best practice on unauthenticated endpoints to avoid
disclosing whether a user exists or not we need to return generic error messages.
Furthermore, WTForms really likes to place errors on the field itself - which is
a dead giveaway. We need to move errors from fields to the form.form_errors, and
(optionally) replace then with generic msgs.
"""
if not cv("RETURN_GENERIC_RESPONSES"): # pragma: no cover
return
for fname, rinfo in fields.items():
field = getattr(form, fname)
if field.errors:
field.errors = []
# If they want to replace that message with a generic message and place
# it in the generic/form level errors - do that.
if replace_msg := rinfo.get("replace_msg"):
form.form_errors.append(get_message(replace_msg)[0])
class UserEmailFormMixin:
email = EmailField(
get_form_field_label("email"),
render_kw={"autocomplete": "email"},
validators=[email_required, EmailValidation(verify=True), valid_user_email],
)
class UniqueEmailFormMixin:
email = EmailField(
get_form_field_label("email"),
render_kw={"autocomplete": "email"},
validators=[email_required, EmailValidation(verify=True), unique_user_email],
)
class PasswordFormMixin:
password = PasswordField(
get_form_field_label("password"),
render_kw={"autocomplete": "current-password"},
validators=[password_required],
)
class NewPasswordFormMixin:
password = PasswordField(
get_form_field_label("password"),
render_kw={"autocomplete": "new-password"},
validators=[password_required],
)
class PasswordConfirmFormMixin:
password_confirm = PasswordField(
get_form_field_label("retype_password"),
render_kw={"autocomplete": "new-password"},
validators=[
EqualToLocalize("password", message="RETYPE_PASSWORD_MISMATCH"),
password_required,
],
)
class NextFormMixin:
next = HiddenField()
def validate_next(self, field):
if field.data and not validate_redirect_url(field.data):
field.data = ""
do_flash(*get_message("INVALID_REDIRECT"))
raise ValidationError(get_message("INVALID_REDIRECT")[0])
class CodeFormMixin:
code = StringField(
get_form_field_label("code"),
render_kw={
"autocomplete": "one-time-code",
"type": "text",
"pattern": "[0-9]*",
},
validators=[RequiredLocalize()],
)
def build_username_field(app):
if cv("USERNAME_REQUIRED", app=app):
validators = [
RequiredLocalize(message="USERNAME_NOT_PROVIDED"),
username_validator,
unique_username,
]
else:
validators = [username_validator, unique_username]
return StringField(
get_form_field_label("username"),
render_kw={"autocomplete": "username"},
validators=validators,
)
class RegisterFormMixin:
submit = SubmitField(get_form_field_label("register"))
# The "username" field is added in init_app if USERNAME_ENABLE is set.
# This is just a type hint.
username: t.ClassVar[Field]
def to_dict(self, only_user):
"""
Return form data as dictionary
:param only_user: bool, if True then only fields that have
corresponding members in UserModel are returned
:return: dict
"""
def is_field_and_user_attr(member):
if not isinstance(member, Field):
return False
# If only fields recorded on UserModel should be returned,
# perform check on user model, else return True
if only_user is True:
return hasattr(_datastore.user_model, member.name)
else:
return True
fields = inspect.getmembers(self, is_field_and_user_attr)
return {key: value.data for key, value in fields}
class SendConfirmationForm(Form, UserEmailFormMixin):
"""The default send confirmation form"""
submit = SubmitField(get_form_field_label("send_confirmation"))
def __init__(self, *args: t.Any, **kwargs: t.Any):
super().__init__(*args, **kwargs)
self.user: UserMixin | None = None # set by valid_user_email
if request and request.method == "GET":
self.email.data = request.args.get("email", None)
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
assert self.user is not None
if self.user.confirmed_at is not None:
assert isinstance(self.email.errors, list)
self.email.errors.append(get_message("ALREADY_CONFIRMED")[0])
return False
return True
class ForgotPasswordForm(Form, UserEmailFormMixin):
"""The default forgot password form"""
submit = SubmitField(get_form_field_label("recover_password"))
def __init__(self, *args: t.Any, **kwargs: t.Any):
super().__init__(*args, **kwargs)
self.requires_confirmation: bool = False
self.user: UserMixin | None = None # set by valid_user_email
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
assert self.user is not None
assert isinstance(self.email.errors, list)
if not self.user.is_active:
self.email.errors.append(get_message("DISABLED_ACCOUNT")[0])
return False
self.requires_confirmation = requires_confirmation(self.user)
if self.requires_confirmation:
self.email.errors.append(get_message("CONFIRMATION_REQUIRED")[0])
return False
return True
class PasswordlessLoginForm(Form):
"""The passwordless login form"""
email = EmailField(
get_form_field_label("email"),
render_kw={"autocomplete": "email"},
validators=[email_required, EmailValidation(verify=False), valid_user_email],
)
submit = SubmitField(get_form_field_label("send_login_link"))
def __init__(self, *args: t.Any, **kwargs: t.Any):
super().__init__(*args, **kwargs)
self.user: UserMixin | None = None # set by valid_user_email
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
assert self.user is not None
assert isinstance(self.email.errors, list)
if not self.user.is_active:
self.email.errors.append(get_message("DISABLED_ACCOUNT")[0])
return False
return True
class LoginForm(Form, PasswordFormMixin, NextFormMixin):
"""The default login form.
The following fields are defined:
* email
* username (based on :py:data:`SECURITY_USERNAME_ENABLE`)
* password
* remember (checkbox)
* next
* submit
The following attributes might be useful for subclasses:
* ifield - If a subclass wants to handle identity, it can set self.ifield to the
form field that it validated. That will cause the validation logic here
around identity to be skipped.
The subclass must also set self.user to the found User.
* user - as stated above - if subclass does identity check it must set this
field.
"""
# email field - we don't use valid_user_email since for login we must check
# user_identity_attributes to ensure 'email' is listed.
# If USERNAME_ENABLE is set - this field will be replaced to be Optional()
# see build_login_form()
email = EmailField(
get_form_field_label("email"),
render_kw={"autocomplete": "email"},
validators=[email_required, EmailValidation(verify=False)],
)
# username is added dynamically based on USERNAME_ENABLED.
username: t.ClassVar[Field]
remember = BooleanField(get_form_field_label("remember_me"))
submit = SubmitField(get_form_field_label("login"))
def __init__(self, *args: t.Any, **kwargs: t.Any):
super().__init__(*args, **kwargs)
if request and not self.next.data:
self.next.data = request.args.get("next", "")
self.remember.default = cv("DEFAULT_REMEMBER_ME")
if _security.recoverable and not self.password.description:
html = Markup(
f'<a href="{url_for_security("forgot_password")}">'
f'{get_message("FORGOT_PASSWORD")[0]}</a>'
)
self.password.description = html
self.requires_confirmation: bool = False
self.user: UserMixin | None = None
# ifield can be set by subclasses to skip identity checks.
self.ifield: Field | None = None
# If True then user has authenticated so we can show detailed errors
self.user_authenticated = False
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
assert self.password.data is not None # validator password_required
# Stay clear of accessing 'username' unless we added that field.
# Lots of applications have added their own.
# To make subclassing easier - if self.ifield has been set we assume
# subclass has validated and attempted to look up user. It is also
# responsible to deal with USER_IDENTITY_ATTRIBUTES if it cares.
if not self.ifield:
uia_email = get_identity_attribute("email")
# pedantic checks - if app subclasses form, removes email but forgets to
# remove "email" from identity_attributes
if uia_email and hasattr(self, "email") and self.email and self.email.data:
self.ifield = self.email
self.user = _datastore.find_user(
case_insensitive=uia_email.get("case_insensitive", False),
email=self.email.data,
)
elif cv("USERNAME_ENABLE"):
uia_username = get_identity_attribute("username")
if uia_username and self.username.data:
self.user = _datastore.find_user(
case_insensitive=uia_username.get("case_insensitive", False),
username=self.username.data,
)
self.ifield = self.username
else:
# A bit of backwards compat - the old LoginForm just had email and
# any errors would be set on that field.
if uia_email:
self.ifield = self.email
assert isinstance(self.password.errors, list)
if self.user is None:
msg = get_message("USER_DOES_NOT_EXIST")[0]
if self.ifield:
assert isinstance(self.ifield.errors, list)
self.ifield.errors.append(msg)
else:
self.form_errors.append(msg)
# Reduce timing variation between existing and non-existing users
hash_password(self.password.data)
return False
if not self.user.password:
# This is result of PASSWORD_REQUIRED=False and UNIFIED_SIGNIN
self.password.errors.append(get_message("INVALID_PASSWORD")[0])
# Reduce timing variation between existing and non-existing users
hash_password(self.password.data)
return False
self.password.data = _security.password_util.normalize(self.password.data)
if not self.user.verify_and_update_password(self.password.data):
self.password.errors.append(get_message("INVALID_PASSWORD")[0])
return False
# At this point the user has successfully authenticated - so it is fine
# to return detailed errors.
self.user_authenticated = True
self.requires_confirmation = requires_confirmation(self.user)
assert self.ifield is not None
assert isinstance(self.ifield.errors, list)
if self.requires_confirmation:
self.ifield.errors.append(get_message("CONFIRMATION_REQUIRED")[0])
return False
if not self.user.is_active:
self.ifield.errors.append(get_message("DISABLED_ACCOUNT")[0])
return False
return True
def build_login_form(app, fcls):
# Based on app configuration, add optional/configurable fields to the login form
# Allow app to override the field using mixins.
# Note this is only called (from init_app()) if form is subclassed from ours.
# We really don't want to touch the form unless there is a specific option
# requested - so that subclasses can change/do what they want (including deleting
# email for example).
if cv("USERNAME_ENABLE", app):
fcls.username = StringField(
get_form_field_label("username"),
render_kw={"autocomplete": "username"},
validators=[username_validator],
)
if hasattr(fcls, "email") and fcls.email:
# Make field Optional()
# let subclass easily get rid of this
# Note that WTForms 'del' operator actually sets this to None
fcls.email = EmailField(
get_form_field_label("email"),
render_kw={"autocomplete": "email"},
validators=[Optional(), EmailValidation(verify=False)],
)
class VerifyForm(Form, PasswordFormMixin):
"""The verify authentication form"""
submit = SubmitField(get_form_field_label("verify_password"))
def __init__(self, *args: t.Any, user: UserMixin, **kwargs: t.Any):
super().__init__(*args, **kwargs)
self.user: UserMixin = user
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs): # pragma: no cover
return False
assert self.password.data is not None
self.password.data = _security.password_util.normalize(self.password.data)
assert isinstance(self.password.errors, list)
if not self.user.verify_and_update_password(self.password.data):
self.password.errors.append(get_message("INVALID_PASSWORD")[0])
return False
return True
class ConfirmRegisterForm(Form, RegisterFormMixin, UniqueEmailFormMixin):
"""This form is used for registering when 'confirmable' is set.
The only difference between this and the other RegisterForm is that
this one doesn't require re-typing in the password...
We want to support OWASP best-practice around mitigating user enumeration.
To that end we run through the entire validation regardless - this allows us
to still return important bad-password messages.
In the case of an existing email or username - we set form.existing_xx so that
the view can decide how to match responses (e.g. json responses always return 200).
"""
# Password optional when Unified Signin enabled.
password = PasswordField(
get_form_field_label("password"),
render_kw={"autocomplete": "new-password"},
)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.existing_username_user = None
self.existing_email_user = None
def validate(self, **kwargs: t.Any) -> bool:
failed = False
if not super().validate(**kwargs):
failed = True
# whether a password is required is a config variable (PASSWORD_REQUIRED).
# For unified signin there are many other ways to authenticate
assert isinstance(self.password.errors, list)
if cv("PASSWORD_REQUIRED"):
if not self.password.data or not self.password.data.strip():
self.password.errors.append(get_message("PASSWORD_NOT_PROVIDED")[0])
failed = True
if self.password.data:
# We do explicit validation here for passwords
# (rather than write a validator class) for 2 reasons:
# 1) We want to control which fields are passed -
# sometimes that's current_user
# other times it's the registration fields.
# 2) We want to be able to return multiple error messages.
rfields = {}
for k, v in self.data.items():
if hasattr(_datastore.user_model, k):
rfields[k] = v
del rfields["password"]
pbad, self.password.data = _security.password_util.validate(
self.password.data, True, **rfields
)
if pbad:
self.password.errors.extend(pbad)
failed = True
return not failed
class RegisterForm(ConfirmRegisterForm, NextFormMixin):
# Password optional when Unified Signin enabled.
password_confirm = PasswordField(
get_form_field_label("retype_password"),
validators=[
EqualToLocalize("password", message="RETYPE_PASSWORD_MISMATCH"),
Optional(),
],
)
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
assert isinstance(self.password_confirm.errors, list)
if not cv("UNIFIED_SIGNIN"):
# password_confirm required
if not self.password_confirm.data or not self.password_confirm.data.strip():
self.password_confirm.errors.append(
get_message("PASSWORD_NOT_PROVIDED")[0]
)
return False
return True
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
if request and not self.next.data:
self.next.data = request.args.get("next", "")
class RegisterFormV2(
Form,
UniqueEmailFormMixin,
NextFormMixin,
NewPasswordFormMixin,
PasswordConfirmFormMixin,
):
"""This form is used for registering.
The following fields are defined:
* email (required)
* password (required if :py:data:`SECURITY_PASSWORD_REQUIRED` is ``True``)
* password_confirm (based on :py:data:`SECURITY_PASSWORD_CONFIRM_REQUIRED`)
* username (based on :py:data:`SECURITY_USERNAME_ENABLE`)
* next
Since there are many configuration options that alter which fields and
which validators (e.g. Required), some fields are added or changed at
Security init_app() time by calling the internal method build_register_form().
We want to support OWASP best-practice around mitigating user enumeration.
To that end we run through the entire validation regardless - this allows us
to still return important bad-password messages.
In the case of an existing email or username - we set form.existing_xx so that
the view can decide how to match responses (e.g. json responses always return 200).
.. versionadded:: 5.6
"""
submit = SubmitField(get_form_field_label("register"))
username: t.ClassVar[Field]
def to_dict(self, only_user):
"""
Return form data as dictionary
:param only_user: bool, if True then only fields that have
corresponding members in UserModel are returned
:return: dict
"""
def is_field_and_user_attr(member):
if not isinstance(member, Field):
return False
# If only fields recorded on UserModel should be returned,
# perform check on user model, else return True
if only_user is True:
return hasattr(_datastore.user_model, member.name)
else:
return True
fields = inspect.getmembers(self, is_field_and_user_attr)
return {key: value.data for key, value in fields}
def validate(self, **kwargs: t.Any) -> bool:
failed = False
if not super().validate(**kwargs):
failed = True
assert isinstance(self.password.errors, list)
if self.password.data:
# We do explicit validation here for passwords
# (rather than write a validator class) for 2 reasons:
# 1) We want to control which fields are passed -
# sometimes that's current_user
# other times it's the registration fields.
# 2) We want to be able to return multiple error messages.
rfields = {}
for k, v in self.data.items():
if hasattr(_datastore.user_model, k):
rfields[k] = v
del rfields["password"]
pbad, self.password.data = _security.password_util.validate(
self.password.data, True, **rfields
)
if pbad:
self.password.errors.extend(pbad)
failed = True
return not failed
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.existing_username_user = None
self.existing_email_user = None
if request and not self.next.data:
self.next.data = request.args.get("next", "")
def build_register_form(app, fcls):
# Based on app configuration, add optional/configurable fields to the register form
# Allow app to override the field using mixins
# Note that this occurs AFTER app might have sub-classed the form
if not cv("PASSWORD_REQUIRED", app):
# mark password field as Optional
fcls.password = PasswordField(
label=get_form_field_label("password"),
render_kw={"autocomplete": "new-password"},
validators=[Optional()],
)
fcls.password_confirm = PasswordField(
get_form_field_label("retype_password"),
render_kw={"autocomplete": "new-password"},
validators=[
EqualToLocalize("password", message="RETYPE_PASSWORD_MISMATCH"),
],
)
if not cv("PASSWORD_CONFIRM_REQUIRED", app=app):
fcls.password_confirm = None
if cv("USERNAME_ENABLE", app):
fcls.username = build_username_field(app=app)
class ResetPasswordForm(Form, NewPasswordFormMixin, PasswordConfirmFormMixin):
"""The default reset password form"""
# filled in by caller
user: UserMixin
submit = SubmitField(get_form_field_label("reset_password"))
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
assert isinstance(self.password.errors, list)
assert self.password.data is not None
pbad, self.password.data = _security.password_util.validate(
self.password.data, False, user=self.user
)
if pbad:
self.password.errors.extend(pbad)
return False
return True
class ChangePasswordForm(Form):
"""The default change password form"""
password = PasswordField(
get_form_field_label("password"), render_kw={"autocomplete": "current-password"}
)
new_password = PasswordField(
get_form_field_label("new_password"),
render_kw={"autocomplete": "new-password"},
validators=[password_required],
)
new_password_confirm = PasswordField(
get_form_field_label("retype_password"),
render_kw={"autocomplete": "new-password"},
validators=[
EqualToLocalize("new_password", message="RETYPE_PASSWORD_MISMATCH"),
password_required,
],
)
submit = SubmitField(get_form_field_label("change_password"))
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs):
return False
# If user doesn't have a password then the caller (view) has already
# verified a current fresh session.
assert isinstance(self.password.errors, list)
assert isinstance(self.new_password.errors, list)
if current_user.password:
if not self.password.data or not self.password.data.strip():
self.password.errors.append(get_message("PASSWORD_NOT_PROVIDED")[0])
return False
self.password.data = _security.password_util.normalize(self.password.data)
if not verify_password(self.password.data, current_user.password):
self.password.errors.append(get_message("INVALID_PASSWORD")[0])
return False
if self.password.data == self.new_password.data:
self.password.errors.append(get_message("PASSWORD_IS_THE_SAME")[0])
return False
assert self.new_password.data is not None
pbad, self.new_password.data = _security.password_util.validate(
self.new_password.data, False, user=current_user
)
if pbad:
self.new_password.errors.extend(pbad)
return False
return True
class TwoFactorSetupForm(Form):
"""The Two-factor token validation form"""
setup = RadioField(
get_form_field_xlate(_("Available Methods")),
choices=[
("disable", get_form_field_xlate(_("Disable two-factor authentication"))),
("email", get_form_field_label("email_method")),
(
"authenticator",
get_form_field_label("authapp_method"),
),
("sms", get_form_field_label("sms_method")),
],
validate_choice=False,
)
phone = TelField(get_form_field_label("phone"))
submit = SubmitField(get_form_field_label("submit"))
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs): # pragma: no cover
return False
choices = list(cv("TWO_FACTOR_ENABLED_METHODS"))
assert isinstance(self.setup.errors, list)
assert isinstance(self.phone.errors, list)
if "email" in choices:
# backwards compat
choices.append("mail")
if not cv("TWO_FACTOR_REQUIRED"):
choices.append("disable")
if "setup" not in self.data or self.data["setup"] not in choices:
self.setup.errors.append(get_message("TWO_FACTOR_METHOD_NOT_AVAILABLE")[0])
return False
if self.setup.data == "sms":
if not self.phone.data:
self.phone.errors.append(get_message("PHONE_INVALID")[0])
return False
msg = _security.phone_util.validate_phone_number(self.phone.data)
if msg:
self.phone.errors.append(msg)
return False
return True
class TwoFactorVerifyCodeForm(Form, CodeFormMixin):
"""The Two-factor token validation form"""
submit = SubmitField(get_form_field_label("submitcode"), id="submit-code")
def __init__(self, *args: t.Any, **kwargs: t.Any):
super().__init__(*args, **kwargs)
# These are set by view.
self.window: int = 0
self.primary_method: str = ""
self.tf_totp_secret: str = ""
self.user: UserMixin | None = None # set by view
def validate(self, **kwargs: t.Any) -> bool:
if not super().validate(**kwargs): # pragma: no cover
return False
if (
self.primary_method == "google_authenticator"
or self.primary_method == "authenticator"
):
self.window = cv("TWO_FACTOR_AUTHENTICATOR_VALIDITY")
elif self.primary_method == "email" or self.primary_method == "mail":
self.window = cv("TWO_FACTOR_MAIL_VALIDITY")
elif self.primary_method == "sms":
self.window = cv("TWO_FACTOR_SMS_VALIDITY")
else:
return False
# verify entered code with user's totp secret
assert self.user is not None
assert self.code.data is not None
assert isinstance(self.code.errors, list)
if not _security.totp_factory.verify_totp(
token=self.code.data,
totp_secret=self.tf_totp_secret,
user=self.user,
window=self.window,
):
self.code.errors.append(get_message("TWO_FACTOR_INVALID_TOKEN")[0])
return False
return True
class TwoFactorRescueForm(Form):
"""The Two-factor Rescue validation form"""
# rescue options - additional options are generated in set_rescue_options()
help_setup = RadioField(
get_form_field_xlate(_("Trouble Accessing Your Account?/Lost Mobile Device?")),
choices=[
("help", get_form_field_xlate(_("Contact Administrator"))),
],
)
submit = SubmitField(get_form_field_label("submit"), id="rescue")
class UsernameRecoveryForm(Form, UserEmailFormMixin):
"""The username recovery form"""
submit = SubmitField(get_form_field_label("recover_username"))
class DummyForm(Form):
"""A dummy form for json responses"""
def __init__(self, *args: t.Any, **kwargs: t.Any):
super().__init__(*args, **kwargs)
self.user: UserMixin | None = kwargs.get("user", None)
def build_form_from_request(form_name: str, **kwargs: dict[str, t.Any]) -> Form:
# helper function for views
form_data = None
if request.content_length:
form_data = MultiDict(request.get_json()) if request.is_json else request.form
return build_form(
form_name, formdata=form_data, meta=suppress_form_csrf(), **kwargs
)
def build_form(form_name, **kwargs):
# helper function for views
kwargs.setdefault("formdata", None)
return _security.forms[form_name].instantiator(
form_name,
_security.forms[form_name].cls,
**kwargs,
)
|