mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
server/users: fix checking passwords with colons
This commit is contained in:
@ -24,7 +24,7 @@ def _get_user(ctx: rest.Context) -> Optional[model.User]:
|
||||
'ValidationError',
|
||||
'Only basic HTTP authentication is supported.')
|
||||
username, password = base64.decodebytes(
|
||||
credentials.encode('ascii')).decode('utf8').split(':')
|
||||
credentials.encode('ascii')).decode('utf8').split(':', 1)
|
||||
return _authenticate(username, password)
|
||||
except ValueError as err:
|
||||
msg = (
|
||||
|
Reference in New Issue
Block a user