init
This commit is contained in:
16
x86_64/Example_Code/exit_nulls.asm
Normal file
16
x86_64/Example_Code/exit_nulls.asm
Normal file
@@ -0,0 +1,16 @@
|
||||
; 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
|
||||
Reference in New Issue
Block a user