That is nice! But... It really hurts my eyes to read "dump_hex" and "normalizedEntropy" in one file. Is there actually any viable code style guide that one can follow when writing C++ application?
WannaCry in-memory key recovery for Windows XP
21–30 of 95 posts
Re: WannaCry in-memory key recovery for Windows XP
#22It's hilarious that it uses public-key crypto, yet lets the client know the private key. What's even the point, then?
Re: WannaCry in-memory key recovery for Windows XP
#23Re: WannaCry in-memory key recovery for Windows XP
#24The sad fact is that the prevailing response to a potential worm is "shut down the computer" (hence losing the encryption keys held in memory).
Re: WannaCry in-memory key recovery for Windows XP
#25It's only been tested on Windows XP? surprising they couldn't/didn't set up a 7/8/10 VM to try and replicate the results
The Twitter says that it has been adapted to work on 7. The readme points out that CryptReleaseContext works better in 10 and thus the recovery doesn't work.
Re: WannaCry in-memory key recovery for Windows XP
#26It's hilarious that it uses public-key crypto, yet lets the client know the private key. What's even the point, then?
I think what this tool does is read the unencrypted K1 directly from memory, which means Kpriv is no longer needed.
EDIT: One correction: the user doesn't receive Kpriv, instead they send the encrypted K1 to the ransomware owner who decrypts it and sends back K1.
Re: WannaCry in-memory key recovery for Windows XP
#27It's only been tested on Windows XP? surprising they couldn't/didn't set up a 7/8/10 VM to try and replicate the results
Re: WannaCry in-memory key recovery for Windows XP
#28You've got to admit it's a little funny when an OS's security flaws prevent even targeted malware from working properly.
Heh. Since this only works before a reboot and Windows 10, by design, destructively reboots with no recourse, I could imagine this ironic farce: a) security holes lead to a ransom, b) security holes let you reverse the ransom, but c) forced reboots kill any hope you have of recovering with this kind of hack.
Eh? Under what circumstance?
Re: WannaCry in-memory key recovery for Windows XP
#29The sad fact is that the prevailing response to a potential worm is "shut down the computer" (hence losing the encryption keys held in memory).
Re: WannaCry in-memory key recovery for Windows XP
#30That is nice! But... It really hurts my eyes to read "dump_hex" and "normalizedEntropy" in one file. Is there actually any viable code style guide that one can follow when writing C++ application?