Skip to content

Instantly share code, notes, and snippets.

@qlrd
Last active February 20, 2025 19:06
Show Gist options
  • Save qlrd/1b6f6edc99915acee72f7c73b3e649f0 to your computer and use it in GitHub Desktop.
Save qlrd/1b6f6edc99915acee72f7c73b3e649f0 to your computer and use it in GitHub Desktop.

Find a password to decrypt a qrcode;

After finding the mnemonic, you must find a 13th/25th word for this mnemonic. To find that, you will do the same thing as in the first part of this challenge:

derive_this_to_generate_the_passphrase = b" ".join([
    b"word 1",
    b"word 2",
    b"word 3",
    b"word 4",
    b"word 5"
])

passphrase = solution(derive_this_to_generate_the_passphrase)
print(passphrase)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment