mirror of https://gitlab.com/bashrc2/epicyon
newline replace
parent
be9c2d68d2
commit
0f5592452a
2
auth.py
2
auth.py
|
@ -43,7 +43,7 @@ def authorizeBasic(baseDir: str,authHeader: str) -> bool:
|
|||
"""
|
||||
if ' ' not in authHeader:
|
||||
return False
|
||||
base64Str = authHeader.split(' ')[1]
|
||||
base64Str = authHeader.split(' ')[1].replace('\n','')
|
||||
plain = base64.b64decode(base64Str).decode('utf8')
|
||||
if ':' not in plain:
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue