diff options
Diffstat (limited to 'shellcode')
-rw-r--r-- | shellcode/hello.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shellcode/hello.asm b/shellcode/hello.asm index 13eaaff..ef42f2f 100644 --- a/shellcode/hello.asm +++ b/shellcode/hello.asm @@ -8,7 +8,7 @@ jmp short string code: pop ecx mov bl,1 -mov dl,12 +mov dl,13 mov al,4 int 0x80 dec bl @@ -16,4 +16,4 @@ mov al,1 int 0x80 string: call code -db 'Hello World!' +db 'Hello World!', 0x0A |