Is there any way to decompile Linux .so?
Asked Answered
P

2

24

Is there any way to decompile Linux .so?

Predominate answered 21/2, 2010 at 18:47 Comment(3)
Is the source not available for the library you are looking to reverse engineer?Reminiscent
#1558870 #2169294Antivenin
There is. but I want to try it on some with no source to - just for fun...=)Predominate
R
16

There are decompilers, but a decompiler might not emit code in the same language that the original program was written in.

There are also disassemblers, which will reassemble the machine code into assembly.


The Decompilation Wiki may be a good source of additional information.

Reminiscent answered 21/2, 2010 at 19:1 Comment(0)
D
17

You can disassemble the code with objdump(1) for example.

Deprecative answered 21/2, 2010 at 18:56 Comment(0)
R
16

There are decompilers, but a decompiler might not emit code in the same language that the original program was written in.

There are also disassemblers, which will reassemble the machine code into assembly.


The Decompilation Wiki may be a good source of additional information.

Reminiscent answered 21/2, 2010 at 19:1 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.