Editing an assembly in WinDbg

I am trying to solve some โ€œcracksโ€ (from http://crackmes.de ) using WinDbg. Most of the solutions I reviewed include using Olly Dbg to make changes to the assembly; is there any way to do this in windbg?

+4
source share
2 answers

You can view the assembly code using the disassembly window and parse the code using the 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

0
source

Source: https://habr.com/ru/post/1413951/


All Articles