IDAPython调试使用集合

IDAPython调试使用集合

Python下断点:

Python>addr=0x7886B3FE
Python>add_bpt(addr,0,BPT_SOFT)
True
Python>enable_bpt(addr,True)
True
Python>enable_bpt(addr,False)
True
Python>enable_bpt(addr,False)
True

条件断点

条件断点的判断地址的字母是不是"crack"

'c' == DbgByte(DbgDword(R2+0x10)) &&
'r' == DbgByte(1+DbgDword(R2+0x10)) &&
'a' == DbgByte(2+DbgDword(R2+0x10)) && 
'c' == DbgByte(3+DbgDword(R2+0x10)) && 
'k' == DbgByte(4+DbgDword(R2+0x10))

你可能感兴趣的:(c++)