Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am searching for a decompiler for a C program. The binary is a 32-bit Linux executable. Objdump works fine, so basically I am searching for something which attempts to reconstruct the C source from the asm source.

share|improve this question
2  
You might want to mention the architecture used, since '32-bit' could be ARM, MIPS, x86, etc. – Cody Brocious Oct 11 '08 at 9:39
I am talking about 32bit x86 here. Sorry for the inaccuracy. – Sec Oct 11 '08 at 13:19
A Linux executable? Is the program open-source? – Whatever Apr 3 '09 at 1:23

4 Answers

up vote 30 down vote accepted

Seconding Hex-rays, but if you can't justify that cost, Boomerang might work.

share|improve this answer
1  
I tested it with some windows binaries, and Boomerang just decompiled a small one. The others crashed this decompiler. – Jader Dias Jan 31 '12 at 11:50
Hell of a libqt dependencies, not just core and gui, but also dev. Consider this. – Mustafa Apr 10 at 14:23

If you have money to spare, Hex-Rays Decompiler could be worth your while. :-)

share|improve this answer

Just a note of caution: a decompiler will not give you the original source code back.

The transformation from source code into intermediate form often results in a slight loss of information (like how the code was formatted, comments, etc.).

The result is that a decompiler can only reconstruct a limited amount of information: it can give you source code that is roughly equivalent in meaning (a.k.a. behavior) to the original source code, but it cannot give you the exact source code back.

Still, if you're looking to reverse-engineer something, decompilation is terribly useful. I'll second the answer suggesting Boomerang, since it's free and open source.

share|improve this answer

You can have a look at SmartDec. It is free as beer and supports x86 ELF executables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.