Is it possible to reverse engineer software developed in C ++?

3

Is it possible to get code from an executable developed in C ++? Between Win32 Application and Windows Form Application, which of them can be decompiled?

    
asked by anonymous 24.04.2015 / 03:41

1 answer

2

Yes, how can you do in all code types. Now, if the computer can read it, so can the human. The biggest problems (in relation to the decompiler) are that some programs have others watching them (eg anti-hacks games) or (as @qmechanik said) that the program was obfuscated / compressed. Anyway, it can be said that it is impossible to make a totally safe code against crackers and thus, the programmer should focus more on the quality of the code.

    
04.07.2015 / 20:54