I would like to know if it is possible to read the eax register of another process immediately after the assembly instruction.
In my case, I have the following assembler code:
mov byte ptr ss:[EBP-4] call dword ptr ds:[<& MSVCR100.??2@YAPAXI @Z>] add esp, 4
The idea is to get the eax value right after the command "call dword ptr ds: [<& MSVCR100. ?? 2 @YAPAXI @Z>]". In fact, I should get the memory address returned by the instanciation of an object created in another process in my C ++ code.
I donβt know if I were clear enough. And please forgive my bad English.
source share