Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to store some data in a variable (and I know variables are stored in memory). Does that data in memory get encrypted? Also, is it possible for software to be able to read the variable names stored in memory and be able to actually extract the data from it?

share|improve this question
2  
No, not encrypted by default. What are you actually trying to do? – Mitch Wheat Jun 14 '11 at 0:15
1  
Memory stores exactly what you put into it, so if you don't encrypt it it isn't encrypted, and if you can read it most likely someone else can. Not posting this as an answer, because I'm voting to close the question. :) – Ken White Jun 14 '11 at 0:18
14  
This isn't a dumb question, it's quite a good one actually! – Marlon Jun 14 '11 at 1:08

4 Answers

up vote 27 down vote accepted

Memory is not encrypted on any platform I know about. It would be of limited value anyway, because the processor must, in general, operate on plaintext data, so the data must be in plaintext on the machine somewhere.

Instead, modern operating systems (and most historical ones) use memory protection to allow only certain processes access to certain memory pages. Every memory page comes with read, write, and (sometimes) execute permissions. The operating system kernel is in charge of handling those permissions on context switch to grant or deny access to memory pages per-process as needed.

Saltzer and Schroeder's 1975 paper The Protection of Information in Computer Systems describe a mechanism using segments, rather than pages, but the principle has remained unchanged for decades.

Typically, any process-owned memory page is readable by a process with high-enough privilege; the OS kernel certainly can modify any page of memory, and it can choose to delegate that privilege to user processes too. The ptrace(2) system call on Linux provides a debugger-backdoor that can be used to implement read-only memory inspection systems such as strace(1) or ltrace(1) or gdb(1), or memory-modification systems such as gdb(1) and ptrace-based sandbox environments.

Or, a core file can be dumped, under certain situations (see core(5) and setrlimit(2) manpages), containing the contents of the process's memory. This is one reason why it is important to clear memory of important data before release.

I was part of a team that worked on encrypting pointers (non-PTO link) in running programs. The overhead was amazing, and the number of corner cases was even more astonishing. Using these techniques for common programs is probably not practical, though I could imagine a restricted environment where encrypted memory or control structures is a feasible approach. (Though probably other techniques would be more appropriate.)

share|improve this answer
3  
re the processor must, in general, operate on plaintext data, so the data must be in plaintext on the machine somewhere - there are systems where that "somewhere" is just inside the processor, and there's an encryptor/decryptor embedded in it so that the actual data is encrypted anywhere outside the processor. In this case it's much harder to hack it without actual physical contact (having malicious software is not enough). – littleadv Jun 14 '11 at 0:37
@littleadv, good point; I have wanted a Cryptographic CoProcessor board for years, but have no real need for one. Hehe. – sarnold Jun 14 '11 at 0:40
+1, that's an exemplary answer, with great insights, great references, and experience to speak of (even though I can't open your encrypting pointers link). – zneak Jun 14 '11 at 3:02
@zneak, thanks; I changed the link to the USPTO.gov site and added a link to a third-party website that is far friendlier and looks better. But cluttered with ads. I guess you just can't win. :) – sarnold Jun 14 '11 at 3:18
1  
A good example of platform where memory is encrypted and yet performance is quite acceptable is the Xbox 360. Contents of RAM are decrypted when read to the CPU cache, and re-encrypted when written back. IIRC the crypt. logic is embedded next to the cache itself. youtube.com/… – danielkza Jun 27 '11 at 12:09
show 3 more comments

Okay, so I want to store some data in a variable (which, I know, variables are stored in memory) - does that data in memory get encrypted?

NO

Also, is it possible for software to be able to read the variable names stored in memory and be able to actually extract the data from it?

Names or values?

For values:

You mean a different program, not yours, to access it and read it? Yes, it's possible, depending on OS it may be tricky or trickier, but doable.

For names: Depends on how you build your software - if you leave debug info in it - it's very easy to do that.

share|improve this answer
Actually, any debugger is able to do it. – zneak Jun 14 '11 at 0:20
I'm assuming he's asking about malicious software, not a debugger run by the user himself with the appropriate permissions:-) – littleadv Jun 14 '11 at 0:21
Of course, debuggers are best used to, well, debug code :) Still, they're relatively user-friendly tools to inspect memory. If you find a security flaw that lets you run programs with elevated privileges (or just as somebody else), they're probably the easiest (external) entry point into other programs. That was mostly meant to point out that there are well-known programs that let you read and write to another process's memory. – zneak Jun 14 '11 at 2:00
@zneak, oh ok:) – littleadv Jun 14 '11 at 2:45

No. Memory is not typically not encrypted.

Memory stores data that you write into it. At somepoint, memory will contain the plain-text version of your data, and this is sometimes used as a way to exploit systems.

That said, once an attacker has physical access to your machines, it's very difficult to secure them.

There are some language specific features that attempt to address this, such as C# SecureString , but even these have their limitations.

share|improve this answer

Does that data in memory get encrypted?

Usually no. I say "usually" only because you could conceivably make an operating system or hardware that does encrypt memory. So really, no.

Is it possible for software to be able to read the variable names stored in memory and be able to actually extract the data from it?

Depends. With code in an interpreted language like PHP variable names are kept in memory somewhere, so conceivably it's possible. With compiled code like (like C++), it could be compiled with debug information (and then a debugger would be able to see variable names and extract their values), or it could be compiled without it and then the variable names are lost.

Also, it's very easy to write a program that reads arbitrary memory addresses, but it's much harder to figure out what the bytes you read mean.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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