Memory address TO Variable name.?

Ok, this is probably an odd question, but say I use a tool to view the integers of a program in my memory addresses. Like right now, Firefox is storing 12 in 16AAAE. Is there a way to find out the variable name stored there?

Answers:
Not possible.

When source code gets compiled into an executable in release mode, (that is the case for most applications) all debugging related information are stripped off so you are left with aggressively optimized assembly code.

With a debugger / assembler you can analyze each section of the codes to find the meaning, but there is no way to retrieve the information such as source code, variable names etc unless the program is compiled in debug mode.


not 100% sure but from what i know it would be really hard to find the variable assigned to that memory location unless you can add code to the application you are running to display the memory location of each variable. the reason being that when a variable is declared in a program it is randomly assigned a location in the RAM and only the program would know where it was stored so say when FireFox sets say x=12 the RAM stored 12 to the address 16AAAE and knows it belongs to firefox and Firefox know that x= the number in the RAMs address of 16AAAE.

i hope that makes sense.
yeah like the other guys have said, it is impossible. Basically since when you compile a program, all the fancy variable names you tag along the program is stripped away and is not used in a compiled code. So basically, you can't search what the variable name of a variable for a compiled code.
  • What is the diff between IE and netscape or firefox ...Is 1 better?
  • I'm trying to install Firefox and it says I need Windows 2000 or newer but I have Windows XP Professional?
  • Need media player plug-in for firefox. old system win. 98, wont accept media player 11?
  • What procedure do I follow to set Firefox as my default browser?
  • What do you think is the best browser? Firefox 1.5, Internet Explorer 7 Beta 3, or Opera 9?
  • Why doesn't my macromedia flash work?
  • I cant download using mozilla firefox?
  • Memory address TO Variable name.?
  • This article contents is create by this website user, FireFoxAnswer.com doesn't promise its accuracy.