.exe parsing | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

.exe parsing

Is it possible to extract source code from the the .exe file?

21st Mar 2017, 4:19 PM
Kaviyarasu K
Kaviyarasu K - avatar
3 Answers
0
Not sure but you may try Jetbrain's dotPeek tool. It is free and extracts code from DLL. It may work with exe.
21st Mar 2017, 4:21 PM
Satish Gawde
0
Yes, using Decompilers/Disassembler use http://www.red-gate.com/products/dotnet-development/reflector/ to see source Code. http://www.denisbauer.com/Home/ReflectorFileDisassembler to convert it to VS solution
21st Mar 2017, 4:25 PM
Eranga
Eranga - avatar
0
Have you taken a look at OllyDbg. It is a disassembler. You can view equvivalent assembly code and control realtime execution. You can also modify those asm codes and see the output. It supports many useful features like breakpoints , string search , stack status , memory status etc.
21st Mar 2017, 4:27 PM
Mama
Mama - avatar