If a process has loaded a certain dll in its address space, how can I determine where the dll 's base address is? I have tried using depends.exe but the address it gives is not authentic. The method I am using now is to write a simple WinAPI program, disassemble it and check the address in the call instruction. However this method is quite time consuming...
Thanks!