Search code examples
c++visual-c++decompiling

Is there a decompiler that will work on Visual Studio 6 C++


I have a project that I am trying to fix from a guy that left (let go) from my company. He has violated every fundamental principle of software engineering, not using source control, not backing up the source before you make more changes, etc. etc.

I need to make changes to an application that is in the field and I don't have the original source code, but I have an executable. What I need is a decompiler that will decompile a Visual Studio 6 C++ application and provide me with some type of source code. Anyone got any ideas.....


Solution

  • Well there's the Decompiler from Hex-Rays: https://www.hex-rays.com/products/decompiler/

    It is pretty good for the fact that it is creating C code from Assembler but it works pretty good. It's also pretty expensive

    Edit: Additional note it is combined with IDA Pro the pretty well-known disassembler from them. That already can show you a lot of information in the combination with the decompiler it is even easier to reverse code.