Author

Topic: Coinbase wallet, missing 3 recovery word (Read 260 times)

brand new
Activity: 0
Merit: 0
August 16, 2022, 08:17:09 AM
#17
Hello,

Don't know if you are still around but a friend and I might be able to help you.

Thanks to technology improvement (and my friend being and crypto algorithm genius) we have a wallet recovery tool that is immensly more effective than everything else. Some wallets that use to be lost forever can now be saved!

We are new to this, hence the low number of messages here, but it is very possible that we can help you recover your wallet if you still need help.

We are well aware this space is full of scammers so just so you know :

> We are not going to ask for any money or info from you upfront
> We are doxxed and willing to do a video call with you to prove it
> Anything you'll need to feel safe we'll do if possible

Just contact me via DM or via [email protected] and we'll talk to see if our technology can solve your situation.

Looking forward to hear from you if we can help,
newbie
Activity: 6
Merit: 0
September 28, 2021, 07:26:07 PM
#16
a program like johntheripper or other wallet recovery tools on Linux can help in your case i think,Linux has the best tools for this kind of work.
member
Activity: 124
Merit: 11
September 26, 2021, 01:36:08 PM
#15
There are 2048 possibilities for each word.
The first word can go into one of any 12 position in your wallet seed, therefore 2048*12. The next in any of 11, and the last one is 10.

so you will have total of 2048 * 12 * 2048 * 11 * 2048 * 10, or 2048^3 * 10 * 11* 12 which eq= 1.1338714e+13


a normal computer, with 500,000 attempts per second need less than 10 Years. (worse case)

Thus, a normal computer may need a few years, but adding more physical devices may reduce that time for several months, and perhaps days. The matter depends on the economics of cost, which is calculating costs for the physical devices and the money that exists in that seed.

If you know any letter, a place for the word, the shape of the word or part of it, you will reduce the time, perhaps a few days on a regular computer, so try to remember anything because it will reduce the time a lot.

The top of the line RTX graphic cards are amazing for bruteforcing. If OP had any relevant amount of money in there, I would buy a RTX 3090 and run whatever software allows the latest RTX cards.

legendary
Activity: 952
Merit: 1367
September 08, 2021, 04:07:09 AM
#14
Hi,

Recently I have added support for ETH addresses, you may check my program here: https://github.com/PawelGorny/lostword

I guess you are interested in 'KNOWN_POSITION' method. Check examples how to run it (especially example_21.conf for ETH).

Let me know if you need any help with running that.

Pawel

legendary
Activity: 2268
Merit: 18492
September 06, 2021, 08:56:43 AM
#13
btcrecover is for bitcoin wallet password cracking. seedrecover is for unscrambling seed phrases, so is obviously the one you want. You'll need to include the argument --wallet-type ethereum since you are using an Ethereum address.

An example command for you might look like this:

Code:
python seedrecover.py --no-dupchecks --mnemonic-length 12 --language EN --dsw --wallet-type ethereum --addr-limit 5 --addrs 0xYOURaddressHERE --tokenlist ./btcrecover/PATHtoYOURtokensFILE.txt
newbie
Activity: 14
Merit: 8
September 06, 2021, 06:44:51 AM
#12
So you don't want to be using the command --big-typos. This is only for if you don't know how many words and/or which words are incorrect. --big-typos 3 will swap every combination of three words in your seed phrase with every possible three word combination. This will give 12*11*10*2048*2048*2048 = 11 trillion combinations, which is about 130 days at 1 million combinations per second. Since you know the locations of your three missing words, you only need to search 2048*2048*2048 = 8.5 billion combinations, which is about 2 hours at the same rate. This is likely why your computer is crashing.

It is possible to do everything from the command line. I can build a command for you to run, but I need some more info first. Please answer all of the following:

Are you certain it is words 1-3 you are missing?
Are you certain words 4-12 are correct and in the correct order?
Are you trying to recover a legacy (addresses start with 1), nested segwit (addresses start with 3), or native segwit (addresses start with bc1) wallet?
Do you know an address from this wallet which has received or spent coins? Ideally the very first address in the wallet.
I am advanced in programming, so I can run a python script, I just get lost in these arguments  Grin

