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

Password search exhausted for known password #354

Open
someaditya opened this issue Jan 28, 2020 · 6 comments
Open

Password search exhausted for known password #354

someaditya opened this issue Jan 28, 2020 · 6 comments

Comments

@someaditya
Copy link

Tried running btcrecover against my own Blockchain wallet.aes.json.

I have a tokens.txt which when tested with command "python btcrecover.py --listpass --tokenlist tokens.txt" does indeed show my password in one of the 15 generated passwords.

However, when i ran btcrecover it came up with "password exhausted".

@silentwalk
Copy link

I´m having the same issue. In pull #343 they "fix" it changing some lines (showed bellow) but this didn't work for me ¿For you?

return decrypted[:-padding] if 1 <= padding <= 16 and re.match('{\s*"guid"', decrypted) else None return decrypted[:-padding] if 1 <= padding <= 16 and re.search('"guid"', decrypted) else None

Does any one has any update? It seems that is because blockchain changed their encryption or api to another version but I havent been able to figure out more.

@someaditya
Copy link
Author

Didn't work for me either, still looking for an alternate solution.

@CitralNL
Copy link

Will follow this topic as having the same issue

@3rdIteration
Copy link

Have updated my python3 fork here: https://github.com/3rdIteration/btcrecover/

It now works with the latest blockchain.com wallets, both 1st password, second password and extract scripts.

@dtmoodie
Copy link

dtmoodie commented Feb 8, 2021

Thanks @3rdIteration that solved my issues.

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

8 participants
@3rdIteration @someaditya @dtmoodie @CitralNL @silentwalk and others