Hi, i've attached ida to a program and click continue process, i then send it a packet. Part way throught the program ebx equals 41414141.
I'm trying to make a script that will pause when ebx equals 41, so far i've got,
main() {
//something like ContinueProcess();
if(GetRegValue(ebx) == 0x41414141) {
Message("ebx = 41");
PauseProcess();
}
}
When I run the program and start the script, it says theres no function called PauseProcess(), and as i'm not stepping through the values of the registers are all blanked out.
Any ideas