As for the words, I'm sure
This is the ETH address 0x .........
This address is most likely
Oh, is the difference between seedrecovery and btcrecovery, seed is for ETH and btc for btc?
legendary
Activity: 2268
Merit: 18492
September 06, 2021, 06:04:08 AM
#11
So you don't want to be using the command --big-typos. This is only for if you don't know how many words and/or which words are incorrect. --big-typos 3 will swap every combination of three words in your seed phrase with every possible three word combination. This will give 12*11*10*2048*2048*2048 = 11 trillion combinations, which is about 130 days at 1 million combinations per second. Since you know the locations of your three missing words, you only need to search 2048*2048*2048 = 8.5 billion combinations, which is about 2 hours at the same rate. This is likely why your computer is crashing.

It is possible to do everything from the command line. I can build a command for you to run, but I need some more info first. Please answer all of the following:

Are you certain it is words 1-3 you are missing?
Are you certain words 4-12 are correct and in the correct order?
Are you trying to recover a legacy (addresses start with 1), nested segwit (addresses start with 3), or native segwit (addresses start with bc1) wallet?
Do you know an address from this wallet which has received or spent coins? Ideally the very first address in the wallet.
legendary
Activity: 3402
Merit: 10424
September 06, 2021, 04:55:40 AM
#10
Successful launch of btcrecover. With three words missing (bigtypos 3), it uses astronomical amounts of ram and the computer freezes.
Computer freezing is normal since this types of application use all your CPU cores and don't leave that much to other applications. But to be honest using a lot of RAM is very strange. There isn't that much data that could be cached and reused in brute forcing a mnemonic, and when I say not much I mean 100s of bytes not even 1 kbyte!

I have read the instructions for btcrevocer and I wonder if it is possible to set using regex, for example words starting with the given letter "a% b% c%"?
Is it possible to enter the address, words completely from the command line ?
I know you can create token files when recovering passwords but I'm not sure how to use this or the command line for mnemonic recovery.
Paging @o_e_l_e_o for help...

The speed I reported was based on the other project: https://bitcointalksearch.org/topic/the-finderouter-a-bitcoin-recovery-tool-v0160-2022-09-19-5214021
newbie
Activity: 14
Merit: 8
September 06, 2021, 04:34:38 AM
#9
If OP is accurate when he says he doesn't know "the first three" words, then it is only 20483 possibilities, which is solvable in hours to days, rather than years.
On the worst CPU it should take from 6 hours to half a day tops, which is slightly faster on a better CPU. Also with a decent GPU it could become so much faster that the required time would come down to about an hour or less. We are talking about only 8.5 billion permutations after all.

Successful launch of btcrecover. With three words missing (bigtypos 3), it uses astronomical amounts of ram and the computer freezes.

I have read the instructions for btcrevocer and I wonder if it is possible to set using regex, for example words starting with the given letter "a% b% c%"?
Is it possible to enter the address, words completely from the command line ?
HCP
legendary
Activity: 2086
Merit: 4314
September 02, 2021, 03:41:22 AM
#8
Yeah... 3 missing words is pretty trivial if the exact position of the missing words is known.

If the positions are unknown, then it becomes exponentially more difficult... but OP says:
I have written down on a piece of paper 12 recovery words for application, but I do not have the first 3 words

If OP knows at least one (low index) address that is generated by this seed, it should be relatively easy to find.
legendary
Activity: 3402
Merit: 10424
August 31, 2021, 11:00:27 PM
#7
If OP is accurate when he says he doesn't know "the first three" words, then it is only 20483 possibilities, which is solvable in hours to days, rather than years.
On the worst CPU it should take from 6 hours to half a day tops, which is slightly faster on a better CPU. Also with a decent GPU it could become so much faster that the required time would come down to about an hour or less. We are talking about only 8.5 billion permutations after all.
legendary
Activity: 2268
Merit: 18492
August 31, 2021, 08:58:40 AM
#6
so you will have total of 2048 * 12 * 2048 * 11 * 2048 * 10, or 2048^3 * 10 * 11* 12 which eq= 1.1338714e+13
If OP is accurate when he says he doesn't know "the first three" words, then it is only 20483 possibilities, which is solvable in hours to days, rather than years.

Speaking of Google Account, your wallet has an option to backup the seed phrase encrypted into your Google Drive.
Good thinking. Check this first OP, since it will save you a huge amount of time.

This is my plan that I will make a dictionary of words I know and put it through the program
I have quite a bit of experience with the program, so happy to help out if you get stuck. Just be sure not to share any of your seed words on the forum (or with anybody else, for that matter). If you are certain it is the first three words you are missing, then your tokens file would look something like this:

