vote up 0 vote down star

Hello,

I am trying to read the value of a static variable in C like:

int variable = value;

the thing is that I only have the binary, and the code with a fake value( it is for a lecture, where we study about security aspects of software development).

I have been trying to read the value using the GDB, and

(gdb)info variables

which just gives me a list of the variables(including the one Im looking for) and what seems to be an address, so I would like to know if there is a way to read the value using the gdb.

thanks

flag

1 Answer

vote up 8 vote down check

In GDB, use the 'print' command:

print variable

Voila!

link|flag

Your Answer

Get an OpenID
or

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