Files
shellcode/x86_64/Example_Code/exit.asm
Daniel Ashton cc0cee84ff init
2016-05-30 09:06:47 +02:00

15 lines
166 B
NASM

; shellcode lab 64Bit
; exit example as it should be ;)
; dsah@hack4.org
;
BITS 64
global _start
_start:
xor rax,rax
xor rdx,rdx
mov al,0x3C
mov dil,4
syscall