Code:
^4^Word4
^5^Word5
^6^Word6
^7^Word7
^8^Word8
^9^Word9
^10^Word10
^11^Word11
^12^Word12
abandon ability able about above absent absorb abstract absurd abuse access accident account accuse achieve acid acoustic acquire across ...
abandon ability able about above absent absorb abstract absurd abuse access accident account accuse achieve acid acoustic acquire across ...
abandon ability able about above absent absorb abstract absurd abuse access accident account accuse achieve acid acoustic acquire across ...

Replace the last three lines with the entire BIP39 wordlist three times. This tells btcrecover the 9 words you know in their fixed positions, and then tells it to try every possible word from the wordlist as the first three missing words.
newbie
Activity: 14
Merit: 8
August 31, 2021, 08:26:14 AM
#5
3 words is relatively easily brute forcible, so you should be able to recover your funds.

The program I would recommend using would be: https://github.com/3rdIteration/btcrecover/
There is documentation on how to use this here: https://btcrecover.readthedocs.io/en/latest/
You will need to first construct a token file with the words you do know.

An alternative approach would be to use this program: https://bitcointalksearch.org/topic/the-finderouter-a-bitcoin-recovery-tool-v0160-2022-09-19-5214021

Are you certain about the other 9 words? Are you certain they are in the correct order? Are you certain it is the first 3 words you are missing?

Further, do you know an address from this wallet which has sent or received any bitcoin? Preferably the very first address in the wallet, if you know it.

I thought btcrecover only supports Bitcoin Core, now I can see the tool has grown nicely. This is my plan that I will make a dictionary of words I know and put it through the program
I will keep you posted on the progress
legendary
Activity: 2338
Merit: 5297
Self-proclaimed Genius
August 31, 2021, 08:11:58 AM
#4
I have written down on a piece of paper 12 recovery words for application, but I do not have the first 3 words
So you have written down twelve words yet you're missing three?
Was it damaged to the point that it's unrecognizable or you are thinking that 'Coinbase Wallet' app has 15 words?

If the former, I second the the replies above.
If the latter, Coinbase Wallet only has 12 words and it should work for recovery.

I have a little problem, I have a coinbase wallet on my android phone. My son on the computer turned wipe option on my smartphone from the Google account.
Speaking of Google Account, your wallet has an option to backup the seed phrase encrypted into your Google Drive.
And AFAIK, only your device was wiped out by your son, have you backed it up using that option?
If yes, there's a recovery option for that backup: "Restore from Google Drive".
legendary
Activity: 1540
Merit: 1274
August 31, 2021, 08:02:10 AM
#3
There are 2048 possibilities for each word.
The first word can go into one of any 12 position in your wallet seed, therefore 2048*12. The next in any of 11, and the last one is 10.

so you will have total of 2048 * 12 * 2048 * 11 * 2048 * 10, or 2048^3 * 10 * 11* 12 which eq= 1.1338714e+13


a normal computer, with 500,000 attempts per second need less than 10 Years. (worse case)

Thus, a normal computer may need a few years, but adding more physical devices may reduce that time for several months, and perhaps days. The matter depends on the economics of cost, which is calculating costs for the physical devices and the money that exists in that seed.

If you know any letter, a place for the word, the shape of the word or part of it, you will reduce the time, perhaps a few days on a regular computer, so try to remember anything because it will reduce the time a lot.
legendary
Activity: 2268
Merit: 18492
August 31, 2021, 04:29:56 AM
#2
3 words is relatively easily brute forcible, so you should be able to recover your funds.

The program I would recommend using would be: https://github.com/3rdIteration/btcrecover/
There is documentation on how to use this here: https://btcrecover.readthedocs.io/en/latest/
You will need to first construct a token file with the words you do know.

An alternative approach would be to use this program: https://bitcointalksearch.org/topic/the-finderouter-a-bitcoin-recovery-tool-v0160-2022-09-19-5214021

Are you certain about the other 9 words? Are you certain they are in the correct order? Are you certain it is the first 3 words you are missing?

Further, do you know an address from this wallet which has sent or received any bitcoin? Preferably the very first address in the wallet, if you know it.
newbie
Activity: 14
Merit: 8
August 31, 2021, 02:15:44 AM
#1
Hello all
Sorry for my poor English
I have a little problem, I have a coinbase wallet on my android phone. My son on the computer turned wipe option on my smartphone from the Google account.
I have written down on a piece of paper 12 recovery words for application, but I do not have the first 3 words

Is there any program/python that can guess the missing words?

thanks for all the advice
Jump to: