How To Recover Blockchain Wallet Password if i Lost it?

How To Recover Blockchain Wallet Password

 

What is a Blockchain Wallet

Blockchain.info is a self-custody wallet for crypto. Also known as Blockchain.com, this crypto wallet was one of the first wallets which started in 2011. It became popular rapidly and today, it’s counted in the top 10 used wallets among people. Blockchain’s growing community uses it to securely and efficiently complete transactions while leveraging their ability to keep private keys and activities private. Blockchain is no longer just a wallet, it also offers services for developers and businesses in the cryptocurrency community, as well.

How Does Blockchain Wallet Work

Blockchain.com uses your email to sign up and assigns you a unique 32-character string called a GUID or Wallet ID (e.g., 91f9fc89-a902-41da-ace1-865df1cd2b48). It also provides unique recovery words. If you lose these recovery words, you’ll need your correct password. But what if you lose the password? How To Recover Blockchain Wallet Password? The answer is quite disappointing. You will lose your wallet too as customer care service won’t be able to help you out either. Why? Because Blockchain wallet is a self-custody wallet.
So, here’s what you must be aware of:

  1. Recovery Phrase: To open your wallet, you’ll need a 12-word recovery phrase.
  2. GUID and Password: On the other hand, you can use a GUID (like 91f9fc89-a902-41da-ace1-865df1cd2b48) and your password.
  3. Lost Both?: If you’ve lost both, your wallet seems gone.
  4. Recovery Option: But wait! There’s a shining knight in armor to save your day! Recovering your wallet password is possible by using a file called wallet.aes.json.
  5. AES-256 Encryption: This file uses strong security to keep your wallet data safe.
  6. Follow Steps: To recover, follow the steps of How To Recover Blockchain Wallet Password by using your wallet.aes.json file.

How To Recover Blockchain Wallet Password

Step 1 – Downloading Wallet File (wallet.aes.json)

  1. Visit blockchain.com and log in using the email address associated with your wallet.
  2. Click on “Continue.” You’ll receive a wallet identifier that contains all your wallet information.
  3. Copy one of your wallet IDs that you want to recover.
  4. Return to the blockchain.com login page and paste your wallet ID.
  5. Open the “Inspect Element” feature (usually found by right-clicking on the page).
  6. Navigate to the “Network” tab within the Inspect Element.
  7. In the login form, type any character into the password field and click the login button.
  8. Look for two files that match one of your wallet IDs.
  9. Click on one of these files and then select the “Response” tab.
  10. You’ll find a wallet payload that resembles the image shown below.


Or

In both cases, what we need is the “payload.” When you see a response that seems like wallet information, just click on the wallet item with your right mouse button, copy it, and then paste it into a file using a text editor. It’s one of the most important steps in the guide of How To Recover Blockchain Wallet Password. 
Step 2 – Password Recovery

  1. Copy your wallet.aes.json (wallet payload) into the BTCRecover Folder.
  2. Open the command prompt.
  3. Use the following command:

python btcrecover.py –wallet wallet.aes.json –token token.txt

  • This command will attempt all possible passwords using the tokens in token.txt.
  1. In token.txt, paste all your passwords and create password tokens.
  2. To try dictionary attacks, use the –tokenlist command. You can use common password dictionaries like Rockyou.txt, Weakpass, Crackstation or Top10Million-Password.
  3. To utilize your GPU, run:

python btcrecover.py –wallet wallet.aes.json –token token.txt –enable-opencl

  1. To view the output of your token list, execute:

python btcrecover.py –token token.txt –listpass
Additional:
Password Token (–token): Think of a password token list as a puzzle made up of smaller pieces. Imagine you have a password, but you only remember parts of it—like individual letters or numbers. These remembered bits are the tokens. Now, when you use a tool like BTCRecover, it takes these tokens and tries different combinations to guess the complete password. Finding the answer to How To Recover Blockchain Wallet Password is like putting together a jigsaw puzzle to unlock your wallet or account when you’ve forgotten some pieces.
Example: Let’s create a token list for the password “TCRetriever1111.” Remember, these tokens are like puzzle pieces that we can combine in different ways to guess the complete password:

  1. “TCR”: The first three letters of the password.
  2. “et”: The middle two letters.
  3. “1111”: The numeric part at the end.

Now, using these tokens, we can try various combinations to unlock the password. For example:

  • “TCRet1111”
  • “Retriever1111”
  • “TCR1111”

Tokenlist (–passwordlist): Certainly! Think of a password list as a collection of the most commonly used passwords. These lists are put together from passwords that have been publicly exposed due to security breaches or hacks. They help us understand which passwords people tend to use frequently. Here are some examples of common passwords:

  • 123456
  • password
  • qwerty
  • 12345
  • qwerty123

Security professionals use these lists to spot weak passwords and encourage users to pick stronger, more unique ones.
Token Charset

  1. %d: Represents a single digit (0 to 9).
  2. %2d: Exactly two digits (like 42 or 07).
  3. %1,3d: Represents any number between 1 and 3 digits (e.g., 123 or 9).
  4. %0,2d: Stands for any number between 0 and 2 digits (including no digits at all).
  5. %a: Stands for a single lowercase letter (like ‘a’ or ‘z’).
  6. %1,3a: Any sequence of 1 to 3 lowercase letters (e.g., ‘abc’ or ‘x’).
  7. %A: Represents a single uppercase letter (like ‘X’ or ‘Q’).
  8. %n: Can be either a digit or a lowercase letter.
  9. %N: Can be either a digit or an uppercase letter.
  10. %ia: A letter (either lowercase or uppercase) in a case-insensitive way.
  11. %in: A digit or letter (case-insensitive).
  12. %1,2in: Any combination of 1 to 2 digits or letters (e.g., ‘A1’ or ‘b’).
  13. %[chars]: Exactly 1 character from a specific set (like ‘c’, ‘h’, or ‘s’).
  14. %1,3[chars]: It represents any sequence of 1 to 3 characters from the specified set.
  15. %[0-9a-f]: Exactly 1 character from the set of digits 0-9 and lowercase letters a-f.
  16. %2i[0-9a-f]: Exactly 2 characters from the same set (case-insensitive).
  17. %s: Represents a single space.
  18. %l: Stands for a line feed character (used in formatting text).
  19. %r: Represents a carriage return character (also used in formatting).
  20. %R: Either a line feed or a carriage return.
  21. %t: A tab character.
  22. %T: Either a space or a tab.
  23. %w: Any of space, line feed, or carriage return.
  24. %W: Any of space, line feed, carriage return, or tab.
  25. %y: Any ASCII symbol (like ‘$’ or ‘@’).
  26. %Y: Any ASCII digit or symbol.
  27. %p: Any ASCII letter, digit, or symbol.
  28. %P: Any character from either %p or %W (basically everything).
  29. %q: Any ASCII letter, digit, symbol, or space (commonly used for BIP39 passphrases).
  30. %c: A single character from a custom set specified at the command line.
  31. %C: An uppercased version of %c (same as %c if no lowercase letters).
  32. %ic: A case-insensitive version of %c.
  33. %%: Represents a single percent sign (so it doesn’t confuse with wildcards).
  34. %^: A single caret symbol (not confused with an anchor at the beginning).
  35. %S: A single dollar sign (yes, it’s % and a capital S replaced by $).
  36. %h: Any single hexadecimal character (0-9, A-F).
  37. %*: A single Base58 character (used in Bitcoin addresses).
  38. %U: Any single Unicode character (covers all characters up to 65,535).

The patterns given above will help in making a variety of passwords to guess. This is the last step in the guide of How To Recover Blockchain Wallet Password. Have more questions? Feel free to ask!
Don’t stress out if you have lost your 12/24 Recovery words or wallet password. You can reach out to The Crypto Retriever Wallet Recovery Service for expert assistance. They specialize in helping users regain access to their wallets when recovery words are lost, without compromising the user’s privacy. Never hesitate to contact them.

Get in touch!

Assistant Manager

Sameer Ansari

team@thecryptoretriever.com

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top