Anonymous
August 14th, 2003, 04:44
Hello,
Lets say we have the following code:
<pre>push 0FFFFFFE
call GetStdHandle</pre>
Olly now recognizes the pushed value as being
the nStdHandle parameter and labels it as such..
Now consider;
<pre>mov eax, 0FFFFFFE
mov esi, GetStdHandle
push eax
call esi</pre>
Now the push and the call aren't labeled as nStdHandle and GetStdHandle.
Is it possible to get olly to recognize such dynamic calls and label them appropriately?
Thx!
Lets say we have the following code:
<pre>push 0FFFFFFE
call GetStdHandle</pre>
Olly now recognizes the pushed value as being
the nStdHandle parameter and labels it as such..
Now consider;
<pre>mov eax, 0FFFFFFE
mov esi, GetStdHandle
push eax
call esi</pre>
Now the push and the call aren't labeled as nStdHandle and GetStdHandle.
Is it possible to get olly to recognize such dynamic calls and label them appropriately?
Thx!