| QUOTE (HeresOtis @ Tuesday, Apr 17 2012, 20:30) |
Too advanced for me
How do you NOP? |
The NOP opcode (most used) in assembly language is the opcode 0x90, This instruction does nothing relevant.
So, NOP 7 bytes means, replace the opcodes there in a range of 7 bytes with a new one, that does nothing.
| CODE |
// NOP 7 bytes @ 0x6121CD 0A8C: write_memory 0x6121CD size 4 value 0x90909090 virtual_protect 1 0A8C: write_memory 0x6121D1 size 2 value 0x9090 virtual_protect 1 0A8C: write_memory 0x6121D3 size 1 value 0x90 virtual_protect 1
|
This post has been edited by Link2012 on Wednesday, Apr 18 2012, 02:52