hii all _ i have two Question that i didn't find answer for them ::_
Q1 ::
i using CE to find pacific address stored in my memory _ but i cant get the green one(static address) so i used CE auto_assemble script and it works well ( except that i have to frozen every time)
so my Question is >> how to make autoit read the assembly that CE catch ??
Q2 ::
is there any way to find the green address using Ollydbg
Code:
[enable]
registersymbol(YM)
alloc(newmem,2048) //2kb should be enough
alloc(YM,4)
label(returnhere)
label(originalcode)
label(exit)
0099AFF0:
jmp newmem
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
mov [YM],ecx
originalcode:
mov eax,[ecx+00000468]
exit:
jmp returnhere
[disable]
unregistersymbol(YM)
dealloc(newmem)
dealloc(YM)
0099AFF0:
mov eax,[ecx+00000468]