CTF-All-In-One/doc/2.3.2_ollydbg.md
firmianay 9c5d6239c3 fix
2018-05-22 15:21:13 +08:00

22 lines
803 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 2.3.2 OllyDbg 调试器
- [快捷键](#快捷键)
- [命令行插件](#命令行插件)
- [参考资料](#参考资料)
## 快捷键
- F2在光标选定位置按 F2 键设置或取消断点。
- F4运行到光标选定位置处暂停。
- F7单步步入每次执行一条指令遇到 call 等子程序时进入其中。
- F8单步步过每次执行一条指令遇到 call 等子程序时不进入其中。
- F9运行被调试软件继续运行直到遇到下一个断点。
- Ctrl+F9执行到返回在执行到一个 ret 指令时暂停,常用于从当前函数快速返回到上一个函数。
- Alt+F9执行到用户代码可用于从系统部分快速返回到被调试程序部分。
## 命令行插件
## 参考资料
- http://www.ollydbg.de/