Quizzes & Puzzles9 mins ago
source code
1 Answers
i have tried using win32dasm to view the source code of several programmes, but all i ever seem to get is jumbled characters that look like windings.
Can anyone recommend another programme?
Answers
Best Answer
No best answer has yet been selected by boobesque. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.That look like windings? What's that?
Debug is a cli program that can disassemble.
Or there's WinDbg : http://www.microsoft.com/whdc/devtools/debugging/install x86.mspx
Not sure what you're hoping to achieve here. It won't show the original source code. It will show the opcodes in their assmbler equivalent, that is all. If you're expecting VB or C# or C++ code to be spat out, you won't.
Oh, and for .NET programs, there's ILDASM.
Hope this helps.
Debug is a cli program that can disassemble.
Or there's WinDbg : http://www.microsoft.com/whdc/devtools/debugging/install x86.mspx
Not sure what you're hoping to achieve here. It won't show the original source code. It will show the opcodes in their assmbler equivalent, that is all. If you're expecting VB or C# or C++ code to be spat out, you won't.
Oh, and for .NET programs, there's ILDASM.
Hope this helps.