To read a .so file in elf format, use readelf
readelf -Ws libName.so
It helps to extract symbol from binary.
The standard tool used for listing all symbol is, nm
nm -g libName.so
To read a .so file in elf format, use readelf
readelf -Ws libName.so
It helps to extract symbol from binary.
The standard tool used for listing all symbol is, nm
nm -g libName.so