Log in

View Full Version : ARG.x and LOCAL.x labels


Hiftu
November 19th, 2003, 14:43
Hi!

I'm pretty new in OllyDbg. How can I rename my [ARG.1] [ARG.2] ... etc.
labels? E.g: I know what this "variable" contains and it would be easier to debug the code if I could see MOV EAX,[SERIAL] instead of MOV EAX,[ARG.1].

Teerayoot
November 20th, 2003, 06:59
No way!!!
But inteadly you can make a comment by pressing ; and fill MOV EAX,[SERIAL] on asking text box.Fullfill with make sense debugging.
ANY IDEA about another way.

blabberer
November 21st, 2003, 08:17
do you mean your disasm in cpu pane looks like this

0040102E |. 817D 0C 10010>CMP [ARG.2], 110

and you want it to look like this

0040102E |. 817D 0C 10010>CMP DWORD PTR SS:[EBP+C], 110

if it is yes then do this


options ---> debug options(alt+o)---->analysis1--->uncheck the show ARGs and LOCALs in procedure---->ok

else i didnt understand your question