Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 OllyDbg 中,它允许你一直运行直到返回,例如你遇到一个retorleave指令。
ret
leave
WinDbg 支持吗?我在菜单中没有找到这样的功能。
如果您想在返回之前停止,您可以使用pt. 如果您想在返回后停止,请使用gu. 后者在 Debug 菜单上作为“Step Out”使用热键 Shift+F11。
pt
gu
这些以及更多内容都列在了非常有用的 windbg.info 上(尤其是这个页面)。