PDA

View Full Version : Rocognizing calls parameters?


Anonymous
08-14-2003, 05:44 AM
Hello,

Lets say we have the following code:
push 0FFFFFFE
call GetStdHandle

Olly now recognizes the pushed value as being
the nStdHandle parameter and labels it as such..

Now consider;
mov eax, 0FFFFFFE
mov esi, GetStdHandle
push eax
call esi

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
08-27-2003, 01:57 AM
"Assume argument function ",on Right click menu .
I think this will work,not tried it yet.

Anonymous
08-27-2003, 11:33 AM
You rock! =)