You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defcalculate_pbkdf2_response(challenge: str, password:str) ->str:
""" Calculate the response for a given challenge via PBKDF2 """challenge_parts=challenge.split("$")
# Extract all necessary values encoded into the challengeiter1=int(challenge_parts[1])
salt1=bytes.fromhex(challenge_parts[2])
iter2=int(challenge_parts[3])
salt2=bytes.fromhex(challenge_parts[4])
# Hash twice, once with static salt...hash1=hashlib.pbkdf2_hmac("sha256",password.encode(),salt1,iter1)
# Once with dynamic salt.hash2=hashlib.pbkdf2_hmac("sha256",hash1,salt2,iter2)
returnf"{challenge_parts[4]}${hash2.hex()}"
Added with Fritz!OS 7.24 AVM_Technical_Note - German, Englisch
They also removed the login option without username, there is now a feature to query the username before login.
Recommendation - German, Englisch
The text was updated successfully, but these errors were encountered: