Skip to content
Advertisement

“SO” file conversion to readable format

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
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement