문제

Is there any way to decompile Linux .so?

도움이 되었습니까?

해결책

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.

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top