Log in

View Full Version : Rocognizing calls parameters?


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!

Teerayoot
August 27th, 2003, 00:57
"Assume argument function ",on Right click menu .
I think this will work,not tried it yet.

Anonymous
August 27th, 2003, 10:33
You rock! =)