-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathutils.py
More file actions
1532 lines (1206 loc) · 51.4 KB
/
Copy pathutils.py
File metadata and controls
1532 lines (1206 loc) · 51.4 KB
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
"""
flask_security.utils
~~~~~~~~~~~~~~~~~~~~
Flask-Security utils module
:copyright: (c) 2012-2019 by Matt Wright.
:copyright: (c) 2019-2026 by J. Christopher Wagner (jwag).
:license: MIT, see LICENSE for more details.
"""
from __future__ import annotations
import abc
import base64
from datetime import datetime, timedelta, timezone
from functools import partial
import hashlib
import hmac
import time
import typing as t
from urllib.parse import parse_qsl, quote, urlsplit, urlunsplit, urlencode
import urllib.request
import urllib.error
import warnings
from flask import (
Response,
current_app,
flash,
g,
redirect,
request,
render_template,
session,
url_for,
after_this_request,
)
from flask_login import login_user as _login_user
from flask_login import logout_user as _logout_user
from flask_login import current_user
from flask_login import COOKIE_NAME as REMEMBER_COOKIE_NAME
from flask_principal import AnonymousIdentity, Identity, identity_changed, Need
from flask_wtf import csrf, FlaskForm
from wtforms import ValidationError
from itsdangerous import BadSignature, SignatureExpired
from werkzeug.local import LocalProxy
from werkzeug.datastructures import MultiDict
from .quart_compat import best, get_quart_status
from .proxies import _security, _datastore, _pwd_context, _hashing_context
from .signals import user_authenticated
if t.TYPE_CHECKING: # pragma: no cover
from flask import Flask
from flask.typing import ResponseValue
from flask_security import UserMixin
localize_callback = LocalProxy(lambda: _security.i18n_domain.gettext)
FsPermNeed = partial(Need, "fsperm")
FsPermNeed.__doc__ = """A need with the method preset to `"fsperm"`."""
def _(translate):
"""Identity function to mark strings for translation."""
return translate
def get_request_attr(name: str) -> t.Any:
"""Retrieve a request local attribute.
Current public attributes are:
**fs_authn_via**
will be set to the authentication mechanism (session, token, basic)
that the current request was authenticated with.
Returns None if attribute doesn't exist.
.. versionadded:: 4.0.0
.. versionchanged:: 4.1.5
Use 'g' rather than request_ctx stack which is going away post Flask 2.2
"""
return getattr(g, name, None)
def set_request_attr(name: str, value: t.Any) -> None:
"""Set an attribute on Flask's application context global object (g).
:param name: The key/attribute name to store the value under
:param value: The value to store in the application context
"""
return setattr(g, name, value)
"""
Most view functions that modify the DB will call ``after_this_request(view_commit)``
Quart compatibility needs an async version
"""
if get_quart_status(): # pragma: no cover
async def view_commit(response=None):
_datastore.commit()
return response
else:
def view_commit(response=None):
_datastore.commit()
return response
def aware_utcnow() -> datetime:
"""Return a timezone-aware UTC datetime object.
From a miguel grinberg blog around dealing with 3.12.
Our default SQLAlchemy Datetime is naive.
Note that most code should call _security.datetime_factory()
:return: Current UTC datetime with timezone information
:rtype: datetime
"""
return datetime.now(timezone.utc)
def aware_utcfromtimestamp(timestamp: float) -> datetime:
"""Create timezone-aware UTC datetime from timestamp.
:param timestamp: Unix timestamp (seconds since epoch)
:type timestamp: float
:return: UTC datetime with timezone information
:rtype: datetime
"""
return datetime.fromtimestamp(timestamp, timezone.utc)
def naive_utcnow() -> datetime:
"""Return a naive UTC datetime (tzinfo removed).
:return: Current UTC datetime without timezone information
:rtype: datetime
"""
return aware_utcnow().replace(tzinfo=None)
def naive_utcfromtimestamp(timestamp: float) -> datetime:
"""Create naive UTC datetime from timestamp.
:param timestamp: Unix timestamp (seconds since epoch)
:type timestamp: float
:return: UTC datetime without timezone information
:rtype: datetime
"""
return aware_utcfromtimestamp(timestamp).replace(tzinfo=None)
def find_csrf_field_name() -> t.Optional[str]:
"""Retrieve the configured CSRF field name from Flask-WTF form configuration.
This is needed to properly clear CSRF tokens on logout since Flask-WTF doesn't
automatically handle this case. The field name can be configured through
Flask-WTF's settings or overridden in form classes.
:return: Configured CSRF field name if found, None otherwise
:rtype: Optional[str]
Note:
Uses the field name from the login form as set by the Flask-WTF configuration.
Requires a DummyForm class with Flask-WTF's meta configuration.
"""
from .forms import DummyForm
form = DummyForm(formdata=None)
if hasattr(form.meta, "csrf_field_name"):
return form.meta.csrf_field_name
return None
def is_user_authenticated(user: UserMixin | None) -> bool:
"""
return True if user is authenticated.
With Flask-Login <=0.6.x and Flask-Security <5.4 current_user was always
set - for non-authenticated users it pointed to an AnonymousUser
Flask-Login is experimenting (11/5/23) with a LOGIN_NO_ANONYMOUS which will set
current_user to None and deprecate is_authenticated (current_user non None implies
authenticated).
We have a configuration variable ANONYMOUS_USER_DISABLED which if true will force
current_user to None on unauthenticated as well
"""
if config_value("ANONYMOUS_USER_DISABLED"):
# Note that user often is current_user which is a proxy and isn't ever actually
# 'None'
return bool(user)
return bool(user and user.is_authenticated)
def login_user(
user: UserMixin,
remember: bool | None = None,
authn_via: list[str] | None = None,
) -> bool:
"""Perform the login routine.
If :py:data:`SECURITY_TRACKABLE` is used, make sure you commit changes after this
request (i.e. ``app.security.datastore.commit()``).
:param user: The user to login
:param remember: Flag specifying if the remember cookie should be set.
If ``None`` use value of :py:data:`SECURITY_DEFAULT_REMEMBER_ME`
:param authn_via: A list of strings denoting which mechanism(s) the user
authenticated with.
These should be one or more of ["password", "sms", "authenticator", "email"] or
other 'auto-login' mechanisms.
:return: True if user successfully logged in.
"""
if remember is None:
remember = config_value("DEFAULT_REMEMBER_ME")
if not _login_user(user, remember, force=True): # pragma: no cover
return False
if _security.trackable:
remote_addr = request.remote_addr or None # make sure it is None
old_current_login, new_current_login = (
user.current_login_at,
_security.datetime_factory(),
)
old_current_ip, new_current_ip = user.current_login_ip, remote_addr
user.last_login_at = old_current_login or new_current_login
user.current_login_at = new_current_login
user.last_login_ip = old_current_ip
user.current_login_ip = new_current_ip
user.login_count = user.login_count + 1 if user.login_count else 1
_datastore.put(user)
session["fs_cc"] = "set" # CSRF cookie
session["fs_paa"] = time.time() # Primary authentication at - timestamp
identity_changed.send(
current_app._get_current_object(), # type: ignore[attr-defined]
_async_wrapper=current_app.ensure_sync, # type: ignore[arg-type]
identity=Identity(user.fs_uniquifier),
)
user_authenticated.send(
current_app._get_current_object(), # type: ignore[attr-defined]
_async_wrapper=current_app.ensure_sync, # type: ignore[arg-type]
user=user,
authn_via=authn_via,
)
return True
def logout_user() -> None:
"""Logs out the current user.
This will also clean up the remember me cookie if it exists.
This sends an ``identity_changed`` signal to note that the current
identity is now the `AnonymousIdentity`
"""
for key in (
"identity.name",
"identity.auth_type",
"fs_paa",
"fs_gexp",
"fs_oauth_next",
):
session.pop(key, None)
# Clear csrf token between sessions.
# Ideally this would be handled by Flask-WTF but...
# We don't clear entire session since Flask-Login seems to like having it.
csrf_field_name = find_csrf_field_name()
if csrf_field_name:
session.pop(csrf_field_name, None)
# Flask-WTF 'caches' csrf_token - and only set the session if not already
# in 'g'. Be sure to clear both. This affects at least /confirm
g.pop(csrf_field_name, None)
session["fs_cc"] = "clear"
if config_value("REFRESH_TOKEN") and config_value("REFRESH_TOKEN_COOKIE_NAME"):
from .tokens import clear_refresh_token_cookie
after_this_request(partial(clear_refresh_token_cookie))
identity_changed.send(
current_app._get_current_object(), # type: ignore
_async_wrapper=current_app.ensure_sync,
identity=AnonymousIdentity(),
)
_logout_user()
def check_and_update_authn_fresh(
within: timedelta,
grace: timedelta,
method: str | None = None,
) -> bool:
"""Check if user authenticated within specified time and update grace period.
:param within: A timedelta specifying the maximum time in the past that the caller
authenticated that is still considered 'fresh'.
:param grace: A timedelta that, if the current session is considered 'fresh'
will set a grace period for which freshness won't be checked.
The intent here is that the caller shouldn't get part-way though
a set of operations and suddenly be required to authenticate again.
This is not supported for authentication tokens.
:param method: Optional - if set and == "basic" then will always return True.
(since basic-auth sends username/password on every request)
If within.total_seconds() is negative, will always return True (always 'fresh').
This effectively just disables this entire mechanism.
within.total_seconds() == 0 results in undefined behavior.
If "fs_gexp" is in the session and the current timestamp is less than that,
return True and extend grace time (i.e. set fs_gexp to current time + grace).
Be aware that for this to work, state is required to be sent from the client.
Flask security adds this state to the session (cookie) and the auth token.
Without this state, 'False' is always returned - (not fresh).
.. warning::
Be sure the caller is already authenticated PRIOR to calling this method.
.. versionadded:: 3.4.0
.. versionchanged:: 4.0.0
Added `method` parameter.
.. versionchanged:: 5.5.0
Grab 'Primary Authenticated At' from request_attrs
which is set from either session or auth token
"""
if method == "basic":
return True
if within.total_seconds() < 0:
# this means 'always fresh'
return True
if not (paa := get_request_attr("fs_paa")):
# No recorded primary authenticated at time, you can't play.
return False
now = naive_utcnow()
new_exp = now + grace
grace_ts = int(new_exp.timestamp())
if fs_gexp := session.get("fs_gexp", None):
if now.timestamp() < fs_gexp:
# Within grace period - extend it, and we're good.
session["fs_gexp"] = grace_ts
return True
authn_time = naive_utcfromtimestamp(paa)
# allow for some time drift where it's possible authn_time is in the future
# but let's be cautious and not allow arbitrary future times
delta = now - authn_time
if within > delta > -within:
session["fs_gexp"] = grace_ts
return True
return False
def get_hmac(password: str | bytes) -> bytes:
"""Returns a Base64 encoded HMAC+SHA512 of the password signed with
the salt specified by :py:data:`SECURITY_PASSWORD_SALT`.
:param password: The password to sign
"""
if not (salt := config_value("PASSWORD_SALT")):
raise RuntimeError(
"The configuration value `SECURITY_PASSWORD_SALT` must "
"not be None when the value of `SECURITY_PASSWORD_HASH` is "
'set to "%s"' % config_value("PASSWORD_HASH")
)
h = hmac.new(encode_string(salt), encode_string(password), hashlib.sha512)
return base64.b64encode(h.digest())
def verify_password(password: str | bytes, password_hash: str | bytes) -> bool:
"""Returns ``True`` if the password matches the supplied hash.
:param password: A plaintext password to verify
:param password_hash: The expected hash value of the password
(usually from your database)
.. note::
Make sure that the password passed in has already been normalized.
"""
if use_double_hash(password_hash):
password = get_hmac(password)
if _pwd_context.identify(password_hash) == "bcrypt":
password = password[:72]
return _pwd_context.verify(password, password_hash)
def verify_and_update_password(password: str | bytes, user: UserMixin) -> 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
:param user: The user to verify against
.. tip::
This should not be called directly - rather use
:meth:`.UserMixin.verify_and_update_password`
"""
# Capture the original input in case we need to pass the unaltered
# value to hash_password if the hashing algorithm has changed
input_password = password
if use_double_hash(user.password):
password = get_hmac(password)
if _pwd_context.identify(user.password) == "bcrypt":
password = password[:72]
verified = _pwd_context.verify(password, user.password)
else:
# Try with original password.
verified = _pwd_context.verify(password, user.password)
if verified and (user.password is None or _pwd_context.needs_update(user.password)):
user.password = hash_password(input_password)
_datastore.put(user)
return verified
def hash_password(password: str | bytes) -> str:
"""Hash the specified plaintext password.
Unless the hash algorithm (as specified by
:py:data:`SECURITY_PASSWORD_HASH`) is listed in
the configuration variable :py:data:`SECURITY_PASSWORD_SINGLE_HASH`,
perform a double hash - first create an HMAC from the plaintext password
and the value of :py:data:`SECURITY_PASSWORD_SALT`,
then use the configured hashing algorithm.
This satisfies OWASP/ASVS section 2.4.5: 'provide additional
iteration of a key derivation'.
.. versionadded:: 2.0.2
.. versionchanged:: 5.7.0
Explicit check for bcrypt truncation
:param password: The plaintext password to hash
"""
if use_double_hash():
password = get_hmac(password).decode("ascii")
# Passing in options as part of hash is deprecated in passlib 1.7
# and new algorithms like argon2 don't even support it.
if config_value("PASSWORD_HASH") == "bcrypt":
# bcrypt - OWASP says truncation concerns are negligible:
# https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#input-limits-of-bcrypt
password = password[:72]
return _pwd_context.hash(
password,
**config_value("PASSWORD_HASH_OPTIONS", default={}).get(
config_value("PASSWORD_HASH"), {}
),
)
def encode_string(string: t.Union[str, bytes]) -> bytes:
"""Encodes a string to bytes, if it isn't already.
:param string: The string to encode
:return: UTF-8 encoded bytes
"""
if isinstance(string, str):
string = string.encode("utf-8")
return string
def hash_data(data: t.Union[str, bytes]) -> str:
"""Hashes input data after ensuring proper encoding.
:param data: Input data to hash (will be encoded if not already bytes)
:return: Hashed data as bytes
Note: Uses application's configured _hashing_context
"""
return _hashing_context.hash(encode_string(data))
def verify_hash(hashed_data: bytes, compare_data: t.Union[str, bytes]) -> bool:
"""Verifies data against a previously hashed value.
:param hashed_data: Previously hashed data to compare against
:param compare_data: Input data to verify (will be encoded if not already bytes)
:return: True if data matches hash, False otherwise
Note: Uses application's configured _hashing_context
"""
return _hashing_context.verify(encode_string(compare_data), hashed_data)
def suppress_form_csrf():
"""
Return meta contents if we should suppress form from attempting to validate CSRF.
If app doesn't want CSRF for unauth endpoints then check if caller is authenticated
or not (many endpoints can be called either way).
"""
if config_value("CSRF_IGNORE_UNAUTH_ENDPOINTS") and not is_user_authenticated(
current_user
):
return {"csrf": False}
return {}
def confirm_redirect(form, identity_attribute):
"""This is a very specific utility that all open endpoints call
to implement the confirm redirect feature.
"""
if (
form.requires_confirmation
and config_value("REQUIRES_CONFIRMATION_ERROR_VIEW")
and not config_value("RETURN_GENERIC_RESPONSES")
):
do_flash(*get_message("CONFIRMATION_REQUIRED"))
return redirect(
get_url(
config_value("REQUIRES_CONFIRMATION_ERROR_VIEW"),
qparams={identity_attribute: getattr(form.user, identity_attribute)},
)
)
return None
def do_flash(message: str, category: str) -> None:
"""Flash a message depending on if the `FLASH_MESSAGES` configuration
value is set.
:param message: The flash message
:param category: The flash message category
"""
if config_value("FLASH_MESSAGES"):
flash(message, category)
def parse_auth_token(auth_token: str) -> dict[str, t.Any]:
"""Parse an authentication token.
This will raise an exception if not properly signed or expired
"""
tdata = dict()
# This can raise BadSignature or SignatureExpired exceptions from itsdangerous
raw_data = _security.remember_token_serializer.loads(
auth_token, max_age=config_value("TOKEN_MAX_AGE")
)
# Version 3.x generated tokens that map to data with 3 elements,
# and fs_uniquifier was on last element.
# Version 4.0.0 generates tokens that map to data with only 1 element,
# which maps to fs_uniquifier.
# Version 5 and up are already a dict (with a version #)
if isinstance(raw_data, dict):
# new format - starting at ver=5
if not all(k in raw_data for k in ["ver", "uid", "exp"]):
raise ValueError("Token missing keys")
tdata = raw_data
if ts := tdata.get("exp"):
if ts < int(time.time()):
raise SignatureExpired("token[exp] value expired")
else:
# old tokens that were lists
if len(raw_data) == 1:
# version 4
tdata["ver"] = "4"
tdata["uid"] = raw_data[0]
else:
# version 3
tdata["ver"] = "3"
tdata["uid"] = raw_data[2]
return tdata
def get_url(endpoint_or_url: str, qparams: dict[str, str] | None = None) -> str:
"""Returns a URL if a valid endpoint is found. Otherwise, returns the
provided value.
.. warning::
If an endpoint ISN'T provided, then it is assumed that the URL
is external to Flask and if the spa configuration REDIRECT_HOST
is set will redirect to that host. This could be an issue in
development.
:param endpoint_or_url: The endpoint name or URL to default to
:param qparams: additional query params to add to end of url
:return: URL
"""
try:
return transform_url(url_for(endpoint_or_url), qparams)
except Exception:
# This is an external URL (no endpoint defined in app)
# For (mostly) testing - allow changing/adding the url - for example
# add a different host:port for cases where the UI is running
# separately.
if config_value("REDIRECT_HOST"):
url = transform_url(
endpoint_or_url, qparams, netloc=config_value("REDIRECT_HOST")
)
else:
url = transform_url(endpoint_or_url, qparams)
return url
def slash_url_suffix(url: str, suffix: str) -> str:
"""
Formats a suffix to be appended to a URL, ensuring proper slash placement.
If the given `url` ends with a slash, this function adds a trailing slash
to the `suffix`.
Otherwise, it adds a leading slash to the `suffix`.
This helps prevent double slashes or missing slashes when constructing URLs.
:param url: The base URL to which the suffix will be appended.
:param suffix: The suffix to be appended to the URL.
:return: The formatted suffix with the appropriate leading or trailing slash.
Example:
>>> slash_url_suffix("https://example.com/api", "v1")
'/v1'
>>> slash_url_suffix("https://example.com/api/", "v1")
'v1/'
"""
return url.endswith("/") and f"{suffix}/" or f"/{suffix}"
def transform_url(
url: str, qparams: dict[str, str] | None = None, **kwargs: str
) -> str:
"""Modify url
:param url: url to transform (can be relative)
:param qparams: additional query params to add to end of url
:param kwargs: pieces of URL to modify - e.g. netloc=localhost:8000
:return: Modified URL
.. versionadded:: 3.2.0
"""
link_parse = urlsplit(url)
if qparams:
current_query = dict(parse_qsl(link_parse.query))
current_query.update(qparams)
link_parse = link_parse._replace(query=urlencode(current_query))
return urlunsplit(link_parse._replace(**kwargs))
def get_security_endpoint_name(endpoint: str) -> str:
"""
Returns the fully qualified endpoint name by combining the blueprint name
and the endpoint.
:param endpoint: The endpoint name to be combined with the blueprint name.
:return: The fully qualified endpoint name in the format '<blueprint>.<endpoint>'.
Example:
>>> get_security_endpoint_name("login")
'my_blueprint.login'
"""
return f"{config_value('BLUEPRINT_NAME')}.{endpoint}"
def url_for_security(endpoint: str, **values: t.Any) -> str:
"""Return a URL for the security blueprint
:param endpoint: the endpoint of the URL (name of the function)
:param values: the variable arguments of the URL rule
:param _external: if set to `True`, an absolute URL is generated. Server
address can be changed via `SERVER_NAME` configuration variable which
defaults to `localhost`.
:param _anchor: if provided, this is added as anchor to the URL.
:param _method: if provided, this explicitly specifies an HTTP method.
"""
endpoint = get_security_endpoint_name(endpoint)
# mypy is complaining about this - but I think it's wrong?
return url_for(endpoint, **values) # type: ignore
def validate_redirect_url(url: str) -> bool:
"""Validate redirect URL
In the default configuration only redirects to the same domain (and scheme)
are allowed.
The REDIRECT_ALLOW_SUBDOMAINS allows ANY subdomain of SERVER_NAME
to be a redirect target.
The REDIRECT_BASE_DOMAIN and REDIRECT_ALLOWED_SUBDOMAINS allow specifying 'side'
redirects.
"""
if url is None or url.strip() == "":
return False
url_next = urlsplit(url)
url_base = urlsplit(request.host_url)
if (url_next.netloc or url_next.scheme) and url_next.netloc != url_base.netloc:
base_domain = current_app.config.get("SERVER_NAME")
if (
config_value("REDIRECT_ALLOW_SUBDOMAINS")
and base_domain
and (
url_next.netloc == base_domain
or url_next.netloc.endswith(f".{base_domain}")
)
):
return True
base_domain = config_value("REDIRECT_BASE_DOMAIN")
if base_domain:
allowable = [
f"{sub}.{base_domain}"
for sub in config_value("REDIRECT_ALLOWED_SUBDOMAINS")
]
return url_next.netloc in allowable
return False
return True
def get_post_action_redirect(
config_key: str, next_loc: FlaskForm | MultiDict | dict | None
) -> str:
"""
There is a security angle here - the result of this method is
sent to Flask::redirect() - and we need to be sure that it can't be
interpreted as a user-input external URL - that would mean we would
have an 'open-redirect' vulnerability.
Allowing an absolute redirect is a security issue - a so-called open-redirect.
The complexity here is that urlsplit() does pretty well, but browsers even today
May 2021 are very lenient in what they accept as URLs - for example:
next=\\\\github.com
next=%5C%5C%5Cgithub.qkg1.top
next=/////github.com
next=%20\\\\github.com
next=%20///github.com
next=%20//github.com
next=%19////github.com - i.e. browser will strip control chars
next=%E2%80%8A///github.com - doesn't redirect! That is a unicode thin space.
All will result in a null netloc and scheme from urlsplit - however many browsers
will gladly strip off uninteresting characters and convert backslashes to forward
slashes - and the cases above will actually cause a redirect to github.com
Sigh.
Some articles claim that a relative url has to start with a '/' - but that isn't
strictly true. From: https://datatracker.ietf.org/doc/html/rfc3986#section-5
a relative path can start with a "//", "/", a non-colon, or be empty. So it seems
that all the above URLs are valid.
By the time we get the URL it may or may not have been unencoded - if part of a
query string, then it has been, but if set in the form, not.
This means we can't really determine
if it is 'valid' since it appears that '/'s can appear in the URL if escaped.
The solution is to simply 'quote' the path.
netloc has a same issue: https://amazon.com\\.lp.com will cause many
browsers to redirect to amazon.com
"""
rurl = propagate_next(find_redirect(config_key), next_loc)
u = urlsplit(rurl)
userinfo = ""
if u.username or u.password:
userinfo = f"{u.username}:{u.password}@"
hostname = quote(u.hostname) if u.hostname else ""
if u.port:
netloc = f"{userinfo}{hostname}:{u.port}"
else:
netloc = f"{userinfo}{hostname}"
safe_url = urlunsplit((u.scheme, netloc, quote(u.path), u.query, u.fragment))
return safe_url
def get_post_login_redirect() -> str:
return get_post_action_redirect("SECURITY_POST_LOGIN_VIEW", request.form)
def get_post_register_redirect() -> str:
return get_post_action_redirect("SECURITY_POST_REGISTER_VIEW", request.form)
def get_post_logout_redirect() -> str:
return get_post_action_redirect("SECURITY_POST_LOGOUT_VIEW", request.form)
def get_post_verify_redirect() -> str:
return get_post_action_redirect("SECURITY_POST_VERIFY_VIEW", request.form)
def find_redirect(key: str) -> str:
"""Returns the URL to redirect to.
:param key: The application configuration key to search for
"""
app_url = None
if app_value := current_app.config[key.upper()]:
app_url = get_url(app_value)
rv = app_url or str(current_app.config.get("APPLICATION_ROOT", "/"))
return rv
def propagate_next(fallback_url: str, form: FlaskForm | MultiDict | dict | None) -> str:
"""Compute appropriate redirect URL
The application can add a 'next' query parameter or have 'next' as a form field.
If either exist, make sure they are valid (not pointing to external location)
If neither, return the fallback_url
Can be passed either request.form
(which is really a MultiDict OR a real form OR a dict with a 'next' key).
"""
form_next = None
if form and isinstance(form, FlaskForm):
if hasattr(form, "next") and form.next.data:
form_next = form.next.data
elif form and form.get("next", None):
form_next = str(form.get("next"))
arg_next = request.args.get("next")
urls = [
get_url(form_next) if form_next else None,
get_url(arg_next) if arg_next else None,
fallback_url,
]
for url in urls:
if url and validate_redirect_url(url):
return url
raise ValueError("No valid redirect URL found - configuration error")
def simplify_url(base_url: str, redirect_url: str) -> str:
"""
Reduces the scheme and host from the redirect_url so it can be passed
as a relative URL in a query (e.g. next) param.
For this method we aren't worrying about a valid url (e.g. if it points
externally) - that will be handled by later requests.
:param base_url: The URL to simplify 'against'.
:param redirect_url: The URL to reduce.
"""
b_url = urlsplit(base_url)
r_url = urlsplit(redirect_url)
if (not r_url.scheme or r_url.scheme == b_url.scheme) and (
not r_url.netloc or r_url.netloc == b_url.netloc
):
return urlunsplit(("", "", r_url.path, r_url.query, r_url.fragment))
return redirect_url
def get_message(key: str, **kwargs: t.Any) -> tuple[str, str]:
rv = config_value("MSG_" + key)
return localize_callback(rv[0], **kwargs), rv[1]
def config_value(key, app=None, default=None, strict=True):
"""Get a Flask-Security configuration value.
:param key: The configuration key without the prefix `SECURITY_`
:param app: An optional specific application to inspect. Defaults to
Flask's `current_app`
:param default: An optional default value if the value is not set
:param strict: if True, will raise ValueError if key doesn't exist
"""
app = app or current_app
key = f"SECURITY_{key.upper()}"
# protect against spelling mistakes
if strict and key not in app.config:
raise ValueError(f"Key {key} doesn't exist")
return app.config.get(key, default)
def get_max_age(key, app=None):
td = get_within_delta(key + "_WITHIN", app)
return td.seconds + td.days * 24 * 3600
def get_within_delta(key, app=None):
"""Get a timedelta object from the application configuration following
the internal convention of::
<Amount of Units> <Type of Units>
Examples of valid config values::
5 days
10 minutes
:param key: The config value key without the `SECURITY_` prefix
:param app: Optional application to inspect. Defaults to Flask's
`current_app`
"""
txt = config_value(key, app=app)
values = txt.split()
return timedelta(**{values[1]: int(values[0])})
def send_mail(subject, recipient, template, **context):
"""Send an email.
:param subject: Email subject
:param recipient: Email recipient
:param template: The name of the email template
:param context: The context to render the template with
This formats the email and passes it off to :class:`.MailUtil` to actually send the
message.
"""
context.setdefault("security", _security)
context.update(_security._run_ctx_processor("mail"))
body = None
html = None
template_path = f"security/email/{template}"
if config_value("EMAIL_PLAINTEXT"):
body = _security.render_template(f"{template_path}.txt", **context)
if config_value("EMAIL_HTML"):
html = _security.render_template(f"{template_path}.html", **context)
subject = localize_callback(subject)
sender = config_value("EMAIL_SENDER")
if isinstance(sender, LocalProxy):
sender = sender._get_current_object()
_security.mail_util.send_mail(
template,
subject,
recipient,
sender,
body,
html,
**context,
)
def get_token_status(token, serializer, max_age=None, return_data=False):
"""Get the status of a token.
:param token: The token to check
:param serializer: The name of the serializer. Can be one of the
following: ``confirm``, ``login``, ``reset``
:param max_age: The name of the max age config option. Can be one of
the following: ``CONFIRM_EMAIL``, ``LOGIN``,
``RESET_PASSWORD``
.. deprecated:: 5.0.0
"""
warnings.warn(
"'get_token_status' is deprecated - use check_and_get_token_status instead",
DeprecationWarning,
stacklevel=2,
)
serializer = getattr(_security, serializer + "_serializer")
max_age = get_max_age(max_age)
user, data = None, None
expired, invalid = False, False
try:
data = serializer.loads(token, max_age=max_age)
except SignatureExpired:
d, data = serializer.loads_unsafe(token)
expired = True
except (BadSignature, TypeError, ValueError):
invalid = True
if data:
user = _datastore.find_user(fs_uniquifier=data[0])
expired = expired and (user is not None)
if return_data:
return expired, invalid, user, data
else:
return expired, invalid, user
def check_and_get_token_status(