vote up 0 vote down star

HxD (hex editor) allows to search/view/edit RAM.

How can I protect a EXE against such editor? Data is encrypted inside INI/registry/DB, but is decoded at RAM.

What is the solution? At runtime decode, use and recode data inside RAM ASAP?

flag
Why? What are you trying to hide? Most of the text will be displayed to the user eventually via the GUI, so what's the point? – chris Sep 30 '08 at 15:00
Suppose I read some ENCODED SQL commands from a INI file. I decode them and use them at runtime. Someone may edit RAM and access it, doesn't he/she ? – rodfaria Sep 30 '08 at 15:07
If someone can modify your application's memory, then it's nothing more to do. Actually, if she/he can do that, then there's no protection. Not to mention, that it's much easier to modify the SQL command in the INI file. – KovBal Sep 30 '08 at 15:57

3 Answers

vote up 0 vote down check

You are trying to hold back the sea with a teaspoon.

This kind of "in memory protection" is what good (evil?) malware does. I have seen live demonstrations of how to break this kind of "protection". It is ultimately useless - at some point your clear text must be available for execution by the computer. A competent programmer/reverse engineer can easily find when the clear text becomes available and then just pause the program and examine the process memory at their leisure.

This is the same problem the RIAA faces with DRM: the requirements are defective. You want to hide your program from your users, and yet in order for them to use it, they must have the clear text at some point.

Your only possible salvation TPM but they are so rare in the consumer market your user base will be down to single digits.

link|flag
vote up 0 vote down

You can use an exe protector like Themida (one that will make even viewing the memory difficult), but remember that users will hate you for that. Also, remember that Themida, like all other protectors, is routinely cracked, despite what vendors of such software claim.

Short: There is no good way to prevent reverse engineering, ever.

link|flag
vote up 0 vote down

Not too sure if they do that at this level, but KeePass, an open source password manager, claims to take every available care to hide passwords from investigation. It might be interesting to see how they do that... :-)

link|flag

Your Answer

Get an OpenID
or

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