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

后端 未结 3 1821
清酒与你
清酒与你 2020-12-21 02:21

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 sourc

相关标签:
3条回答
  • 2020-12-21 02:54

    I've used RecStudio (rec22) and IDAPro to try and decompile a C++ project, together they probably wouldn't have been enough to do the job I had except that I worked out the demo project the program was based on so they gave just enough info that I could make something like the same project again.

    In the end one other thing I was doing was compiling code that I thought matched and checking that I got the same result in the decompiler.

    Good Luck.

    0 讨论(0)
  • 2020-12-21 02:55

    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.

    0 讨论(0)
  • 2020-12-21 03:04

    Decompile to what - assembler?

    There isn't anything that is going to give you meaningfull C from an exe.

    0 讨论(0)
提交回复
热议问题