[Windbg]断点

指令功能
bl列出系统中已经有的断点
bc清除断点例如: bc 1 -10 删除1 -10的断点. bc*清除全部
bd禁用断点
be激活断点
bp [address][模块名字][偏移]下断点 bp xxModule!DisPatchRead + 0x30
bu module!fun模块名加函数下断点.
bm module!fun*支持通配符下断点
ba [w len] [r len] [e len] address下内存(读、写、执行)断点
bp /p eprocess [address][func]某进程调用才会断下来
bp /t ethread [address][fun]某线程调用才会断下来
原文地址:https://www.cnblogs.com/csnd/p/15613331.html