From 02aef8902a4a48c32f1156c6f888ad2d4050a71a Mon Sep 17 00:00:00 2001 From: segfault Date: Mon, 25 Mar 2019 02:00:03 +0100 Subject: added shellcode_trailer comments in shellcode.asm Signed-off-by: segfault --- shellcode.asm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'shellcode.asm') 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 -- cgit v1.2.3