Hello All,
I am just starting my adventure with pykd and Windbg and I want to write script which will:
Go is hit, target is released, But break never happens . When I click 'break' manually I have got - this information "Break instruction exception "
How can I perform break from python script?
Can I validate that break was actually hit?
Thanks for all replies :)
I am just starting my adventure with pykd and Windbg and I want to write script which will:
- connect with target in kernel mode (working)
- Hit break
- Hit go
-
Hit break again
if __name__=="__main__":
if isKernelDebugging():
dprintln("in kernel debugging, proceeding")
go()
time.sleep(5)
breakin()
else:
dprintln("not in kernel debugging")
When I run this code in Windgb:Go is hit, target is released, But break never happens . When I click 'break' manually I have got - this information "Break instruction exception "
How can I perform break from python script?
Can I validate that break was actually hit?
Thanks for all replies :)