Bitcoin Forum

Bitcoin => Bitcoin Technical Support => Topic started by: Vodka131 on March 19, 2023, 06:40:34 PM



Title: 2013 wallet. Only wallet.aes.json file
Post by: Vodka131 on March 19, 2023, 06:40:34 PM
 Hi all.
Old user here, used another account but seems I lost it .
Anyway. I would like some kind of help.
Got a wallet backup from Blockchain.
I only have the file  wallet.aes.json
And the wallet identifier redirects me to dead end..
(Blockchain.com site saying the page I look doesn't exist)

I managed to log on Blockchain site. Seems I got wallet id. Got the backup file.

What next? I am clueless.. links don't work.. multibit ...(does it even exist anymore..)
Holy 🐮

Any info help will be appreciated 👍
Thanks 🙏


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: OmegaStarScream on March 19, 2023, 06:48:42 PM
You said you managed to log in? How?

Have you tried importing the file here[1] or using the recovery tool[2]? I know you need your password for that, but not sure if the seed is required too.

[1] https://login.blockchain.com/wallet/import-wallet
[2] https://github.com/blockchain/my-wallet-backup-decryption-tool


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: Vodka131 on March 19, 2023, 07:04:50 PM
Logged on only to site. Since I have mine mail, restored account using the mail.
But not the wallet . Not option for cloud was given. And 2nd option with seed phrase not possible.
So just logged in.
Old password maybe I can find if it is still required.(among 10-20 possible I have in mind....)

So I need to try these 2? Gona try it.


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: Vodka131 on March 19, 2023, 07:16:54 PM
Recovery tool can find the password?


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: OmegaStarScream on March 19, 2023, 07:22:53 PM
Recovery tool can find the password?

Do you mean the tool I linked you to? If so, then no. That's not going to help you with that. It's only so you can decrypt your wallet.aes.json:

https://i.imgur.com/owRaW6K.png

But if you forgot the password, then this might help you: https://btcrecover.readthedocs.io/en/latest/Usage_Examples/2020-05-08_Recovering_Blockchain_Wallet_Passwords/Example_Recovering_Blockchain_Wallet_Passwords/#previously-known-as-blockchaininfo


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: Vodka131 on March 19, 2023, 07:35:47 PM
thanks rly apreciate your help
gona spend some time seems (when got also some)
gona update

seems like most ppl need figure out pass3ord...

(actually use your link and tip)


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: rat03gopoh on March 20, 2023, 05:23:42 AM
thanks rly apreciate your help
gona spend some time seems (when got also some)
gona update

seems like most ppl need figure out pass3ord...

(actually use your link and tip)

At this point you're only focused on password recovery. The aes.json file won't contain it no matter how well you decrypt it without a password. You'll only corrupt the file itself.


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: o_e_l_e_o on March 20, 2023, 07:32:56 AM
The first thing I would do before trying anything else would be to make a couple of back ups of your wallet.aes.json file.

So you can log in to your blockchain.com account by resetting the password via email? Does your account show your coins?

If not, then as above, your only option will be to break the password for your wallet file. I would also suggest using btcrecover to do this. If, as you say, there are 10-20 possible passwords, then this will be very easy to do. If those passwords don't work, then you'll need to create a tokens file to try variations on those passwords to try to brute force the real password. We can talk you through how to do that if it comes to that.


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: nc50lc on March 20, 2023, 09:36:05 AM
Recovery tool can find the password?
Take note that if you ever used that tool to decrypt your wallet.aes.json file (after recovering the password),
the private keys in the output will be in plain BASE58 format which doesn't have any network code, flag and checksum.
In other words, it's not readily compatible with most Bitcoin wallets.
It has to be encoded into WIF private key to be compatible.

The advantage though is you wont have to rely on their website and everything can be done offline where its safe.
There's no limit on how many tries so start with it using your mentioned 1~20 possible passwords.


Title: Re: 2013 wallet. Only wallet.aes.json file
Post by: litecoin_messiah on March 21, 2023, 05:39:39 PM
download python3 https://github.com/3rdIteration/btcrecover and run

Code:
./btcrecover.py --wallet=/path/to/your/wallet.aes.json   --correct-wallet-password=Y0urWa11etP@assword! --dump-wallet /path/to/where/you/want/your/decrypted_wallet.txt



Before you do this, learn how to use python or set this up ufcourse. this will decrypt the wallet.aes.json and show your wallet addresses and other important data such as private keys, wallet id in most cases.