Tagged Questions
5
votes
1answer
1k views
nm vs “readelf -s”
Suppose we have a shared library named libtest.so, there is one function "foo" in it
use the strip to discards all symbols from libtest.so
$strip libtest.so
so ,now if we use:
$nm libtest.so
...
1
vote
0answers
254 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;
...
3
votes
2answers
224 views
why /lib32/libc.so.6 has two “fopen” symbol in it?
nm -D /lib32/libc.so.6 | grep '\<fopen\>'
0005d0c0 T fopen
00109750 T fopen
readelf -s /lib32/libc.so.6 | egrep '0005d0c0|00109750'
181: 0005d0c0 50 FUNC GLOBAL DEFAULT 12 ...