vote up 2 vote down star

I'm trying to trace back an address to a static pointer with all the offsets using CheatEngine for a game I play. The instruction that accesses the non-static address, looks like this:

004B7F18   0FBF42 02   MOVSX   EAX, WORD PTR [EDX+2]   46   

Value of registers after statement:

Address: 004B7F18
EAX (after): 0000000F   ESP (after): 0018A620
ECX (after): 00000001   EBP (after): 0018A630
EDX (after): 08465DFC   ESI (after): 00011652
EBX (after): 00000000   EDI (after): 00000000

To me, that means I should search for 08465DFC to find the pointer which is 2 bytes away from the address. However, searching for this value renders no results.

Setting a breakpoint before the execution allows me to get the value of EDX before the statement is run and it's not even close to EDX (after) - 02h.

It seems something is fishy since EAX after the statement is simply F but I don't know enough about what I'm doing to know exactly what's going wrong.

I've successfully traced back every address to a static pointer in the game but this one and it's giving me fits.

Any ideas.

flag

4 Answers

vote up 2 vote down

Well, it's loading the sign-extended two-byte value from 0x08465DFE into EAX, right? Isn't 0x08465DFE the address you want?

... get the value of EDX before the statement is run and it's not even close to EDX (after) - 02h.

This makes no sense. That instruction cannot change the value of EDX, only EAX. Are you talking about other code than just that one instruction?

link|flag
vote up 0 vote down

In my opinion, the only trick could come from the movsx instruction. It means that if the word in [edx+2] is negative (that is, if the most significant bit is set), the upper part of eax will be 0xFFFF instead of 0 (so that eax is negative too).

link|flag
vote up 0 vote down

If EDX is 08465DFC, then EDX+2 is 08465DFE.

While the value is important, you don't search that hex value in memory. Rather, you use that value as an address in memory to look at. For example, if that memory location contained 0x1234, you should see something similar in EAX once the statement executes.

link|flag
vote up 0 vote down

This looks like a conversion of an element of an array of shorts to a signed int. I know nothing about CheatEngine, but what are the bits at 0x08465DFC and 0x08465DFE before/after this instruction? Do they line up with what's in EAX afterwards, after accounting for sign-extension?

For that matter, can we get a register dump immediately before the statement executes?

link|flag
This is not a proper answer, instead it should be a comment. – Eliseo Ocampos Jul 14 at 21:00
2  
Commenting appears to require 50 reputation. – twon33 Jul 14 at 21:04
I know, but that does not detract from the fact that this should be a comment. IMO you should try to earn enough rep to post comments and don't try to comment using alternative ways. – Eliseo Ocampos Jul 14 at 21:50
1  
This is pretty off topic, but I'm not convinced that the intent of the threshold for new comments was to prevent new users for asking for clarification that could lead to an answer. I'm not trying to circumvent the system here, and for that matter with a question as ambiguous as "any ideas?", an answer of "more information please" doesn't seem terribly out of line. – twon33 Jul 14 at 22:02
Yeap, you're right, I posted a question on MSO to discuss this: meta.stackoverflow.com/questions/5416/… – Eliseo Ocampos Jul 15 at 1:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.