Running before returning using WinDbg

In OllyDbg, it allows you to work until you return, for example, you run the ret or leave statement.

Does WinDbg support this? I did not find such a function in the menu.

+4
source share
1 answer

If you want to stop before returning, you can use pt . If you want to stop after returning, use gu . The latter is located on the Debug menu as "Step Out" with the Shift + F11 hotkey.

These and many of them are listed on the always useful windbg.info ( on this page in particular).

+8
source

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


All Articles