use correct Seed in AP pass Calc script
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user