.exe to assembly to c or c++ ?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

.exe to assembly to c or c++ ??

is it possible to convert .exe to assembly and assembly to c or c++ code ???? i want to do reverse engineering on the software anyone know plz tell me.

12th Nov 2017, 3:17 AM
~Sudo Bash
~Sudo Bash - avatar
4 Answers
+ 2
Actually i am Asking for a Software and I have already tried the links you have mentioned above But, I Did not find Proper Solution For it. I have a Software Created By me and i have lost the source code now i just have .exe I mean Executable File now I want to add some code or files in it. So how can I achieve it.
12th Nov 2017, 3:49 AM
~Sudo Bash
~Sudo Bash - avatar
+ 2
Yup i was need of good tool for reverse engineering no matter its paid one. Or i have to learn assembly ?
12th Nov 2017, 8:13 AM
~Sudo Bash
~Sudo Bash - avatar
+ 1
First note you will not get nice clean easy read source code. Second note you may be able disassemble the program into the instructions that make it up, but it may not be in a form you can easily reassemble. I don't like to be negative but, most of the time it easier to rewrite the code than to decompile it. OK anyway here is a reasonably good list of reverse engineering tools: https://www.thefreecountry.com/programming/disassemblers.shtml Not complete by any means, more here: https://reverseengineering.stackexchange.com/questions/1817/is-there-any-disassembler-to-rival-ida-pro One last tip, depending on how you want to change the program you may able to mod it without full source code. eg if you want fix a bug in a specific function you could rewrite the function in a high level language. Then change the call to the function in the binary using hex editor.
12th Nov 2017, 5:04 AM
Jared Bird
Jared Bird - avatar