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 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
|
"""
flask_security.core
~~~~~~~~~~~~~~~~~~~
Flask-Security core module
:copyright: (c) 2012 by Matt Wright.
:copyright: (c) 2017 by CERN.
:copyright: (c) 2017 by ETH Zurich, Swiss Data Science Center.
:copyright: (c) 2019-2025 by J. Christopher Wagner (jwag).
:license: MIT, see LICENSE for more details.
"""
from __future__ import annotations
from datetime import datetime, timedelta
from dataclasses import dataclass
import importlib
import time
import typing as t
import warnings
from flask import current_app, g, session
from flask_login import AnonymousUserMixin, LoginManager
from flask_login import UserMixin as BaseUserMixin
from flask_login import current_user
from flask_principal import Identity, Principal, RoleNeed, UserNeed, identity_loaded
from itsdangerous import URLSafeTimedSerializer
from passlib.context import CryptContext
from werkzeug.datastructures import ImmutableList
from werkzeug.local import LocalProxy
from .babel import FsDomain
from .change_email import ChangeEmailForm
from .change_username import ChangeUsernameForm
from .decorators import (
default_reauthn_handler,
default_unauthn_handler,
default_unauthz_handler,
)
from .forms import (
ChangePasswordForm,
ConfirmRegisterForm,
ForgotPasswordForm,
Form,
LoginForm,
PasswordlessLoginForm,
RegisterForm,
RegisterFormMixin,
RegisterFormV2,
ResetPasswordForm,
SendConfirmationForm,
TwoFactorVerifyCodeForm,
TwoFactorSetupForm,
TwoFactorRescueForm,
UsernameRecoveryForm,
VerifyForm,
build_username_field,
build_register_form,
build_login_form,
)
from .json import setup_json
from .mail_util import MailUtil
from .password_util import PasswordUtil
from .phone_util import PhoneUtil
from .oauth_glue import OAuthGlue
from .proxies import _security
from .recovery_codes import (
MfRecoveryForm,
MfRecoveryCodesForm,
MfRecoveryCodesUtil,
)
from .tf_plugin import TfPlugin, TwoFactorSelectForm
from .twofactor import tf_send_security_token
from .unified_signin import (
UnifiedSigninForm,
UnifiedSigninSetupForm,
UnifiedSigninSetupValidateForm,
UnifiedVerifyForm,
us_send_security_token,
)
from .webauthn import (
WebAuthnDeleteForm,
WebAuthnRegisterForm,
WebAuthnRegisterResponseForm,
WebAuthnSigninForm,
WebAuthnSigninResponseForm,
WebAuthnVerifyForm,
)
from .webauthn_util import WebauthnUtil
from .username_util import UsernameUtil
from .totp import Totp
from .utils import _
from .utils import config_value as cv
from .utils import (
FsPermNeed,
csrf_cookie_handler,
default_render_template,
default_want_json,
get_identity_attribute,
get_identity_attributes,
get_message,
get_request_attr,
is_user_authenticated,
naive_utcnow,
parse_auth_token,
set_request_attr,
uia_email_mapper,
uia_username_mapper,
url_for_security,
verify_and_update_password,
)
from .views import create_blueprint, default_render_json
if t.TYPE_CHECKING: # pragma: no cover
import flask
from flask import Request
from flask.typing import ResponseValue
import flask_login.mixins
from authlib.integrations.flask_client import OAuth
from .datastore import UserDatastore
# List of authentication mechanisms supported.
AUTHN_MECHANISMS = ("basic", "session", "token")
#: Default Flask-Security configuration
_default_config: dict[str, t.Any] = {
"ANONYMOUS_USER_DISABLED": False,
"BLUEPRINT_NAME": "security",
"CLI_ROLES_NAME": "roles",
"CLI_USERS_NAME": "users",
"URL_PREFIX": None,
"STATIC_FOLDER": "static",
"STATIC_FOLDER_URL": "/fs-static",
"SUBDOMAIN": None,
"FLASH_MESSAGES": True,
"RETURN_GENERIC_RESPONSES": False,
"USE_REGISTER_V2": True,
"I18N_DOMAIN": "flask_security",
"I18N_DIRNAME": "builtin",
"EMAIL_VALIDATOR_ARGS": None,
"PASSWORD_HASH": "argon2",
"PASSWORD_SALT": None,
"PASSWORD_SINGLE_HASH": {
"django_argon2",
"django_bcrypt_sha256",
"django_pbkdf2_sha256",
"django_pbkdf2_sha1",
"django_bcrypt",
"django_salted_md5",
"django_salted_sha1",
"django_des_crypt",
"plaintext",
},
"PASSWORD_SCHEMES": [
"bcrypt",
"argon2",
"des_crypt",
"pbkdf2_sha256",
"pbkdf2_sha512",
"sha256_crypt",
"sha512_crypt",
# And always last one...
"plaintext",
],
"DEPRECATED_PASSWORD_SCHEMES": ["auto"],
"PASSWORD_HASH_OPTIONS": {}, # Deprecated at passlib 1.7
"PASSWORD_HASH_PASSLIB_OPTIONS": {}, # passlib >= 1.7.1 method to pass options
# (as part of CryptoContext.using)
"PASSWORD_LENGTH_MIN": 8,
"PASSWORD_COMPLEXITY_CHECKER": None,
"PASSWORD_CHECK_BREACHED": False,
"PASSWORD_BREACHED_COUNT": 1,
"PASSWORD_NORMALIZE_FORM": "NFKD",
"PASSWORD_REQUIRED": True,
"PASSWORD_CONFIRM_REQUIRED": True, # for RegisterFormV2
"HASHING_SCHEMES": ["sha256_crypt", "hex_md5"],
"DEPRECATED_HASHING_SCHEMES": ["auto"],
"LOGIN_URL": "/login",
"LOGOUT_URL": "/logout",
"REGISTER_URL": "/register",
"RESET_URL": "/reset",
"CHANGE_URL": "/change",
"CONFIRM_URL": "/confirm",
"VERIFY_URL": "/verify",
"TWO_FACTOR_SETUP_URL": "/tf-setup",
"TWO_FACTOR_TOKEN_VALIDATION_URL": "/tf-validate",
"TWO_FACTOR_RESCUE_URL": "/tf-rescue",
"TWO_FACTOR_SELECT_URL": "/tf-select",
"TWO_FACTOR_POST_SETUP_VIEW": ".two_factor_setup", # endpoint or URL
"TWO_FACTOR_ERROR_VIEW": ".login",
"LOGOUT_METHODS": ["GET", "POST"],
"POST_LOGIN_VIEW": "/",
"POST_LOGOUT_VIEW": "/",
"LOGIN_ERROR_VIEW": None, # spa
"POST_OAUTH_LOGIN_VIEW": None, # spa
"CONFIRM_ERROR_VIEW": None, # spa
"POST_CONFIRM_VIEW": None, # spa
"RESET_VIEW": None, # spa
"RESET_ERROR_VIEW": None, # spa
"POST_RESET_VIEW": None,
"POST_CHANGE_VIEW": None,
"POST_VERIFY_VIEW": None,
"POST_REGISTER_VIEW": None,
"UNAUTHORIZED_VIEW": None,
"REQUIRES_CONFIRMATION_ERROR_VIEW": None,
"REDIRECT_HOST": None,
"REDIRECT_BEHAVIOR": None,
"REDIRECT_ALLOW_SUBDOMAINS": False,
"REDIRECT_BASE_DOMAIN": None,
"REDIRECT_ALLOWED_SUBDOMAINS": [],
"FORGOT_PASSWORD_TEMPLATE": "security/forgot_password.html",
"LOGIN_USER_TEMPLATE": "security/login_user.html",
"REGISTER_USER_TEMPLATE": "security/register_user.html",
"RESET_PASSWORD_TEMPLATE": "security/reset_password.html",
"CHANGE_PASSWORD_TEMPLATE": "security/change_password.html",
"SEND_CONFIRMATION_TEMPLATE": "security/send_confirmation.html",
"SEND_LOGIN_TEMPLATE": "security/send_login.html",
"VERIFY_TEMPLATE": "security/verify.html",
"TWO_FACTOR_VERIFY_CODE_TEMPLATE": "security/two_factor_verify_code.html",
"TWO_FACTOR_SETUP_TEMPLATE": "security/two_factor_setup.html",
"TWO_FACTOR_SELECT_TEMPLATE": "security/two_factor_select.html",
"CONFIRMABLE": False,
"REGISTERABLE": False,
"RECOVERABLE": False,
"TRACKABLE": False,
"PASSWORDLESS": False,
"CHANGEABLE": False,
"TWO_FACTOR": False,
"SEND_REGISTER_EMAIL": True,
"SEND_PASSWORD_CHANGE_EMAIL": True,
"SEND_PASSWORD_RESET_EMAIL": True,
"SEND_PASSWORD_RESET_NOTICE_EMAIL": True,
"LOGIN_WITHIN": "1 days",
"CHANGE_EMAIL": False,
"CHANGE_EMAIL_TEMPLATE": "security/change_email.html",
"CHANGE_EMAIL_WITHIN": "2 hours",
"CHANGE_EMAIL_URL": "/change-email",
"CHANGE_EMAIL_CONFIRM_URL": "/change-email-confirm",
"CHANGE_EMAIL_ERROR_VIEW": None, # spa
"POST_CHANGE_EMAIL_VIEW": None, # spa
"CHANGE_EMAIL_SALT": "change-email-salt",
"CHANGE_EMAIL_SUBJECT": _("Confirm your new email address"),
"CHANGE_USERNAME": False,
"CHANGE_USERNAME_TEMPLATE": "security/change_username.html",
"CHANGE_USERNAME_URL": "/change-username",
"POST_CHANGE_USERNAME_VIEW": None,
"SEND_USERNAME_CHANGE_EMAIL": True,
"TWO_FACTOR_AUTHENTICATOR_VALIDITY": 120,
"TWO_FACTOR_MAIL_VALIDITY": 300,
"TWO_FACTOR_SMS_VALIDITY": 120,
"TWO_FACTOR_ALWAYS_VALIDATE": True,
"TWO_FACTOR_LOGIN_VALIDITY": "30 days",
"TWO_FACTOR_VALIDITY_SALT": "tf-validity-salt",
"TWO_FACTOR_VALIDITY_COOKIE": {
"httponly": True,
"secure": False,
"samesite": "Strict",
},
"TWO_FACTOR_SETUP_SALT": "tf-setup-salt",
"TWO_FACTOR_SETUP_WITHIN": "30 minutes",
"TWO_FACTOR_RESCUE_EMAIL": True,
"MULTI_FACTOR_RECOVERY_CODES": False,
"MULTI_FACTOR_RECOVERY_CODES_N": 5,
"MULTI_FACTOR_RECOVERY_CODES_URL": "/mf-recovery-codes",
"MULTI_FACTOR_RECOVERY_CODES_TEMPLATE": "security/mf_recovery_codes.html",
"MULTI_FACTOR_RECOVERY_URL": "/mf-recovery",
"MULTI_FACTOR_RECOVERY_TEMPLATE": "security/mf_recovery.html",
"MULTI_FACTOR_RECOVERY_CODES_KEYS": None,
"MULTI_FACTOR_RECOVERY_CODE_TTL": None,
"OAUTH_ENABLE": False,
"OAUTH_BUILTIN_PROVIDERS": ["github", "google"],
"OAUTH_START_URL": "/login/oauthstart",
"OAUTH_RESPONSE_URL": "/login/oauthresponse",
"CONFIRM_EMAIL_WITHIN": "5 days",
"RESET_PASSWORD_WITHIN": "1 days",
"LOGIN_WITHOUT_CONFIRMATION": False,
"AUTO_LOGIN_AFTER_CONFIRM": False,
"AUTO_LOGIN_AFTER_RESET": False,
"EMAIL_SENDER": LocalProxy(
lambda: current_app.config.get("MAIL_DEFAULT_SENDER", "no-reply@localhost")
),
"TWO_FACTOR_RESCUE_MAIL": "no-reply@localhost",
"TOKEN_AUTHENTICATION_KEY": "auth_token",
"TOKEN_AUTHENTICATION_HEADER": "Authentication-Token",
"TOKEN_MAX_AGE": None,
"TOKEN_EXPIRE_TIMESTAMP": lambda user: 0,
"CONFIRM_SALT": "confirm-salt",
"RESET_SALT": "reset-salt",
"LOGIN_SALT": "login-salt",
"CHANGE_SALT": "change-salt",
"REMEMBER_SALT": "remember-salt",
"DEFAULT_REMEMBER_ME": False,
"DEFAULT_HTTP_AUTH_REALM": _("Login Required"),
"EMAIL_SUBJECT_REGISTER": _("Welcome"),
"EMAIL_SUBJECT_CONFIRM": _("Please confirm your email"),
"EMAIL_SUBJECT_PASSWORDLESS": _("Login instructions"),
"EMAIL_SUBJECT_PASSWORD_NOTICE": _("Your password has been reset"),
"EMAIL_SUBJECT_PASSWORD_CHANGE_NOTICE": _("Your password has been changed"),
"EMAIL_SUBJECT_PASSWORD_RESET": _("Password reset instructions"),
"EMAIL_SUBJECT_USERNAME_CHANGE_NOTICE": _("Your username has been changed"),
"EMAIL_SUBJECT_USERNAME_RECOVERY": _("Your requested username"),
"EMAIL_PLAINTEXT": True,
"EMAIL_HTML": True,
"EMAIL_SUBJECT_TWO_FACTOR": _("Two-Factor Login"),
"EMAIL_SUBJECT_TWO_FACTOR_RESCUE": _("Two-Factor Rescue"),
"USER_IDENTITY_ATTRIBUTES": [
{"email": {"mapper": uia_email_mapper, "case_insensitive": True}}
],
"PHONE_REGION_DEFAULT": "US",
"FRESHNESS": timedelta(hours=24),
"FRESHNESS_GRACE_PERIOD": timedelta(hours=1),
"FRESHNESS_ALLOW_AUTH_TOKEN": True,
"API_ENABLED_METHODS": ["session", "token"],
"DATETIME_FACTORY": naive_utcnow,
"TOTP_SECRETS": None,
"TOTP_ISSUER": None,
"SMS_SERVICE": "Dummy",
"SMS_SERVICE_CONFIG": {
"ACCOUNT_SID": None,
"AUTH_TOKEN": None,
"PHONE_NUMBER": None,
},
"TWO_FACTOR_REQUIRED": False,
"TWO_FACTOR_ENABLED_METHODS": ["email", "authenticator", "sms"],
"TWO_FACTOR_IMPLEMENTATIONS": {
"code": "flask_security.twofactor.CodeTfPlugin",
"webauthn": "flask_security.webauthn.WebAuthnTfPlugin",
},
"UNIFIED_SIGNIN": False,
"USERNAME_RECOVERY": False,
"USERNAME_RECOVERY_TEMPLATE": "security/recover_username.html",
"USERNAME_RECOVERY_URL": "/recover-username",
"US_SETUP_SALT": "us-setup-salt",
"US_SIGNIN_URL": "/us-signin",
"US_SIGNIN_SEND_CODE_URL": "/us-signin/send-code",
"US_SETUP_URL": "/us-setup",
"US_VERIFY_URL": "/us-verify",
"US_VERIFY_SEND_CODE_URL": "/us-verify/send-code",
"US_VERIFY_LINK_URL": "/us-verify-link",
"US_POST_SETUP_VIEW": ".us_setup", # endpoint or URL
"US_SIGNIN_TEMPLATE": "security/us_signin.html",
"US_SETUP_TEMPLATE": "security/us_setup.html",
"US_VERIFY_TEMPLATE": "security/us_verify.html",
"US_ENABLED_METHODS": ["password", "email", "authenticator", "sms"],
"US_MFA_REQUIRED": ["password", "email"],
"US_TOKEN_VALIDITY": 120,
"US_EMAIL_SUBJECT": _("Verification Code"),
"US_SETUP_WITHIN": "30 minutes",
"US_SIGNIN_REPLACES_LOGIN": False,
"CSRF_PROTECT_MECHANISMS": AUTHN_MECHANISMS,
"CSRF_IGNORE_UNAUTH_ENDPOINTS": False,
"CSRF_COOKIE_NAME": None,
"CSRF_COOKIE": {
"samesite": "Strict",
"httponly": False,
"secure": False,
},
"CSRF_HEADER": "X-XSRF-Token",
"CSRF_COOKIE_REFRESH_EACH_REQUEST": False,
"BACKWARDS_COMPAT_AUTH_TOKEN": False,
"JOIN_USER_ROLES": True,
"USERNAME_ENABLE": False,
"USERNAME_REQUIRED": False,
"USERNAME_MIN_LENGTH": 4,
"USERNAME_MAX_LENGTH": 32,
"USERNAME_NORMALIZE_FORM": "NFKD",
"WEBAUTHN": False,
"WAN_CHALLENGE_BYTES": None, # uses system default
"WAN_POST_REGISTER_VIEW": ".wan_register", # endpoint or URL
"WAN_RP_NAME": "My Flask App",
"WAN_SALT": "wan-salt",
"WAN_REGISTER_TIMEOUT": 60000, # milliseconds
"WAN_REGISTER_TEMPLATE": "security/wan_register.html",
"WAN_REGISTER_URL": "/wan-register",
"WAN_REGISTER_WITHIN": "30 minutes",
"WAN_SIGNIN_TIMEOUT": 60000, # milliseconds
"WAN_SIGNIN_TEMPLATE": "security/wan_signin.html",
"WAN_SIGNIN_URL": "/wan-signin",
"WAN_SIGNIN_WITHIN": "1 minutes",
"WAN_DELETE_URL": "/wan-delete",
"WAN_VERIFY_URL": "/wan-verify",
"WAN_VERIFY_TEMPLATE": "security/wan_verify.html",
"WAN_ALLOW_AS_FIRST_FACTOR": True,
"WAN_ALLOW_AS_MULTI_FACTOR": True,
"WAN_ALLOW_USER_HINTS": True,
"WAN_ALLOW_AS_VERIFY": ["first", "secondary"],
"ZXCVBN_MINIMUM_SCORE": 3,
}
#: Default Flask-Security messages
_default_messages = {
"API_ERROR": (_("Input not appropriate for requested API"), "error"),
"GENERIC_AUTHN_FAILED": (
_("Authentication failed - identity or password/passcode invalid"),
"error",
),
"GENERIC_RECOVERY": (
_(
"If that email address is in our system, "
"you will receive an email describing how to reset your password."
),
"info",
),
"GENERIC_US_SIGNIN": (
_("If that identity is in our system, you were sent a code."),
"info",
),
"UNAUTHORIZED": (_("You do not have permission to view this resource."), "error"),
"UNAUTHENTICATED": (
_("You must sign in to view this resource."),
"error",
),
"REAUTHENTICATION_REQUIRED": (
_("You must reauthenticate to access this endpoint"),
"error",
),
"CONFIRM_REGISTRATION": (
_(
"Thank you. To confirm your email address %(email)s,"
" please click on the link"
" in the email we have just sent to you."
),
"success",
),
"EMAIL_CONFIRMED": (_("Thank you. Your email has been confirmed."), "success"),
"ALREADY_CONFIRMED": (_("Your email has already been confirmed."), "info"),
"INVALID_CONFIRMATION_TOKEN": (_("Invalid confirmation token."), "error"),
"EMAIL_ALREADY_ASSOCIATED": (
_("%(email)s is already associated with an account."),
"error",
),
"IDENTITY_ALREADY_ASSOCIATED": (
_(
"Identity attribute '%(attr)s' with value '%(value)s' is already"
" associated with an account."
),
"error",
),
"IDENTITY_NOT_REGISTERED": (
_("Identity %(id)s not registered"),
"error",
),
"OAUTH_HANDSHAKE_ERROR": (
_(
"An error occurred while communicating with the Oauth provider:"
" (%(exerror)s - %(exdesc)s). "
"Please try again."
),
"error",
),
"PASSWORD_MISMATCH": (_("Password does not match"), "error"),
"RETYPE_PASSWORD_MISMATCH": (_("Passwords do not match"), "error"),
"INVALID_REDIRECT": (_("Redirections outside the domain are forbidden"), "error"),
"INVALID_RECOVERY_CODE": (_("Recovery code invalid"), "error"),
"NO_RECOVERY_CODES_SETUP": (_("No recovery codes generated yet"), "info"),
"PASSWORD_RESET_REQUEST": (
_("Instructions to reset your password have been sent to %(email)s."),
"info",
),
"PASSWORD_RESET_EXPIRED": (
_("You did not reset your password within %(within)s. "),
"error",
),
"INVALID_RESET_PASSWORD_TOKEN": (_("Invalid reset password token."), "error"),
"CONFIRMATION_REQUIRED": (_("Email requires confirmation."), "error"),
"CONFIRMATION_REQUEST": (
_("Confirmation instructions have been sent to %(email)s."),
"info",
),
"CONFIRMATION_EXPIRED": (
_("You did not confirm your email within %(within)s. "),
"error",
),
"LOGIN_EXPIRED": (
_(
"You did not login within %(within)s. New instructions to login "
"have been sent to %(email)s."
),
"error",
),
"LOGIN_EMAIL_SENT": (
_("Instructions to login have been sent to %(email)s."),
"success",
),
"INVALID_LOGIN_TOKEN": (_("Invalid login token."), "error"),
"DISABLED_ACCOUNT": (_("Account is disabled."), "error"),
"EMAIL_NOT_PROVIDED": (_("Email not provided"), "error"),
"INVALID_EMAIL_ADDRESS": (_("Invalid email address"), "error"),
"INVALID_CODE": (_("Invalid code"), "error"),
"PASSWORD_NOT_PROVIDED": (_("Password not provided"), "error"),
"PASSWORD_INVALID_LENGTH": (
_("Password must be at least %(length)s characters"),
"error",
),
"PASSWORD_TOO_SIMPLE": (_("Password not complex enough"), "error"),
"PASSWORD_BREACHED": (_("Password on breached list"), "error"),
"PASSWORD_BREACHED_SITE_ERROR": (
_("Failed to contact breached passwords site"),
"error",
),
"PHONE_INVALID": (_("Phone number not valid e.g. missing country code"), "error"),
"USER_DOES_NOT_EXIST": (_("Specified user does not exist"), "error"),
"INVALID_PASSWORD": (_("Invalid password"), "error"),
"INVALID_PASSWORD_CODE": (_("Password or code submitted is not valid"), "error"),
"PASSWORDLESS_LOGIN_SUCCESSFUL": (_("You have successfully logged in."), "success"),
"FORGOT_PASSWORD": (_("Forgot password?"), "info"),
"PASSWORD_RESET": (
_(
"You successfully reset your password and you have been logged in "
"automatically."
),
"success",
),
"PASSWORD_RESET_NO_LOGIN": (
_(
"You successfully reset your password."
" Please authenticate using your new password."
),
"success",
),
"PASSWORD_IS_THE_SAME": (
_("Your new password must be different than your previous password."),
"error",
),
"PASSWORD_CHANGE": (_("You successfully changed your password."), "success"),
"LOGIN": (_("Please log in to access this page."), "info"),
"REFRESH": (_("Please reauthenticate to access this page."), "info"),
"REAUTHENTICATION_SUCCESSFUL": (_("Reauthentication successful"), "info"),
"ANONYMOUS_USER_REQUIRED": (
_("You can only access this endpoint when not logged in."),
"error",
),
"CODE_HAS_BEEN_SENT": (_("Code has been sent."), "info"),
"FAILED_TO_SEND_CODE": (_("Failed to send code. Please try again later"), "error"),
"TWO_FACTOR_INVALID_TOKEN": (_("Invalid code"), "error"),
"TWO_FACTOR_LOGIN_SUCCESSFUL": (_("Your code has been confirmed"), "success"),
"TWO_FACTOR_CHANGE_METHOD_SUCCESSFUL": (
_("You successfully changed your two-factor method."),
"success",
),
"TWO_FACTOR_PERMISSION_DENIED": (
_("You currently do not have permissions to access this page"),
"error",
),
"TWO_FACTOR_METHOD_NOT_AVAILABLE": (_("Marked method is not valid"), "error"),
"TWO_FACTOR_DISABLED": (
_("You successfully disabled two-factor authorization."),
"success",
),
"TWO_FACTOR_SETUP_EXPIRED": (
_("Setup must be completed within %(within)s. Please start over."),
"error",
),
"US_CURRENT_METHODS": (
_("Currently active sign in options: %(method_list)s."),
"info",
),
"US_METHOD_NOT_AVAILABLE": (_("Requested method is not valid"), "error"),
"US_SETUP_EXPIRED": (
_("Setup must be completed within %(within)s. Please start over."),
"error",
),
"US_SETUP_SUCCESSFUL": (_("Unified sign in setup successful"), "info"),
"US_SPECIFY_IDENTITY": (_("You must specify a valid identity to sign in"), "error"),
"USE_CODE": (_("Use this code to sign in: %(code)s"), "info"),
"USERNAME_CHANGE": (_("You successfully changed your username"), "success"),
"USERNAME_INVALID_LENGTH": (
_(
"Username must be at least %(min)d characters and less than"
" %(max)d characters"
),
"error",
),
"USERNAME_ILLEGAL_CHARACTERS": (
_("Username contains illegal characters"),
"error",
),
"USERNAME_DISALLOWED_CHARACTERS": (
_("Username can contain only letters and numbers"),
"error",
),
"USERNAME_NOT_PROVIDED": (_("Username not provided"), "error"),
"USERNAME_ALREADY_ASSOCIATED": (
_("%(username)s is already associated with an account."),
"error",
),
"WEBAUTHN_EXPIRED": (
_("Passkey operations must be completed within %(within)s. Please start over."),
"error",
),
"WEBAUTHN_NAME_REQUIRED": (
_("Nickname for new passkey is required."),
"error",
),
"WEBAUTHN_NAME_INUSE": (
_("%(name)s is already associated with a passkey."),
"error",
),
"WEBAUTHN_NAME_NOT_FOUND": (
_("%(name)s not registered with current user."),
"error",
),
"WEBAUTHN_CREDENTIAL_DELETED": (
_("Successfully deleted the passkey with name: %(name)s"),
"info",
),
"WEBAUTHN_REGISTER_SUCCESSFUL": (
_("Successfully added the passkey with name: %(name)s"),
"info",
),
"WEBAUTHN_CREDENTIAL_ID_INUSE": (
_("Passkey already registered."),
"error",
),
"WEBAUTHN_UNKNOWN_CREDENTIAL_ID": (
_("Unregistered passkey."),
"error",
),
"WEBAUTHN_ORPHAN_CREDENTIAL_ID": (
_("Passkey doesn't belong to any user."),
"error",
),
"WEBAUTHN_NO_VERIFY": (
_("Could not verify passkey: %(cause)s."),
"error",
),
"WEBAUTHN_CREDENTIAL_WRONG_USAGE": (
_("Passkey not registered for this use (first or secondary)"),
"error",
),
"WEBAUTHN_MISMATCH_USER_HANDLE": (
_("Credential user handle didn't match"),
"error",
),
"CHANGE_EMAIL_EXPIRED": (
_("Confirmation must be completed within %(within)s. Please start over."),
"error",
),
"CHANGE_EMAIL_CONFIRMED": (
_("Change of email address confirmed"),
"success",
),
"CHANGE_EMAIL_SENT": (
_(
"Instructions to confirm your new email address have"
" been sent to %(email)s."
),
"success",
),
"USERNAME_RECOVERY_REQUEST": (
_("If registered, your username will be sent to your email."),
"info",
),
}
def _default_form_instantiator(
name: str, cls: t.Type[Form], *args: t.Any, **kwargs: dict[str, t.Any]
) -> Form:
return cls(*args, **kwargs)
@dataclass
class FormInfo:
"""
Each view form has a name - assigned by Flask-Security.
As part of every request, the form is instantiated using (usually) request.form or
request.json.
The default instantiator simply uses the class constructor - however
applications can provide their OWN instantiator which can do pretty much anything
as long as it returns an instantiated form. The 'cls' argument is optional since
the instantiator COULD be form agnostic (using the form name to differentiate).
The instantiator callable will always be called from a flask request context
and receive the following arguments::
(name, form_cls_name (optional), **kwargs)
kwargs will always have `formdata` and often will have `meta`. All kwargs
must be passed to the underlying form constructor.
See :py:meth:`flask_security.Security.set_form_info`
.. versionadded:: 5.1.0
"""
instantiator: t.Callable[..., Form] = _default_form_instantiator
cls: t.Type[Form] | None = None
def _user_loader(user_id):
"""Load based on fs_uniquifier (alternative_id).
If the db model and db are properly configured and set there is no way we should
ever see a null user_id. But it is clearly wrong.
"""
if not user_id:
return None
user = _security.datastore.find_user(fs_uniquifier=str(user_id))
if user and user.active:
set_request_attr("fs_authn_via", "session")
set_request_attr("fs_paa", session.get("fs_paa", 0))
return user
return None
def _request_loader(request):
# Short-circuit if we have already been called and verified.
# This can happen since Flask-Login will call us (if no session) and our own
# decorator @auth_token_required can call us.
# N.B. we don't call current_user here since that in fact might try and LOAD
# a user - which would call us again.
if get_request_attr("fs_authn_via") == "token":
return g._login_user
header_key = cv("TOKEN_AUTHENTICATION_HEADER")
args_key = cv("TOKEN_AUTHENTICATION_KEY")
header_token = request.headers.get(header_key, None)
token = request.args.get(args_key, header_token)
if request.is_json:
data = request.get_json(silent=True) or {}
if isinstance(data, dict):
token = data.get(args_key, token)
try:
tdata = parse_auth_token(token)
if hasattr(_security.datastore.user_model, "fs_token_uniquifier"):
user = _security.datastore.find_user(fs_token_uniquifier=tdata["uid"])
else:
user = _security.datastore.find_user(fs_uniquifier=tdata["uid"])
except Exception:
return None
if user and user.active and user.verify_auth_token(tdata):
set_request_attr("fs_authn_via", "token")
if cv("FRESHNESS_ALLOW_AUTH_TOKEN"):
set_request_attr("fs_paa", tdata.get("fs_paa", 0))
return user
return None
def _identity_loader():
# N.B. once AnonymousUser is gone - can just check current_user
if current_user and hasattr(current_user, "fs_uniquifier"):
return Identity(current_user.fs_uniquifier)
return None
def _on_identity_loaded(sender, identity):
if current_user and hasattr(current_user, "fs_uniquifier"):
identity.provides.add(UserNeed(current_user.fs_uniquifier))
for role in getattr(current_user, "roles", []):
identity.provides.add(RoleNeed(role.name))
for fsperm in role.get_permissions():
identity.provides.add(FsPermNeed(fsperm))
identity.user = current_user
def _get_login_manager(app, security):
lm = LoginManager()
# Flask-Login is likely going in the direction of removing AnonymousUser
# however this might wreak havoc on applications that just assume that
# current_user is always set.
if cv("ANONYMOUS_USER_DISABLED", app=app):
lm.anonymous_user = lambda: None
else:
lm.anonymous_user = AnonymousUser
lm.user_loader(_user_loader)
lm.request_loader(_request_loader)
# Set Flask-Login handler so @login_required will have same behavior as
# @auth_required
lm.unauthorized_callback = security._unauthn_handler
# Note: since we redirect unauthenticated requests to us - we no longer need to
# mess with Flask-Login login_view, or message settings.
# We also (5.4.0) stop doing anything with need_fresh_login - we support time-based
# freshness.
lm.init_app(app)
return lm
def _get_principal(app):
p = Principal(app, use_sessions=False)
p.identity_loader(_identity_loader)
return p
def _get_pwd_context(app: flask.Flask) -> CryptContext:
pw_hash = cv("PASSWORD_HASH", app=app)
schemes = cv("PASSWORD_SCHEMES", app=app)
deprecated = cv("DEPRECATED_PASSWORD_SCHEMES", app=app)
if pw_hash not in schemes:
allowed = ", ".join(schemes[:-1]) + " and " + schemes[-1]
raise ValueError(
f"Invalid password hashing scheme {pw_hash}. Allowed values are {allowed}"
)
cc = CryptContext(
schemes=schemes,
default=pw_hash,
deprecated=deprecated,
**cv("PASSWORD_HASH_PASSLIB_OPTIONS", app=app),
)
return cc
def _get_hashing_context(app: flask.Flask) -> CryptContext:
schemes = cv("HASHING_SCHEMES", app=app)
deprecated = cv("DEPRECATED_HASHING_SCHEMES", app=app)
return CryptContext(schemes=schemes, deprecated=deprecated)
def _get_serializer(app, name):
secret_key = app.config.get("SECRET_KEY")
derived_keys = app.config.get("SECRET_KEY_FALLBACKS")
secret_keys = [secret_key] + (
derived_keys if isinstance(derived_keys, list) else []
)
salt = cv(f"{name.upper()}_SALT", app=app)
return URLSafeTimedSerializer(secret_keys, salt=salt)
def _context_processor():
return dict(
url_for_security=url_for_security,
security=_security,
_fs_is_user_authenticated=is_user_authenticated,
)
class RoleMixin:
"""Mixin for `Role` model definitions"""
if t.TYPE_CHECKING: # pragma: no cover
id: int
name: str
description: str | None
permissions: list[str] | None
update_datetime: datetime
def __init__(self, **kwargs): ...
def __eq__(self, other):
return self.name == other or self.name == getattr(other, "name", None)
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash(self.name)
def get_permissions(self) -> set:
"""
Return set of permissions associated with role.
.. versionadded:: 3.3.0
"""
if hasattr(self, "permissions") and self.permissions:
return set(self.permissions)
return set()
class UserMixin(BaseUserMixin):
"""Mixin for `User` model definitions"""
if t.TYPE_CHECKING: # pragma: no cover
# These are defined in the applications Model files.
id: int
email: str
username: str | None
password: str | None
active: bool
fs_uniquifier: str
fs_token_uniquifier: str
fs_webauthn_user_handle: str
confirmed_at: datetime | None
last_login_at: datetime
current_login_at: datetime
last_login_ip: str | None
current_login_ip: str | None
login_count: int
tf_primary_method: str | None
tf_totp_secret: str | None
tf_phone_number: str | None
mf_recovery_codes: list[str] | None
us_phone_number: str | None
us_totp_secrets: str | bytes | None
create_datetime: datetime
update_datetime: datetime
roles: list[RoleMixin]
webauthn: list[WebAuthnMixin]
def __init__(self, **kwargs): ...
def get_id(self) -> str:
"""Returns the user identification attribute. 'Alternative-token' for
Flask-Login. This is always ``fs_uniquifier``.
.. versionadded:: 3.4.0
"""
return str(self.fs_uniquifier)
@property
def is_active(self) -> bool:
"""Returns `True` if the user is active."""
return self.active
def get_auth_token(self) -> str | bytes:
"""Constructs the user's authentication token.
:raises ValueError: If ``fs_token_uniquifier`` is part of model but not set.
Uses ``fs_uniquifier`` or ``fs_token_uniquifier`` (if in the UserModel)
to identify this user. If ``fs_token_uniquifier`` is used then
changing password doesn't invalidate auth tokens.
Calls :meth:`.UserMixin.augment_auth_token` which applications can override
to add any additional information.
The returned value is securely signed using the ``remember_token_serializer``
.. versionchanged:: 4.0.0
If user model has ``fs_token_uniquifier`` - use that (raise ValueError
if not set). Otherwise, fallback to using ``fs_uniquifier``.
.. versionchanged:: 5.4.0
New format - a dict with a version string. Add a token-based expiry
option as well as a session id.
.. versionchanged:: 5.5.0
Remove session id (never set or used); added fs_paa (last authentication
timestamp)
"""
tdata: dict[str, t.Any] = dict(ver=str(5))
if hasattr(self, "fs_token_uniquifier"):
if not self.fs_token_uniquifier:
raise ValueError()
tdata["uid"] = str(self.fs_token_uniquifier)
else:
tdata["uid"] = str(self.fs_uniquifier)
# Set the primary authenticated at variable. This is equivalent to
# what we set in the session.
tdata["fs_paa"] = time.time() # equivalent of session["fs_paa"]
tdata["exp"] = int(cv("TOKEN_EXPIRE_TIMESTAMP")(self)) # if >0 then shorter of
# :data:SECURITY_MAX_AGE and this.
# Let application add things
self.augment_auth_token(tdata)
# Serialize and sign
return _security.remember_token_serializer.dumps(tdata)
def augment_auth_token(self, tdata: dict[str, t.Any]) -> None:
"""Override this to add/modify parts of the auth token.
Additions to the dict can be made here and verified in
:meth:`.UserMixin.verify_auth_token`
.. versionadded:: 5.4.0
"""
return
def verify_auth_token(self, tdata: dict[str, t.Any]) -> bool:
"""
Override this to perform additional verification of contents of auth token.
Prior to this being called the token has been validated (via signing)
and has not expired (either with MAX_AGE or specific 'exp' value).
:param tdata: a dictionary just as in augment_auth_token()
:return: True if auth token represented by tdata is valid, False otherwise.
.. versionadded:: 3.3.0
.. versionchanged:: 5.4.0
Now receives a dictionary.
"""
return True
def has_role(self, role: str | RoleMixin) -> bool:
"""Returns `True` if the user identifies with the specified role.
:param role: A role name or `Role` instance"""
if isinstance(role, str):
return role in (role.name for role in self.roles)
else:
return role in self.roles
def has_permission(self, permission: str) -> bool:
"""
Returns `True` if user has this permission (via a role it has).
:param permission: permission string name
.. versionadded:: 3.3.0
"""
for role in self.roles:
if permission in role.get_permissions():
return True
return False
def get_security_payload(self) -> dict[str, t.Any]:
"""Serialize user object as response payload.
Override this to return any/all of the user object in JSON responses.
Return a dict.
"""
return {}
def get_redirect_qparams(
self, existing: dict[str, t.Any] | None = None
) -> dict[str, t.Any]:
"""Return user info that will be added to redirect query params.
:param existing: A dict that will be updated.
:return: A dict whose keys will be query params and values will be query values.
The returned dict will always have an 'identity' key/value.
If the User Model contains 'email', an 'email' key/value will be added.
All keys provided in 'existing' will also be merged in.
.. versionadded:: 3.2.0
.. versionchanged:: 4.0.0
Add 'identity' using UserMixin.calc_username() - email is optional.
"""
if not existing:
existing = {}
if hasattr(self, "email"):
existing.update({"email": self.email})
existing.update({"identity": self.calc_username()})
return existing
def verify_and_update_password(self, password: str) -> bool:
"""Returns ``True`` if the password is valid for the specified user.
Additionally, the hashed password in the database is updated if the
hashing algorithm happens to have changed.
N.B. you MUST call DB commit if you are using a session-based datastore
(such as SqlAlchemy) since the user instance might have been altered
(i.e. ``app.security.datastore.commit()``).
This is usually handled in the view.
:param password: A plaintext password to verify
.. versionadded:: 3.2.0
"""
return verify_and_update_password(password, self)
def calc_username(self) -> str:
"""Come up with the best 'username' based on how the app
is configured (via :py:data:`SECURITY_USER_IDENTITY_ATTRIBUTES`).
Returns the first non-null match (and converts to string).
In theory this should NEVER be the empty string unless the user
record isn't actually valid.
.. versionadded:: 3.4.0
"""
cusername = None
for attr in get_identity_attributes():
cusername = getattr(self, attr, None)
if cusername is not None and len(str(cusername)) > 0:
break
return str(cusername) if cusername is not None else ""
def us_send_security_token(self, method: str, **kwargs: t.Any) -> str | None:
"""Generate and send the security code for unified sign in.
:param method: The method in which the code will be sent
:param kwargs: Opaque parameters that are subject to change at any time
:return: None if successful, error message if not.
This is a wrapper around :meth:`us_send_security_token`
that can be overridden to manage any errors.
.. versionadded:: 3.4.0
"""
try:
us_send_security_token(self, method, **kwargs)
except Exception:
return get_message("FAILED_TO_SEND_CODE")[0]
return None
def tf_send_security_token(self, method: str, **kwargs: t.Any) -> str | None:
"""Generate and send the security code for two-factor.
:param method: The method in which the code will be sent
:param kwargs: Opaque parameters that are subject to change at any time
:return: None if successful, error message if not.
This is a wrapper around :meth:`tf_send_security_token`
that can be overridden to manage any errors.
.. versionadded:: 3.4.0
"""
try:
tf_send_security_token(self, method, **kwargs)
except Exception:
return get_message("FAILED_TO_SEND_CODE")[0]
return None
class WebAuthnMixin:
if t.TYPE_CHECKING: # pragma: no cover
# These are defined in the applications Model files.
id: int
name: str
credential_id: bytes
public_key: bytes
sign_count: int
transports: list[str] | None
backup_state: bool
device_type: str
extensions: str | None
lastuse_datetime: datetime
usage: str
def __init__(self, **kwargs): ...
def get_user_mapping(self) -> dict[str, t.Any]:
"""
Return the filter needed by find_user() to get the user
associated with this webauthn credential.
Note that this probably has to be overridden when using mongoengine.
.. versionadded:: 5.0.0
"""
return dict(id=self.user_id) # type: ignore
class AnonymousUser(AnonymousUserMixin):
"""AnonymousUser definition"""
def __init__(self):
self.roles = ImmutableList()
def has_role(self, *args):
"""Returns `False`"""
return False
class Security:
"""The :class:`Security` class initializes the Flask-Security extension.
:param app: The application.
:param datastore: An instance of a user datastore.
:param register_blueprint: to register the Security blueprint or not.
:param login_form: set form for the login view
:param verify_form: set form for reauthentication due to freshness check
:param change_email_form: set form for changing email address
:param register_form: set form for the register view when
:data:`SECURITY_CONFIRMABLE` is false (deprecated) or for the register view
when :data:`SECURITY_USE_REGISTER_V2` is true.
:param confirm_register_form: set form for the register view when
:data:`SECURITY_CONFIRMABLE` is true (deprecated)
:param forgot_password_form: set form for the forgot password view
:param reset_password_form: set form for the reset password view
:param change_password_form: set form for the change password view
:param change_username_form: set form for the change username view
:param send_confirmation_form: set form for the send confirmation view
:param passwordless_login_form: set form for the passwordless login view
:param two_factor_setup_form: set form for the 2FA setup view
:param two_factor_verify_code_form: set form the the 2FA verify code view
:param two_factor_rescue_form: set form for the 2FA rescue view
:param two_factor_select_form: set form for selecting between active 2FA methods
:param mf_recovery_codes_form: set form for retrieving and setting recovery codes
:param mf_recovery_form: set form for multi factor recovery
:param username_recovery_form: set form for the username recovery view
:param us_signin_form: set form for the unified sign in view
:param us_setup_form: set form for the unified sign in setup view
:param us_setup_validate_form: set form for the unified sign in setup validate view
:param us_verify_form: set form for reauthenticating due to freshness check
:param wan_register_form: set form for registering a webauthn security key
:param wan_register_response_form: set form for registering a webauthn security key
:param wan_signin_form: set form for authenticating with a webauthn security key
:param wan_signin_response_form: set form for authenticating with a webauthn
:param wan_delete_form: set form for deleting a webauthn security key
:param wan_verify_form: set form for using a webauthn key to verify authenticity
:param mail_util_cls: Class to use for sending emails. Defaults to :class:`MailUtil`
:param password_util_cls: Class to use for password normalization/validation.
Defaults to :class:`PasswordUtil`
:param phone_util_cls: Class to use for phone number utilities.
Defaults to :class:`PhoneUtil`
:param render_template: function to use to render templates. The default is Flask's
render_template() function.
:param totp_cls: Class to use as TOTP factory. Defaults to :class:`Totp`
:param username_util_cls: Class to use for normalizing and validating usernames.
Defaults to :class:`UsernameUtil`
:param webauthn_util_cls: Class to use for customizing WebAuthn registration
and signin. Defaults to :class:`WebauthnUtil`
:param mf_recovery_codes_util_cls: Class for generating, checking, encrypting
and decrypting recovery codes. Defaults to :class:`MfRecoveryCodesUtil`
:param oauth: An instance of authlib.integrations.flask_client.OAuth. If not set,
Flask-Security will create one.
.. tip::
Be sure that all your configuration values have been set PRIOR to
instantiating this class. Some configuration values are set as attributes
on the instance and therefore won't track any changes.
.. versionadded:: 3.4.0
``verify_form`` added as part of freshness/reauthentication
.. versionadded:: 3.4.0
``us_signin_form``, ``us_setup_form``, ``us_setup_validate_form``, and
``us_verify_form`` added as part of the :ref:`configuration:unified signin`
feature.
.. versionadded:: 3.4.0
``totp_cls`` added to enable applications to implement replay protection - see
:py:class:`Totp`.
.. versionadded:: 3.4.0
``phone_util_cls`` added to allow different phone number
parsing implementations - see :py:class:`PhoneUtil`
.. versionadded:: 4.0.0
``mail_util_cls`` added to isolate mailing handling.
``password_util_cls`` added to encapsulate password validation/normalization.
.. versionadded:: 4.1.0
``username_util_cls`` added to encapsulate username handling.
.. versionadded:: 5.0.0
``wan_register_form``, ``wan_register_response_form``,
``webauthn_signin_form``, ``wan_signin_response_form``,
``webauthn_delete_form``, ``webauthn_verify_form``, ``tf_select_form``.
.. versionadded:: 5.0.0
``WebauthnUtil`` class.
.. versionadded:: 5.0.0
Added support for multi-factor recovery codes ``mf_recovery_codes_form``,
``mf_recovery_form``.
.. versionadded:: 5.1.0
``mf_recovery_codes_util_cls``, ``oauth``
.. versionadded:: 5.5.0
``change_email_form`` in support of the
:ref:`Change-Email<configuration:change-email>` feature.
.. versionadded:: 5.6.0
``username_recovery_form``, ``change_username_form``,
.. versionchanged:: 5.7.0
``register_form`` default value is RegisterFormV2 and
``confirm_register_form`` default is now ``None``.
.. deprecated:: 4.0.0
``send_mail`` and ``send_mail_task``. Replaced with ``mail_util_cls``.
``two_factor_verify_password_form`` removed.
``password_validator`` removed in favor of the new ``password_util_cls``.
.. deprecated:: 5.0.0
Passing in a LoginManager instance. Removed in 5.1.0
.. deprecated:: 5.0.0
json_encoder_cls is no longer honored since Flask 2.2 has deprecated it.
.. deprecated:: 5.3.1
Passing in an anonymous_user class. Removed in 5.4.0
.. deprecated:: 5.6.0
Passing in a confirm_register_form class.
"""
def __init__(
self,
app: flask.Flask | None = None,
datastore: UserDatastore | None = None,
register_blueprint: bool = True,
*,
login_form: t.Type[LoginForm] = LoginForm,
verify_form: t.Type[VerifyForm] = VerifyForm,
change_email_form: t.Type[ChangeEmailForm] = ChangeEmailForm,
change_username_form: t.Type[ChangeUsernameForm] = ChangeUsernameForm,
confirm_register_form: t.Type[ConfirmRegisterForm] | None = None,
register_form: t.Type[RegisterForm] | t.Type[RegisterFormV2] = RegisterFormV2,
forgot_password_form: t.Type[ForgotPasswordForm] = ForgotPasswordForm,
reset_password_form: t.Type[ResetPasswordForm] = ResetPasswordForm,
change_password_form: t.Type[ChangePasswordForm] = ChangePasswordForm,
send_confirmation_form: t.Type[SendConfirmationForm] = SendConfirmationForm,
passwordless_login_form: t.Type[PasswordlessLoginForm] = PasswordlessLoginForm,
two_factor_verify_code_form: t.Type[
TwoFactorVerifyCodeForm
] = TwoFactorVerifyCodeForm,
two_factor_setup_form: t.Type[TwoFactorSetupForm] = TwoFactorSetupForm,
two_factor_rescue_form: t.Type[TwoFactorRescueForm] = TwoFactorRescueForm,
two_factor_select_form: t.Type[TwoFactorSelectForm] = TwoFactorSelectForm,
mf_recovery_codes_form: t.Type[MfRecoveryCodesForm] = MfRecoveryCodesForm,
mf_recovery_form: t.Type[MfRecoveryForm] = MfRecoveryForm,
us_signin_form: t.Type[UnifiedSigninForm] = UnifiedSigninForm,
us_setup_form: t.Type[UnifiedSigninSetupForm] = UnifiedSigninSetupForm,
us_setup_validate_form: t.Type[
UnifiedSigninSetupValidateForm
] = UnifiedSigninSetupValidateForm,
us_verify_form: t.Type[UnifiedVerifyForm] = UnifiedVerifyForm,
wan_register_form: t.Type[WebAuthnRegisterForm] = WebAuthnRegisterForm,
wan_register_response_form: t.Type[
WebAuthnRegisterResponseForm
] = WebAuthnRegisterResponseForm,
wan_signin_form: t.Type[WebAuthnSigninForm] = WebAuthnSigninForm,
wan_signin_response_form: t.Type[
WebAuthnSigninResponseForm
] = WebAuthnSigninResponseForm,
wan_delete_form: t.Type[WebAuthnDeleteForm] = WebAuthnDeleteForm,
wan_verify_form: t.Type[WebAuthnVerifyForm] = WebAuthnVerifyForm,
mail_util_cls: t.Type[MailUtil] = MailUtil,
password_util_cls: t.Type[PasswordUtil] = PasswordUtil,
phone_util_cls: t.Type[PhoneUtil] = PhoneUtil,
render_template: t.Callable[..., str] = default_render_template,
totp_cls: t.Type[Totp] = Totp,
username_recovery_form: t.Type[UsernameRecoveryForm] = UsernameRecoveryForm,
username_util_cls: t.Type[UsernameUtil] = UsernameUtil,
webauthn_util_cls: t.Type[WebauthnUtil] = WebauthnUtil,
mf_recovery_codes_util_cls: t.Type[MfRecoveryCodesUtil] = MfRecoveryCodesUtil,
oauth: OAuth | None = None,
**kwargs: t.Any,
):
# to be nice and hopefully avoid backwards compat issues - we still accept
# kwargs - but we don't do anything with them. If caller sends in some -
# output a deprecation warning
if len(kwargs) > 0:
warnings.warn(
"kwargs passed to the constructor are now ignored",
DeprecationWarning,
stacklevel=2,
)
self.app = app
self._datastore = datastore
self._register_blueprint = register_blueprint
self._mail_util_cls = mail_util_cls
self._password_util_cls = password_util_cls
self._phone_util_cls = phone_util_cls
self.render_template = render_template
self._totp_cls = totp_cls
self._username_util_cls = username_util_cls
self._webauthn_util_cls = webauthn_util_cls
self._mf_recovery_codes_util_cls = mf_recovery_codes_util_cls
self._oauth = oauth
# Forms - we create a list from constructor.
# BC - in init_app we will allow override of class.
self.forms = {
"login_form": FormInfo(cls=login_form),
"verify_form": FormInfo(cls=verify_form),
"confirm_register_form": FormInfo(cls=confirm_register_form),
"register_form": FormInfo(cls=register_form),
"forgot_password_form": FormInfo(cls=forgot_password_form),
"reset_password_form": FormInfo(cls=reset_password_form),
"change_email_form": FormInfo(cls=change_email_form),
"change_password_form": FormInfo(cls=change_password_form),
"change_username_form": FormInfo(cls=change_username_form),
"send_confirmation_form": FormInfo(cls=send_confirmation_form),
"passwordless_login_form": FormInfo(cls=passwordless_login_form),
"two_factor_verify_code_form": FormInfo(cls=two_factor_verify_code_form),
"two_factor_setup_form": FormInfo(cls=two_factor_setup_form),
"two_factor_rescue_form": FormInfo(cls=two_factor_rescue_form),
"two_factor_select_form": FormInfo(cls=two_factor_select_form),
"mf_recovery_codes_form": FormInfo(cls=mf_recovery_codes_form),
"mf_recovery_form": FormInfo(cls=mf_recovery_form),
"username_recovery_form": FormInfo(cls=username_recovery_form),
"us_signin_form": FormInfo(cls=us_signin_form),
"us_setup_form": FormInfo(cls=us_setup_form),
"us_setup_validate_form": FormInfo(cls=us_setup_validate_form),
"us_verify_form": FormInfo(cls=us_verify_form),
"wan_register_form": FormInfo(cls=wan_register_form),
"wan_register_response_form": FormInfo(cls=wan_register_response_form),
"wan_signin_form": FormInfo(cls=wan_signin_form),
"wan_signin_response_form": FormInfo(cls=wan_signin_response_form),
"wan_delete_form": FormInfo(cls=wan_delete_form),
"wan_verify_form": FormInfo(cls=wan_verify_form),
}
# Attributes not settable from init.
self._unauthn_handler: t.Callable[..., ResponseValue] = default_unauthn_handler
self._reauthn_handler: t.Callable[[timedelta, timedelta], ResponseValue] = (
default_reauthn_handler
)
self._unauthz_handler: t.Callable[[str, list[str] | None], ResponseValue] = (
default_unauthz_handler
)
self._render_json: t.Callable[
[dict[str, t.Any], int, dict[str, str] | None, UserMixin | None],
ResponseValue,
] = default_render_json
self._want_json: t.Callable[[Request], bool] = default_want_json
# Type attributes that we don't initialize until init_app time.
self.remember_token_serializer: URLSafeTimedSerializer
self.login_serializer: URLSafeTimedSerializer
self.reset_serializer: URLSafeTimedSerializer
self.change_email_serializer: URLSafeTimedSerializer
self.confirm_serializer: URLSafeTimedSerializer
self.us_setup_serializer: URLSafeTimedSerializer
self.tf_setup_serializer: URLSafeTimedSerializer
self.tf_validity_serializer: URLSafeTimedSerializer
self.wan_serializer: URLSafeTimedSerializer
self.principal: Principal
self.pwd_context: CryptContext
self.hashing_context: CryptContext
self._context_processors: dict[str, list[t.Callable[[], dict[str, t.Any]]]] = {}
self.i18n_domain: FsDomain
self.datastore: UserDatastore
self.register_blueprint: bool
self.two_factor_plugins: TfPlugin
self.oauthglue: OAuthGlue | None = None
self.datetime_factory: t.Callable[[], datetime] = (
naive_utcnow # can be changed in init_app()
)
self.login_manager: flask_login.LoginManager
self._mail_util: MailUtil
self._phone_util: PhoneUtil
self._password_util: PasswordUtil
self._totp_factory: Totp
self._username_util: UsernameUtil
self._webauthn_util: WebauthnUtil
self._mf_recovery_codes_util: MfRecoveryCodesUtil
# Add necessary attributes here to keep mypy happy
self.trackable: bool = False
self.change_email: bool = False
self.change_username: bool = False
self.confirmable: bool = False
self.registerable: bool = False
self.changeable: bool = False
self.recoverable: bool = False
self.two_factor: bool = False
self.unified_signin: bool = False
self.passwordless: bool = False
self.username_recovery: bool = False
self.webauthn: bool = False
self.support_mfa: bool = False
if app is not None and datastore is not None:
self.init_app(app, datastore, register_blueprint=register_blueprint)
def init_app(
self,
app: flask.Flask,
datastore: UserDatastore | None = None,
register_blueprint: bool | None = None,
**kwargs: t.Any,
) -> None:
"""Initializes the Flask-Security extension for the specified
application and datastore implementation.
:param app: The application.
:param datastore: An instance of a user datastore.
:param register_blueprint: to register the Security blueprint or not.
:param kwargs: Can be used to override/initialize any of the form names,
or feature flags.
All other kwargs are ignored.
If you create the Security instance with both an 'app' and 'datastore'
you shouldn't call this - it will be called as part of the constructor.
"""
self.app = app
if datastore:
self._datastore = datastore
if not self._datastore:
raise ValueError("Datastore must be provided")
self.datastore = self._datastore
if register_blueprint is not None:
self._register_blueprint = register_blueprint
self.register_blueprint = self._register_blueprint
# default post redirects to APPLICATION_ROOT, which itself defaults to "/"
app.config.setdefault(
"SECURITY_POST_LOGIN_VIEW", app.config.get("APPLICATION_ROOT", "/")
)
app.config.setdefault(
"SECURITY_POST_LOGOUT_VIEW", app.config.get("APPLICATION_ROOT", "/")
)
for key, value in _default_config.items():
app.config.setdefault("SECURITY_" + key, value)
for key, value in _default_messages.items():
app.config.setdefault("SECURITY_MSG_" + key, value)
# Override default forms
# BC - kwarg value here overrides init/constructor time
# BC - we allow forms to be set from config
form_names = [
"login_form",
"verify_form",
"change_email_form",
"confirm_register_form",
"register_form",
"forgot_password_form",
"reset_password_form",
"change_password_form",
"change_username_form",
"send_confirmation_form",
"passwordless_login_form",
"two_factor_verify_code_form",
"two_factor_setup_form",
"two_factor_rescue_form",
"two_factor_select_form",
"mf_recovery_form",
"mf_recovery_codes_form",
"username_recovery_form",
"us_signin_form",
"us_setup_form",
"us_setup_validate_form",
"us_verify_form",
"wan_register_form",
"wan_register_response_form",
"wan_signin_form",
"wan_signin_response_form",
"wan_delete_form",
"wan_verify_form",
]
for form_name in form_names:
if form_cls := kwargs.get(
form_name, cv(form_name.upper(), app, strict=False)
):
self.forms[form_name].cls = form_cls
# deprecate confirm_register_form, ConfirmRegisterForm and RegisterForm
if self.forms["confirm_register_form"].cls:
warnings.warn(
"The ConfirmRegisterForm and the confirm_register_form"
" option are"
" deprecated as of version 5.6.0 and will be removed in a future"
" release.",
DeprecationWarning,
stacklevel=2,
)
if self.forms["register_form"].cls and issubclass(
self.forms["register_form"].cls, RegisterForm
):
warnings.warn(
"The RegisterForm is"
" deprecated as of version 5.6.0 and will be removed in a future"
" release. The form RegisterFormV2 should be sub-classed instead.",
DeprecationWarning,
stacklevel=2,
)
if not cv("USE_REGISTER_V2", app=app):
warnings.warn(
"The SECURITY_USE_REGISTER_V2 configuration option is"
" deprecated as of version 5.7.0 and will be removed in a future"
" release.",
DeprecationWarning,
stacklevel=2,
)
# Switch back to old register and confirm_register forms
# Only do this is they haven't subclassed
if self.forms["register_form"].cls == RegisterFormV2:
self.forms["register_form"].cls = RegisterForm
if not self.forms["confirm_register_form"].cls:
self.forms["confirm_register_form"].cls = ConfirmRegisterForm
# The following will be set as attributes and initialized from constructor or
# kwargs or config.
attr_names = [
"trackable",
"registerable",
"change_email",
"change_username",
"confirmable",
"changeable",
"recoverable",
"two_factor",
"unified_signin",
"username_recovery",
"passwordless",
"webauthn",
"render_template",
"datetime_factory",
]
for attr in attr_names:
if ov := kwargs.get(attr, cv(attr.upper(), app, strict=False)):
setattr(self, attr, ov)
identity_loaded.connect_via(app)(_on_identity_loaded)
if hasattr(self.datastore, "user_model") and not hasattr(
self.datastore.user_model, "fs_uniquifier"
): # pragma: no cover
raise ValueError("User model must contain fs_uniquifier as of 4.0.0")
if not cv("PASSWORD_REQUIRED", app=app) and not cv("UNIFIED_SIGNIN", app=app):
raise ValueError(
"SECURITY_PASSWORD_REQUIRED can only be set to False if"
" the SECURITY_UNIFIED_SIGNIN feature is enabled"
)
# Check for pre-4.0 SECURITY_USER_IDENTITY_ATTRIBUTES format
for uia in cv("USER_IDENTITY_ATTRIBUTES", app=app): # pragma: no cover
if not isinstance(uia, dict):
raise ValueError(
"SECURITY_USER_IDENTITY_ATTRIBUTES changed semantics"
" in 4.0 - please see release notes."
)
if len(list(uia.keys())) != 1:
raise ValueError(
"Each element in SECURITY_USER_IDENTITY_ATTRIBUTES"
" must have one and only one key."
)
self.login_manager = _get_login_manager(app, self)
self._phone_util = self._phone_util_cls(app)
self._mail_util = self._mail_util_cls(app)
self._password_util = self._password_util_cls(app)
self._username_util = self._username_util_cls(app)
self._webauthn_util = self._webauthn_util_cls(app)
self._mf_recovery_codes_util = self._mf_recovery_codes_util_cls(app)
self.remember_token_serializer = _get_serializer(app, "remember")
self.login_serializer = _get_serializer(app, "login")
self.reset_serializer = _get_serializer(app, "reset")
self.change_email_serializer = _get_serializer(app, "change_email")
self.confirm_serializer = _get_serializer(app, "confirm")
self.us_setup_serializer = _get_serializer(app, "us_setup")
self.tf_setup_serializer = _get_serializer(app, "two_factor_setup")
self.tf_validity_serializer = _get_serializer(app, "two_factor_validity")
self.wan_serializer = _get_serializer(app, "wan")
self.principal = _get_principal(app)
self.pwd_context = _get_pwd_context(app)
self.hashing_context = _get_hashing_context(app)
self.i18n_domain = FsDomain(app)
if cv("WEBAUTHN", app=app) or cv("TWO_FACTOR", app):
self.support_mfa = True
if cv("PASSWORDLESS", app=app):
warnings.warn(
"The passwordless feature was deprecated in Version 5.0.0"
" and will be removed in the future. Please use the Unified Signin"
" feature instead.",
DeprecationWarning,
stacklevel=2,
)
if cv("AUTO_LOGIN_AFTER_RESET", app=app):
warnings.warn(
"The auto-login after successful password reset functionality"
" has been deprecated and will be removed in a future release.",
DeprecationWarning,
stacklevel=2,
)
if cv("USERNAME_ENABLE", app):
if hasattr(self.datastore, "user_model") and not hasattr(
self.datastore.user_model, "username"
): # pragma: no cover
raise ValueError(
"User model must contain 'username' if"
" SECURITY_USERNAME_ENABLE is True"
)
# if not already listed in user identity attributes, add it at the end
uialist = []
for uia in cv("USER_IDENTITY_ATTRIBUTES", app=app):
uialist.append(list(uia.keys())[0])
if "username" not in uialist:
uias = cv("USER_IDENTITY_ATTRIBUTES", app=app).copy()
uias.append(
{
"username": {
"mapper": uia_username_mapper,
"case_insensitive": True,
}
}
)
app.config["SECURITY_USER_IDENTITY_ATTRIBUTES"] = uias
self.user_identity_attributes = uias
# Add dynamic fields - probably overkill to check if these are our forms.
fcls = self.forms["register_form"].cls
if fcls and issubclass(fcls, RegisterFormMixin):
fcls.username = build_username_field(app)
fcls = self.forms["confirm_register_form"].cls
if fcls and issubclass(fcls, RegisterFormMixin):
fcls.username = build_username_field(app)
fcls = self.forms["login_form"].cls
if fcls and issubclass(fcls, LoginForm):
build_login_form(app=app, fcls=fcls)
# new unified RegisterForm
fcls = self.forms["register_form"].cls
if fcls and issubclass(fcls, RegisterFormV2):
build_register_form(app=app, fcls=fcls)
fcls = self.forms["change_username_form"].cls
if fcls and issubclass(fcls, ChangeUsernameForm):
fcls.username = build_username_field(app=app)
# initialize two-factor plugins. Note that each implementation likely
# has its own feature flag which will control whether it is active or not.
self.two_factor_plugins = TfPlugin()
for name, impl_class in cv("TWO_FACTOR_IMPLEMENTATIONS", app).items():
module_path, class_name = impl_class.rsplit(".", 1)
module = importlib.import_module(module_path)
self.two_factor_plugins.register_tf_impl(
app, name, getattr(module, class_name)
)
if cv("OAUTH_ENABLE", app=app):
self.oauthglue = OAuthGlue(app, self._oauth)
# register our blueprint/endpoints
bp = None
if self.register_blueprint:
bp = create_blueprint(app, self, __name__)
self.two_factor_plugins.create_blueprint(app, bp, self)
if self.oauthglue:
self.oauthglue._create_blueprint(app, bp)
app.register_blueprint(bp)
app.context_processor(_context_processor)
if hasattr(app, "cli"):
from .cli import users, roles
if un := cv("CLI_USERS_NAME", app, strict=True):
app.cli.add_command(users, un)
if rn := cv("CLI_ROLES_NAME", app, strict=True):
app.cli.add_command(roles, rn)
# Alternate/code authentication configuration checks and setup
alt_auth = False
if cv("UNIFIED_SIGNIN", app=app):
alt_auth = True
if len(cv("US_ENABLED_METHODS", app=app)) < 1:
raise ValueError("Must configure some US_ENABLED_METHODS")
if "sms" in cv(
"US_ENABLED_METHODS", app=app
) and not get_identity_attribute("us_phone_number", app=app):
warnings.warn(
"'sms' was enabled in SECURITY_US_ENABLED_METHODS;"
" however 'us_phone_number' not configured in"
" SECURITY_USER_IDENTITY_ATTRIBUTES",
stacklevel=2,
)
if cv("TWO_FACTOR", app=app):
alt_auth = True
if len(cv("TWO_FACTOR_ENABLED_METHODS", app=app)) < 1:
raise ValueError("Must configure some TWO_FACTOR_ENABLED_METHODS")
if cv("MULTI_FACTOR_RECOVERY_CODES", app=app):
# These rely on totp to generate
alt_auth = True
if alt_auth:
# cryptography is used to encrypt TOTP secrets
self._check_modules("cryptography", "TWO_FACTOR or UNIFIED_SIGNIN")
need_qrcode = (
cv("UNIFIED_SIGNIN", app=app)
and "authenticator" in cv("US_ENABLED_METHODS", app=app)
) or (
cv("TWO_FACTOR", app=app)
and "authenticator" in cv("TWO_FACTOR_ENABLED_METHODS", app=app)
)
if need_qrcode:
self._check_modules("qrcode", "TWO_FACTOR or UNIFIED_SIGNIN")
need_sms = (
cv("UNIFIED_SIGNIN", app=app)
and "sms" in cv("US_ENABLED_METHODS", app=app)
) or (
cv("TWO_FACTOR", app=app)
and "sms" in cv("TWO_FACTOR_ENABLED_METHODS", app=app)
)
if need_sms:
sms_service = cv("SMS_SERVICE", app=app)
if sms_service == "Twilio": # pragma: no cover
self._check_modules("twilio", "SMS")
if self._phone_util_cls == PhoneUtil:
self._check_modules("phonenumbers", "SMS")
secrets = cv("TOTP_SECRETS", app=app)
issuer = cv("TOTP_ISSUER", app=app)
if not secrets or not issuer:
raise ValueError("Both TOTP_SECRETS and TOTP_ISSUER must be set")
self._totp_factory = self._totp_cls(secrets, issuer)
if cv("PASSWORD_COMPLEXITY_CHECKER", app=app) == "zxcvbn":
self._check_modules("zxcvbn", "PASSWORD_COMPLEXITY_CHECKER")
if cv("WEBAUTHN", app=app):
self._check_modules("webauthn", "WEBAUTHN")
if cv("USERNAME_ENABLE", app=app) and self._username_util_cls == UsernameUtil:
self._check_modules("bleach", "USERNAME_ENABLE")
# Register so other packages can reference our translations.
app.jinja_env.globals["_fsdomain"] = self.i18n_domain.gettext
# Perform CSRF checks. Apps must initialize CSRFProtect PRIOR to
# initializing us.
self._csrf_init(app)
# register our JSON encoder extensions
setup_json(app, bp)
app.extensions["security"] = self
def _check_modules(self, module, config_name): # pragma: no cover
from importlib.util import find_spec
module_exists = find_spec(module)
if not module_exists:
raise ValueError(f"{module} is required for {config_name}")
return module_exists
@staticmethod
def _csrf_init(app):
# various config checks - some of these are opinionated in that there
# could be a reason for some of these combinations - but in general
# they cause strange behavior.
# WTF_CSRF_ENABLED defaults to True if not set in Flask-WTF
if not app.config.get("WTF_CSRF_ENABLED", True):
return
csrf = app.extensions.get("csrf", None)
# If they don't want ALL mechanisms protected, then they must
# set WTF_CSRF_CHECK_DEFAULT=False so that our decorators get control.
# And our decorators use csrf.protect()
if cv("CSRF_PROTECT_MECHANISMS", app=app) != AUTHN_MECHANISMS:
if not csrf:
# This isn't good.
raise ValueError(
"CSRF_PROTECT_MECHANISMS defined but"
" CsrfProtect not part of application."
" Make sure to initialize CSRFProtect prior to"
" initializing Flask-Security"
)
if app.config.get("WTF_CSRF_CHECK_DEFAULT", True):
raise ValueError(
"WTF_CSRF_CHECK_DEFAULT must be set to False if"
" CSRF_PROTECT_MECHANISMS is set"
)
# We don't get control unless they turn off WTF_CSRF_CHECK_DEFAULT if
# they have enabled global CSRFProtect.
if (
cv("CSRF_IGNORE_UNAUTH_ENDPOINTS", app=app)
and csrf
and app.config.get("WTF_CSRF_CHECK_DEFAULT", False)
):
raise ValueError(
"To ignore unauth endpoints you must set WTF_CSRF_CHECK_DEFAULT"
" to False"
)
csrf_cookie = cv("CSRF_COOKIE", app=app)
# We used to have 'key' part of CSRF_COOKIE - and in csrf_cookie_handler
# we removed that prior to setting the cookie. That was a terrible UI
# decision since if the user sets the key - they likely will not set
# all the other important things like samesite, secure etc.
# Now CSRF_COOKIE_NAME is used for the name - we do the backwards compat
# magic here
if csrf_cookie and csrf_cookie.get("key", None):
app.config["SECURITY_CSRF_COOKIE_NAME"] = csrf_cookie.pop("key")
if cv("CSRF_COOKIE_NAME", app=app) and not csrf:
# Common use case is for cookie value to be used as contents for header
# which is only looked at when CsrfProtect is initialized.
raise ValueError(
"CSRF_COOKIE defined however CsrfProtect not part of application"
)
if csrf:
csrf.exempt("flask_security.views.logout")
# Add configured header to WTF_CSRF_HEADERS
if ch := cv("CSRF_HEADER", app=app):
if ch not in app.config["WTF_CSRF_HEADERS"]:
app.config["WTF_CSRF_HEADERS"].append(ch)
if cv("CSRF_COOKIE_NAME", app=app):
app.after_request(csrf_cookie_handler)
def set_form_info(self, name: str, form_info: FormInfo) -> None:
"""Set form instantiation info.
:param name: Name of form.
:param form_info: see :py:class:`FormInfo`
.. admonition:: Advanced
Forms (which are all FlaskForms) are instantiated at the start of each
request. Normally this is done as part of a view by simply calling the
form class constructor - Flask-WTForms handles filling it in from
various request attributes.
The form classes themselves can be extended (e.g. to add or change fields)
and the derived class can be set at `Security` constructor time,
`init_app` time, or using this method.
This default implementation is suitable for most applications.
Some application might want to control the instantiation of forms, for
example to be able to inject additional validation services.
Using this method, a callable `instantiator` can be set that Flask-Security
will call to return a properly instantiated form.
.. danger::
Do not perform any validation as part of instantiation - many views have
a bunch of logic PRIOR to calling the form validator.
.. versionadded:: 5.1.0
"""
if name not in self.forms.keys():
raise ValueError(f"Unknown form name {name}")
if form_info.instantiator == _default_form_instantiator and not form_info.cls:
raise ValueError(
"If default form instantiator is used, a form class must be provided"
)
self.forms[name] = form_info
def render_json(
self,
cb: t.Callable[
[dict[str, t.Any], int, dict[str, str] | None, UserMixin | None],
ResponseValue,
],
) -> None:
"""Callback to render response payload as JSON.
:param cb: Callback function with
signature (payload, code, headers=None, user=None)
:payload: A dict. Please see the formal API spec for details.
:code: Http status code
:headers: Headers object
:user: the UserDatastore object (or None). Note that this is usually
the same as current_user - but not always.
The default implementation simply returns::
headers["Content-Type"] = "application/json"
payload = dict(meta=dict(code=code), response=payload)
return make_response(jsonify(payload), code, headers)
.. important::
Note that this has nothing to do with how the response is serialized.
That is controlled by Flask and starting with Flask 2.2 that is managed
by sub-classing Flask::JSONProvider. Flask-Security does this to add
serializing lazy-strings.
This can be used by applications to unify all their JSON API responses.
This is called in a request context and should return a Response or something
Flask can create a Response from.
.. versionadded:: 3.3.0
"""
self._render_json = cb
def want_json(self, fn: t.Callable[[flask.Request], bool]) -> None:
"""Function that returns True if response should be JSON (based on the request)
:param fn: Function with the following signature (request)
:request: Werkzueg/Flask request
The default implementation returns True if either the Content-Type is
"application/json" or the best Accept header value is "application/json".
.. versionadded:: 3.3.0
"""
self._want_json = fn
def unauthz_handler(
self,
cb: t.Callable[[str, list[str] | None], ResponseValue],
) -> None:
"""
Callback for failed authorization.
This is called by the :func:`roles_required`, :func:`roles_accepted`,
:func:`permissions_required`, or :func:`permissions_accepted`
if a role or permission is missing.
:param cb: Callback function with signature (func, params)
:func_name: the decorator function name (e.g. 'roles_required')
:params: list of what (if any) was passed to the decorator.
Should return a Response or something Flask can create a Response from.
Can raise an exception if it is handled as part of
flask.errorhandler(<exception>)
With the passed parameters the application could deliver a concise error
message.
.. versionadded:: 3.3.0
.. versionchanged:: 5.1.0
Pass in the function name, not the function!
"""
self._unauthz_handler = cb
def unauthn_handler(
self,
cb: t.Callable[[list[str], dict[str, str] | None], ResponseValue],
) -> None:
"""
Callback for failed authentication.
This is called by :func:`auth_required`, :func:`auth_token_required`
or :func:`http_auth_required` if authentication fails.
It is also called from Flask-Login's @login_required decorator.
:param cb: Callback function with signature (mechanisms=None, headers=None)
:mechanisms: List of which authentication mechanisms were tried
:headers: dict of headers to return
Should return a Response or something Flask can create a Response from.
Can raise an exception if it is handled as part of
``flask.errorhandler(<exception>)``
The default implementation will return a 401 response if the request was JSON,
otherwise will redirect to the `login` view.
.. versionadded:: 3.3.0
.. versionchanged:: 5.4.0
No longer calls Flask-Login and has complete logic built-in.
"""
self._unauthn_handler = cb
def reauthn_handler(
self, cb: t.Callable[[timedelta, timedelta], ResponseValue]
) -> None:
"""
Callback when endpoint required a fresh authentication.
This is called by :func:`auth_required`.
:param cb: Callback function with signature (within, grace)
:within: timedelta that endpoint required fresh authentication within.
:grace: timedelta of grace period that endpoint allowed.
Should return a Response or something Flask can create a Response from.
Can raise an exception if it is handled as part of
``flask.errorhandler(<exception>)``
The default implementation will return a 401 response if the request was JSON,
otherwise will redirect to :py:data:`SECURITY_US_VERIFY_URL`
(if :py:data:`SECURITY_UNIFIED_SIGNIN` is enabled)
else to :py:data:`SECURITY_VERIFY_URL`.
If both of those are None it sends an ``abort(401)``.
See :meth:`flask_security.auth_required` for details about freshness checking.
.. versionadded:: 3.4.0
"""
self._reauthn_handler = cb
@property
def mail_util(self) -> MailUtil:
"""Instance of mail_util_cls created at init_app() time.
See :ref:`api:extendable classes`"""
return self._mail_util
@property
def password_util(self) -> PasswordUtil:
"""Instance of password_util_cls created at init_app() time.
See :ref:`api:extendable classes`"""
return self._password_util
@property
def username_util(self) -> UsernameUtil:
"""Instance of username_util_cls created at init_app() time.
See :ref:`api:extendable classes`"""
return self._username_util
@property
def phone_util(self) -> PhoneUtil:
"""Instance of phone_util_cls created at init_app() time.
See :ref:`api:extendable classes`"""
return self._phone_util
@property
def totp_factory(self) -> Totp:
"""Instance of totp_factory created at init_app() time.
See :ref:`api:extendable classes`"""
return self._totp_factory
@property
def mf_recovery_codes_util(self) -> MfRecoveryCodesUtil:
"""Instance of mf_recovery_codes_util_cls created at init_app() time.
See :ref:`api:extendable classes`"""
return self._mf_recovery_codes_util
@property
def webauthn_util(self) -> WebauthnUtil:
"""Instance of webauthn_util_cls created at init_app() time.
See :ref:`api:extendable classes`"""
return self._webauthn_util
def _add_ctx_processor(
self, endpoint: str, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
group = self._context_processors.setdefault(endpoint, [])
if fn not in group:
group.append(fn)
def _run_ctx_processor(self, endpoint: str) -> dict[str, t.Any]:
rv: dict[str, t.Any] = {}
for gl in ["global", endpoint]:
for fn in self._context_processors.setdefault(gl, []):
rv.update(fn())
return rv
def context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("global", fn)
def forgot_password_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("forgot_password", fn)
def login_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("login", fn)
def register_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("register", fn)
def reset_password_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("reset_password", fn)
def change_email_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("change_email", fn)
def change_password_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("change_password", fn)
def change_username_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("change_username", fn)
def recover_username_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("recover_username", fn)
def send_confirmation_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("send_confirmation", fn)
def send_login_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("send_login", fn)
def verify_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("verify", fn)
def mail_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("mail", fn)
def tf_setup_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("tf_setup", fn)
def tf_token_validation_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("tf_token_validation", fn)
def tf_select_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("tf_select", fn)
def us_signin_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("us_signin", fn)
def us_setup_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("us_setup", fn)
def us_verify_context_processor(self, fn: t.Callable[[], dict[str, t.Any]]) -> None:
self._add_ctx_processor("us_verify", fn)
def wan_register_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("wan_register", fn)
def wan_signin_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("wan_signin", fn)
def wan_verify_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("wan_verify", fn)
def mf_recovery_codes_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("mf_recovery_codes", fn)
def mf_recovery_context_processor(
self, fn: t.Callable[[], dict[str, t.Any]]
) -> None:
self._add_ctx_processor("mf_recovery", fn)
|