Log in

View Full Version : about conditional breakpoint?


mike
February 12th, 2004, 05:52
i want to make olly stop when the context in eax is b53fac9.
How can i do that?
I tried some form but nothing work (eax == b53fac9 eax=b53fac9 and other but nothing)olly treat this us an"always" bp.

Ricardo Narvaja
February 12th, 2004, 06:08
1) olly do not accept the value b53fac9 (starting with letters), the correct form is 0b53fac9.

In CONDITION put eax==0b53fac9

and the first mark in PAUSE PROGRAM-ON CONDITION

Ricardo Narvaja