-
Notifications
You must be signed in to change notification settings - Fork 4
New KDF #3
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
Comments
This is confirmed on |
Added support to |
Hello, have you had any time to look into it? Anything you have already checked and a status would be nice! Ill try to work on this tomorrow. By the way, in your writeup on the decryptor for new vaults you say that you get a payload which you can use on the other json strings - but i dont get that payload? I only get a password. |
I've only briefly looked into this, but the
The |
For anyone else following along, here's the scrypt parameters found in Phantom
Phantom source code (Chrome Extension): |
Since Phantom
v24.9
Phantom changed the way the KDF is derived. The extracted vault mentions nowscrypt
instead ofpbkdf
.Example of an extraction with password
password
:I tried to change the code by simply using
key = scrypt(password, salt, 32,16384,8,1)
, but that would be too easy, right ?maybe someone has another idea ?
The text was updated successfully, but these errors were encountered: