.exe Decompilers

  • Thread starter Thread starter The Devils
  • Start date Start date
T

The Devils

Does anyone know where I can get an exe decompiler for C++ I am trying
to get some files for my program that is already an exe but I don't
know how to crack it and I lost the code so if anyone has an exe
decompiler or can make one I appreaciate it thanks
*---------------------------------*
Posted at: http://www.GroupSrv.com
Check: http://wwww.HotCodecs.com
*---------------------------------*
 
The said:
Does anyone know where I can get an exe decompiler for C++ I am trying
to get some files for my program that is already an exe but I don't
know how to crack it and I lost the code so if anyone has an exe
decompiler or can make one I appreaciate it thanks

The best you'll likely be able to do is to create an assembly language
source from an existing EXE. Re-creation of C++ from the compiled binary is
really not possible in the general case.

-cd
 
Does anyone know where I can get an exe decompiler for C++ I am trying
The best you'll likely be able to do is to create an assembly language
source from an existing EXE. Re-creation of C++ from the compiled binary is
really not possible in the general case.
You would be suprised how fast it is to reverse engineer ones executable
code into a human readable.
IDA Pro does this (http://www.datarescue.com/idabase/) by taking the known
library code if VC++, BC,.... and write the assembler code into readable.

Although it will not generate the original C++ source code, at least you can
find how it is implemented.
What functions you used, in what order,...

A few years ago, I tried to create a protection key. For months I was
convinced that it was not easy to crack (using a dongle) untill I used IDO
Pro out of curiosity and not only did I crack it in 30 minutes, I also
managed to make my program activate all options in that dongle. So logically
I made the code a little harder to reverse engineer. :-)

I have not used IDA Pro for many years now, so I have not kept track of the
new implementations.
 
Back
Top