I'm running into some issues with a piece of software I'm trying to debug for a friend..
Long story short I need to know how to get the address of a function out of a pointer...
So for example if I have...
MOV ECX, DWORD PTR DS : [82738119]
Then I need to be able to reverse this without actually knowing the address location, something like this...
// I'm looking for a way to make EAX 82738119, using only the pointer in ECX....
MOV EAX, SOME_COMMAND[ECX];