Settracecondition

OllyDbg Plugin API

Settracecondition

OllyDbg can pause run trace on a set of conditions. This function quickly sets pause on expression, on suspicious command and/or on EIP range and deactivates pause on command.

void Settracecondition(char *cond,int onsuspicious,ulong in0,ulong in1,ulong out0,ulong out1);

Parameters:

cond - pointer to character string containing expression. Run trace will pause if expression is invalid or estimates to non-zero value;

onsuspicious - activates (1) or deactivates (0) pause on suspicious command;

in0, in1 - 'in range' request. Run trace will pause if EIP is in this range (in1 not included). To disable pause on 'in range', set both in0 and in1 to 0;

out0, out1 - 'out of range' request. Run trace will pause if EIP is outside this range or equals to out1. To disable pause on 'out of range', set both out0 and out1 to 0.

See also: Startruntrace, Issuspicious