Add a fix for bad TOTP codes
This commit is contained in:
parent
61ce060bf4
commit
9867d0c92c
@ -71,6 +71,9 @@ def handle_connect(args: argparse.Namespace) -> int:
|
|||||||
# Fetch the credentials from the Yubikey
|
# Fetch the credentials from the Yubikey
|
||||||
oath_code = get_oath_code("Guru")
|
oath_code = get_oath_code("Guru")
|
||||||
print(f"Using OATH code: {oath_code}")
|
print(f"Using OATH code: {oath_code}")
|
||||||
|
if not len(str(oath_code)) == 6:
|
||||||
|
print("Invalid OATH code length. Try again in a minute.", file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
|
||||||
# Construct the one-time password
|
# Construct the one-time password
|
||||||
password = f"{base_password}{oath_code}"
|
password = f"{base_password}{oath_code}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user