Tagged Questions
3
votes
1answer
231 views
Figure out pattern in order to find variables in compiled program
I need to extract the global variables from a compiled c program. What am I doing right now is using the Linux readelf command in order to get that information. In other words when I do:
...
0
votes
1answer
261 views
readelf -s does not output full variable names
I need to get the global symbols from a compiled c program file. What I use is the linux command readelf -s filePath when I use that command this is what I get:
I draw a blue rectangle to show ...
1
vote
0answers
253 views
Address of element within a structure from elf executable
Is it possible to obtain the address of an element within a structure from an ELF executable not compile for debug?
Example, given the following code:
typedef struct {
int tokyo;
int paris;
...