17 lines
162 B
NASM
17 lines
162 B
NASM
; shellcode-lab 64Bit
|
|
; dash@hack4.org
|
|
; exit code with null bytes
|
|
;
|
|
|
|
BITS 64
|
|
|
|
global _start
|
|
|
|
_start:
|
|
|
|
xor rax,rax
|
|
xor rdx,rdx
|
|
mov rax,0x3C
|
|
mov rdx,4
|
|
syscall
|