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

I'd like to know if there's any way to generate the C code of a x86 PE binary. I don't really need this, I just want to learn how some closed-source software are working.

From my common sense, I think the process is:

  • Converting the x86 binary to Assembly, which can be done with a disassembler like OllyDbg.
  • Converting this Assembly to C. I don't know any tools for that, any that's my question actually.

I'll very appreciate your help. Thank you.

P.S: If this is not legal (although I'm not a cracker and have no cracking purposes) please delete this question.

share|improve this question
The legality of this depends a lot on what exactly you want to do, where you live and what license/contract you signed when you got the exe. In some places reverse-engineering for interoperability is legal, in others reverse-engineering is never legal (no, I'm not a Lawyer). – Joachim Sauer Jan 25 '10 at 13:33
It's hard to reverse assembly to HLL, especially after compiler optimisations. stackoverflow.com/questions/193896/whats-a-good-c-decompiler – Cat Plus Plus Jan 25 '10 at 13:35

1 Answer

up vote 2 down vote accepted

If you use IDA Pro with the HexRay decompiler you can get a somewhat readable C source code. (But prepare for a bunch of goto-s and unnecessary variables).

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.