1

Add a fix for bad TOTP codes

This commit is contained in:
Evan Pratten 2023-11-17 10:58:12 -05:00
parent 61ce060bf4
commit 9867d0c92c

View File

@ -71,6 +71,9 @@ def handle_connect(args: argparse.Namespace) -> int:
# Fetch the credentials from the Yubikey
oath_code = get_oath_code("Guru")
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
password = f"{base_password}{oath_code}"