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.
|
|
Seconding Hex-rays, but if you can't justify that cost, Boomerang might work. |
|||||||
|
|
If you have money to spare, Hex-Rays Decompiler could be worth your while. :-) |
|||
|
|
|
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. |
|||
|
|
|
You can have a look at SmartDec. It is free as beer and supports x86 ELF executables. |
|||
|
|