Reputation: 4051
I have been trying to solve some "crackmes" (from http://crackmes.de) using WinDbg. Most of the solutions I have looked at involve using Olly Dbg to make modifications to the assembly; is there a way to do this in WinDbg?
Upvotes: 4
Views: 4824
Reputation: 394041
You can view the assembly code using the disassembly window and disassemble code using u
command:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff541965%28v=vs.85%29.aspx
and more info here:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff540661%28v=vs.85%29.aspx
Upvotes: 0
Reputation: 5489
You can use the a command:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff538153(v=vs.85).aspx
Upvotes: 5