Examine data in windbg when a break on address (ba) breakpoint is hit
问题 I'd like to create a breakpoint such that it will create another one-time breakpoint that will 'dd' a certain memory address when that memory is written to. So when the breakpoint is hit, I'd like to run a command like: ba w4 @ESP+4 /1 ''dd [memory address of this breakpoint]'' Since this breakpoint is being created by another breakpoint (and could potentially be called several times), I can't specify the breakpoint number. Otherwise I could use a pseudo register like '$bp3' to get the memory