diff options
Diffstat (limited to 'shellcode.asm')
-rw-r--r-- | shellcode.asm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shellcode.asm b/shellcode.asm index 8d4057d..2d1826c 100644 --- a/shellcode.asm +++ b/shellcode.asm @@ -165,9 +165,10 @@ cmp eax, 0xDEADBEEF jne shellcode_noret ret shellcode_noret: -; will be overwritten by our "jump back to original code flow" instruction -db 0xFF,0xDE,0xAD,0xC0,0xDE -db 0x00,0x00,0x00,0x00,0x00 +; The following 10 bytes represent the shellcode_trailer union (see injector.c). +; It will be overwritten by our "jump back to original code flow" instruction. +db 0xFF,0xDE,0xAD,0xC0,0xDE ; insts[0] +db 0x00,0x00,0x00,0x00,0x00 ; insts[1] _shellcode_size: dd $ - _shellcode |