x64dbg / x64dbgpy

Automating x64dbg using Python, Snapshots:
https://ci.appveyor.com/project/mrexodia/x64dbg-python/build/artifacts
MIT License
1.47k stars 70 forks source link

Adding memory breakpoint via command line does not work #22

Open mrexodia opened 6 years ago

mrexodia commented 6 years ago

This snippet code, used in pykd.py, doesn't seem to do anything.

bpsingleton = breakpoints.Breakpoint()
bpsingleton.add(addr, None, bp_type=bpsingleton.BP_MEMORY, hw_type=bpsingleton.HW_EXECUTE)
mrexodia commented 6 years ago

@wangray I never used the python breakpoint api, but there are problems with memory breakpoints overall. Perhaps issue #19 is relevant?