Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

word list #2

Open
Steve502r opened this issue Oct 8, 2023 · 14 comments
Open

word list #2

Steve502r opened this issue Oct 8, 2023 · 14 comments

Comments

@Steve502r
Copy link

Steve502r commented Oct 8, 2023

i actually scanned the article for all bip39 words but the list was way to big for me to manually try to guess. I cant write code but i’m gonna look for that list. i’ll get back to ya

@HomelessPhD
Copy link
Owner

HomelessPhD commented Oct 10, 2023 via email

@SmartArt09
Copy link

The text contains 448 total words out of the 2048 bip39 mnemonic words.
You can make your code a little better by just starting off with that many words.

I also tried brute-forcing for 12, 18 and 24 word mnemonics from the 448 words but all in vain.

@Steve502r
Copy link
Author

Steve502r commented Jun 3, 2024 via email

@Steve502r
Copy link
Author

Steve502r commented Jun 3, 2024 via email

@HomelessPhD
Copy link
Owner

HomelessPhD commented Jun 3, 2024 via email

@SmartArt09
Copy link

Sorry, there's actually 264 words from the whole story that are valid BIP39 words.
I tried coding it in 2 different languages and realized I needed to do more data cleaning that I did earlier.

@SmartArt09
Copy link

If either one of you have all the words i have code that will do all combination possible with the private key, public key, and address along with it. Even checks the checksums are correct.  Im sure yall did this already but just in case. Sent from my iPhoneOn Jun 1, 2024, at 8:59 AM, SmartArt09 @.***> wrote:
The text contains 448 total words out of the 2048 bip39 mnemonic words.
You can make your code a little better by just starting off with that many words.
I also tried brute-forcing for 12, 18 and 24 word mnemonics from the 448 words but all in vain.

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>

Gotta do everything all over again because my laptop is now gone, so...no, I don't have all the words now.

But you can write a simple script yourself. Just remove all the punctuations in the article except the spaces and split the entire string, then see if any of the words in this list are there in the original 2048 BIP39 English wordlist. I mentioned the correct word count here in this thread in another reply.
Though again, going with all different possible combinations will take an eternity and then some, unless you have a quantum computer. :)

@Steve502r
Copy link
Author

Steve502r commented Sep 10, 2024 via email

@SmartArt09
Copy link

SmartArt09 commented Sep 10, 2024

BIP 44Sent from my iPhoneOn Sep 9, 2024, at 9:31 PM, Aarbi99 @.***> wrote:
what is the derivation path for the seeds ?

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>

The normal Bitcoin derivation path, at least that's what I used when I checked it.
If I remember correctly, it is m/44'/0'/0'/0 and then indexing starts from 0 (which is the most commonly used one) to however many addresses you want to generate, but just confirm it once from iancoleman.io/bip39

@SmartArt09
Copy link

Anyone found anything?

@HomelessPhD
Copy link
Owner

HomelessPhD commented Nov 3, 2024 via email

@SmartArt09
Copy link

Damn, so all of the puzzles are really luck based...

@HomelessPhD
Copy link
Owner

HomelessPhD commented Dec 25, 2024 via email

@SmartArt09
Copy link

That's true. Any new story for this puzzle? Like somehow eliminating any of the total words?
I am so cooked rn that my Java program is performing worse than Python, at just 100 Mnemonics/Addresses per second WITH THREADING.

There's 266 words in my code that are in the BIP39 English wordlist and following is the permutation/combination calculation for total population "n" = 266, if a sample "r" = 12, is chosen (most likely at random):

Permutations, nPr = 266! / (266 - 12)! = 97,551,751,568,636,575,002,304,512,000
Combinations, nCr = 266! / 12! * (266 - 12)! = 203,656,421,123,930,640,320

Doesn't seem so solvable now... :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@SmartArt09 @HomelessPhD @Steve502r and others