vote up 4 vote down star
2

Hi,

Suppose there is a String variable that holds a plain text password.

Is there any possibility of reading this password using a memory dump. (Suppose using cheat engine.) I am puzzled with this JVM thing. Does JVM provide some sort of protection against this. If no what are the practices that I need to use to avoid such "stealing".

A practical threat would be a Trojan; that sends the segments of the memory dump to an external party.

flag

1  
I'd just like to note that all the answers to date are equally applicable to pretty much all languages, not just Java. The problem is exactly the same. Some languages might make it slightly easier or harder than others, but they all have the same basic "vulnerability". – Joachim Sauer Oct 2 at 10:46
If that 'someone' has access to the JVM for no obvious reason, you have worser things than heap inspection attacks to worry about. Most people would say 'Game Over'. Similar SO question at stackoverflow.com/questions/646224/… – Vineet Reynolds Oct 2 at 10:55

5 Answers

vote up 9 vote down check

As already noted, yes, anybody can extract the password, in various ways. Encrypting the password won't really help -- if it's decrypted by the application, then the decrypted form will also be present at some point, plus the decryption key (or code) itself becomes a vulnerability. If it's sent somewhere else in encrypted form, then just knowing the encrypted form is enough to spoof the transaction, so that doesn't help much either.

Basically, as long as the "attacker" is also the "sender", you're eventually going to get cracked -- this is why the music and video industries can't get DRM to work.

I suggest you pick up a copy of Applied Cryptography and read the first section, "Cryptographic Protocols". Even without getting into the mathematics of the actual crypto, this will give you a good overview of all sorts of design patterns in this area.

link|flag
vote up 5 vote down

If you keep the password in plain text in your application then someone can read it by playing with memory dumps regardless of the language or runtime you use.

To reduce the chance of this happening only keep the password in plain text when you really need to, then dump or encrypt it. One thing to note here is that JPasswordField returns a char[] rather than a string. This is because you have no control over when the String will vanish. While you also have no control over when a char[] will vanish you can fill it with junk when you are done with the password.

I say reduce as this will not stop someone. As long as the password is in memory it can be recovered, and as the decryption has to also be part of the deliverable it too could be cracked leaving your password wide open.

link|flag
Yup, for ( char nextChar : pw ) nextChar=0;// Which may not work, note also: final char[] is not final – Nicholas Jordan Oct 2 at 8:52
You will have to use a normal for loop rather than a foreach. And yes it is worth stating that final applies to the reference of an array and not the values. – mlk Oct 2 at 9:01
vote up 3 vote down

This has nothing to do with Java - the exact same problem (if it really is one) exists for applications written in any language:

  • If the executable contains a password, no matter how obfuscated or encrypted, everyone who has access to the executable can find out the password.
  • If an application knows a password or key temporarily (e.g. as part of an network authentication protocol) then anyone who can observe the memory the application is executing in can find out the password.

The latter is usually not considered a problem, since a modern OS does not allow arbitrary applications to observe each other's memory, and privilege escalation attacks typically rely on different vectors of attack.

link|flag
It is a problem if you don't know about it and develop your system as if the "encrypted" key was indeed safe. – Joachim Sauer Oct 2 at 10:50
vote up 2 vote down

If the program knows the password, anybody using the program can extract the password.

link|flag
1  
anybody sufficiently technically skilled... – Thorbjørn Ravn Andersen Oct 2 at 9:51
vote up 2 vote down

In theory you could just hook it up to the debugger... set a breakpoint...and read the string contents

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.