Log in

View Full Version : exp(in SoftICE) = ???(in OllyDbg)


MARcoDEN
October 1st, 2004, 10:08
SoftICE has the command - exp, which returns an address of function.
For example, "exp GetModuleHandleA" shows "001B:77E79F93 GetModuleHandleA".
Does OllyDbg have anything similar to it?

Ricardo Narvaja
October 1st, 2004, 13:04
in the commandbar put

? GetModuleHandleA

and return the address of this function

Ricardo Narvaja

MARcoDEN
October 2nd, 2004, 01:55
Thanks!