PDA

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


MARcoDEN
10-01-2004, 11:08 AM
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
10-01-2004, 02:04 PM
in the commandbar put

? GetModuleHandleA

and return the address of this function

Ricardo Narvaja

MARcoDEN
10-02-2004, 02:55 AM
Thanks!