Is there any way to convert “.so” file into source code or some in readable format.
Advertisement
Answer
Source code is probably hard, since the .so doesn’t “know” which language it was written in.
But you can browse around in the assembly code by doing something like this:
$ objdump --disassemble my_secret.so | less