use correct Seed in AP pass Calc script

This commit is contained in:
2025-09-18 08:03:10 +02:00
parent b024bb66a9
commit 558e516f7d

View File

@@ -11,7 +11,7 @@ def generate_password(seed, chip_id):
return hash_str[:32] # Ensure the password is at most 32 characters return hash_str[:32] # Ensure the password is at most 32 characters
if __name__ == "__main__": if __name__ == "__main__":
SEED = "letmelubeyou" SEED = "ilikekgg"
chip_id = input("Enter the Chip ID in hex (e.g., 1A2B3C4D): ").strip() chip_id = input("Enter the Chip ID in hex (e.g., 1A2B3C4D): ").strip()
chip_id = chip_id.zfill(8).upper() # Ensure it's 8 characters, upper case chip_id = chip_id.zfill(8).upper() # Ensure it's 8 characters, upper case