Log in

View Full Version : ? - command


Steffen Sveegaard
November 13th, 2005, 08:10
Hi all

I'm trying to follow a tutorial where softICE is used, but I use OllyDbg instead. But, the tutorial says something about a '?'-command and I try that in OD's commandline.

I get no useful output and it's totally different to the tutor's.

How do I convert the output to something useful?

Ricardo Narvaja
November 13th, 2005, 10:15
type in the commandbar of OLLY

?

and you have de value of de expression

? eax (value of eax in HEX,DEC and ASC) by example

Ricardo

Steffen Sveegaard
November 13th, 2005, 10:44
Well, I get a value, but not the same as in the tutor.

So I have to type:
? eax asc

or something similar?

Ricardo Narvaja
November 13th, 2005, 11:59
i don“t know what value have eax in the tutor if you typ


? EAX you will have the hex, dec and asc value of EAX, only work with positive numbers if eax=0FFFFFFFF by example the result will be wrong is a command bar bug.

Ricardo