| View previous topic :: View next topic |
| Author |
Message |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Mon Jan 07, 2008 1:47 pm Post subject: |
|
|
| Yea as long as the point is understood.
|
|
| Back to top |
|
 |
Uzeil Moderator
Reputation: 6
Joined: 21 Oct 2006 Posts: 2411
|
Posted: Mon Jan 07, 2008 2:11 pm Post subject: |
|
|
If you're getting into assembler/byte analyzation, thinking add [eax],eax might be a 0'd out variable - is a simple no-no.
The whole answer to this thread: 90 90 90 90 isn't held in 1 byte, as it's 4 bytes. What it's stating is that, starting from that address, the sequence of bytes is 90 90 90 90 - which means that that address accounts for the first 90, the next is the next 90, then the one after that is the next, and the one ater that is the next. Conclusion: That address and the three after it all have the byte value of 0x90(0x_ _ = hexadecimal. It's a C thing. $90 in Delphi)
And, for additional information(which yuo already know), 0x90 = NOP - meaning something to do nothing.
And I don't think it's more important to understand the answer to the original question than it is to maintain correct information in other fields.
_________________
|
|
| Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Mon Jan 07, 2008 2:32 pm Post subject: |
|
|
But here is my question:
How do I write to each of these bytes or read from them?
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Mon Jan 07, 2008 2:54 pm Post subject: |
|
|
You don't write to the bytes, you write to the address, as with the reading.
If you want to write bytes to an address, use WriteProcessMemory.
_________________
|
|
| Back to top |
|
 |
Uzeil Moderator
Reputation: 6
Joined: 21 Oct 2006 Posts: 2411
|
Posted: Tue Jan 08, 2008 2:04 am Post subject: |
|
|
Defined "read" and "write"
From another process?
Just understand them?
In a CE AA script?
_________________
|
|
| Back to top |
|
 |
|