Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
tildes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
Tildes
tildes
Commits
6a8d2753
Commit
6a8d2753
authored
1 year ago
by
Kaleb Elwert
Committed by
Kaleb Elwert
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Accept the TOTP token before and after the current
parent
996d52b1
No related branches found
Branches containing commit
No related tags found
1 merge request
!143
Accept the TOTP token before and after the current
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tildes/tests/test_user.py
+22
-0
22 additions, 0 deletions
tildes/tests/test_user.py
tildes/tildes/models/user/user.py
+1
-1
1 addition, 1 deletion
tildes/tildes/models/user/user.py
with
23 additions
and
1 deletion
tildes/tests/test_user.py
+
22
−
0
View file @
6a8d2753
# Copyright (c) 2018 Tildes contributors <code@tildes.net>
# SPDX-License-Identifier: AGPL-3.0-or-later
from
datetime
import
datetime
from
dateutil
import
tz
from
freezegun
import
freeze_time
from
marshmallow.exceptions
import
ValidationError
from
pyramid.security
import
principals_allowed_by_permission
from
pytest
import
raises
...
...
@@ -160,3 +164,21 @@ def test_ban_permission_manually_granted():
principals
=
principals_allowed_by_permission
(
user
,
"
ban
"
)
assert
principals
==
{
"
*:user.ban
"
}
def
test_totp_token_window
():
"""
Ensure the TOTP token accepts the one directly before and after the current.
"""
user
=
User
(
"
Test_User
"
,
"
password
"
)
user
.
two_factor_enabled
=
True
user
.
two_factor_secret
=
"
USKIRUUOFM54XGSXELCOM6K7KODOB2EC
"
invalid_tokens
=
[
"
896500
"
,
"
075549
"
]
valid_tokens
=
[
"
293601
"
,
"
733932
"
,
"
295043
"
]
target_time
=
datetime
(
2023
,
6
,
16
,
23
,
55
,
tzinfo
=
tz
.
UTC
)
with
freeze_time
(
target_time
):
for
token
in
valid_tokens
:
assert
user
.
is_correct_two_factor_code
(
token
)
for
token
in
invalid_tokens
:
assert
not
user
.
is_correct_two_factor_code
(
token
)
This diff is collapsed.
Click to expand it.
tildes/tildes/models/user/user.py
+
1
−
1
View file @
6a8d2753
...
...
@@ -279,7 +279,7 @@ class User(DatabaseModel):
# some possible user input (such as unicode) can cause an error in the totp
# library, catch that and treat it the same as an invalid code
try
:
is_valid_code
=
totp
.
verify
(
code
)
is_valid_code
=
totp
.
verify
(
code
,
valid_window
=
1
)
except
TypeError
:
is_valid_code
=
False
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment